Browse Source

完善个性化设置

master
yunuo970428 2 years ago
parent
commit
c13bd58181
  1. 23
      anrui-system-ui/src/views/personalization/personalization.vue

23
anrui-system-ui/src/views/personalization/personalization.vue

@ -21,8 +21,13 @@
</el-form>
<el-form ref="tempobj" :model="temp" class="formadd">
<div class="title">
<span>设置流程转办人</span>
<el-button size="mini" type="primary" @click="handleSave()">保存</el-button>
<div>
<span>设置流程转办人</span>
</div>
<div>
<el-button size="mini" type="primary" @click="handleEmpty()">置空</el-button>
<el-button size="mini" type="primary" @click="handleSave()">保存</el-button>
</div>
</div>
<el-row>
<el-col :span="4" class="tleftb">
@ -33,8 +38,8 @@
<el-date-picker
v-model="temp.startDate"
type="datetime"
format="yyyy-MM-dd HH:mm:ss"
value-format="yyyy-MM-dd HH:mm:ss"
format="yyyy-MM-dd HH:mm"
value-format="yyyy-MM-dd HH:mm"
clearable
placeholder="开始时间">
</el-date-picker>
@ -42,8 +47,8 @@
<el-date-picker
v-model="temp.endDate"
type="datetime"
format="yyyy-MM-dd HH:mm:ss"
value-format="yyyy-MM-dd HH:mm:ss"
format="yyyy-MM-dd HH:mm"
value-format="yyyy-MM-dd HH:mm"
clearable
placeholder="结束时间">
</el-date-picker>
@ -129,6 +134,12 @@ export default {
}
})
},
handleEmpty() {
this.temp.startDate = ''
this.temp.endDate = ''
this.temp.changeUserSid = ''
this.handleSave()
},
handleSave() {
this.temp.updateBySid = window.sessionStorage.getItem('userSid')
this.temp.userSid = window.sessionStorage.getItem('userSid')

Loading…
Cancel
Save