Commit 462b8d41 by WH

fix:修复holiday缺陷

parent c5b51508
......@@ -6,6 +6,7 @@ export default class Holiday {
currCode: 'CHY',//币种代码
currSymbol: '',//币种符号
calendarDt: '',//日历日期
remark: '',//备注
}
}
}
......@@ -311,6 +311,7 @@
cancelButtonText: "取消",
inputPlaceholder: "为加快审批速度,请简洁填写摘要",
inputValidator: (val) => {
this.model.remark = val
if (val == null) {
return true
}
......@@ -329,7 +330,8 @@
let params = {
currCode: this.model.currCode,
calendarDtList:operateDataList
calendarDtList:operateDataList,
remark: this.model.remark
}
this.$Api.post('/service/hol/upd',{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment