diff --git a/src/views/activiti/applyList.vue b/src/views/activiti/applyList.vue index a718afd..d1d3c6f 100644 --- a/src/views/activiti/applyList.vue +++ b/src/views/activiti/applyList.vue @@ -227,8 +227,9 @@ // 表头 columns: [ { - title: '#', + title: '序号', dataIndex: '', + width: '80px', key:'rowIndex', align:"center", customRender:function (t,r,index) { @@ -237,7 +238,7 @@ }, { title: '标题', - align:"left", + // align:"left", dataIndex: 'title', align:"center", scopedSlots: { customRender: 'logContent' }, @@ -358,6 +359,9 @@ loadingData: false } }, + created(){ + this.searchReset(); + }, methods: { initDictConfig() { //初始化字典 - 流程分类 diff --git a/src/views/activiti/form/ProcessMaterialsAllotForm.vue b/src/views/activiti/form/ProcessMaterialsAllotForm.vue index 496fef4..64ece18 100644 --- a/src/views/activiti/form/ProcessMaterialsAllotForm.vue +++ b/src/views/activiti/form/ProcessMaterialsAllotForm.vue @@ -799,7 +799,30 @@ this.getAllTable().then(tables => { return validateFormAndTables(this.form, tables) }).then(allValues => { - console.log('所有数据', allValues) + // console.log('所有数据', allValues) + // console.log('所有数据allValues.tablesValue[0].values[0]', allValues.tablesValue[0].values[0]) + if(!allValues.tablesValue[0].values[0] ){ + this.$message.warning("请填写调拨物资!"); + return + }else{ + let all = false; + allValues.tablesValue[0].values.forEach( it => { + if(!it.allotNumber){ + this.$message.warning("请填写完整调拨物资数据!"); + all = true; + return + } + if(!it.allotTarget){ + this.$message.warning("请选择接收调拨目标!"); + all = true; + return + } + }); + if(all){ + return + } + + } if (typeof this.classifyIntoFormData !== 'function') { throw this.throwNotFunction('classifyIntoFormData') } @@ -848,18 +871,18 @@ console.log('提交方法', method) if(this.btndisabled === false){ this.btndisabled = true - httpAction(url, formData, method).then((res) => { - if (res.success) { - this.$message.success('提交申请成功!') - //todo 将表单的数据传给父组件 - this.$emit('loadData') - this.close() - } else { - this.$message.error(res.message) - } - }).finally(() => { - this.btndisabled = false - }) + // httpAction(url, formData, method).then((res) => { + // if (res.success) { + // this.$message.success('提交申请成功!') + // //todo 将表单的数据传给父组件 + // this.$emit('loadData') + // this.close() + // } else { + // this.$message.error(res.message) + // } + // }).finally(() => { + // this.btndisabled = false + // }) } } }) diff --git a/src/views/activiti/todoManage.vue b/src/views/activiti/todoManage.vue index ded076c..9fd786a 100644 --- a/src/views/activiti/todoManage.vue +++ b/src/views/activiti/todoManage.vue @@ -66,7 +66,7 @@ :pagination="ipagination" @change="handleTableChange" ref="table" > - + @@ -336,6 +336,9 @@ } this.init() }, + created() { + this.handleReset(); + }, methods: { onDateChange: function(value, dateString) { @@ -414,11 +417,13 @@ if (res.success) { this.lcModa.visible = false this.$message.success('操作成功') - this.modalTaskVisible = false + this.modalTaskVisible = false; + this.form.comment=null; this.getDataList() } else { console.log(res) - this.$message.error(res.message) + this.$message.error(res.message); + this.form.comment=null; return } }) @@ -431,7 +436,8 @@ if (res.success) { this.lcModa.visible = false this.$message.success('操作成功') - this.modalTaskVisible = false + this.modalTaskVisible = false; + this.form.comment=null; this.getDataList() } }) @@ -449,7 +455,8 @@ if (res.success) { this.lcModa.visible = false this.$message.success('操作成功') - this.modalTaskVisible = false + this.modalTaskVisible = false; + this.form.comment=null; this.getDataList() } }) @@ -467,12 +474,13 @@ this.submitLoading = false if (res.success) { this.$message.success('操作成功') - this.modalTaskVisible = false + this.modalTaskVisible = false; + this.form.comment=null; this.getDataList() } }) } - this.form.comment=null; + this.form.userId=null; }, async detail(r) { diff --git a/src/views/suppliesstronger/modules/ProcessSuppliesStrongerForm.vue b/src/views/suppliesstronger/modules/ProcessSuppliesStrongerForm.vue index e1a8100..3e5982f 100644 --- a/src/views/suppliesstronger/modules/ProcessSuppliesStrongerForm.vue +++ b/src/views/suppliesstronger/modules/ProcessSuppliesStrongerForm.vue @@ -131,7 +131,7 @@