Browse Source

解决申请人待办工作,点击办理,重新选择车辆,点击保存和提交没反应,且列表内容无变化

zhanglei
yxt_djz 3 years ago
parent
commit
22d221770f
  1. 2
      anrui-scm/anrui-scm-ui/src/views/baseoutsourcingapplication/baseoutsourcingapplication.vue
  2. 3
      anrui-scm/anrui-scm-ui/src/views/workFlow/caigoutuikuFlow/caigoutuikuEdit.vue

2
anrui-scm/anrui-scm-ui/src/views/baseoutsourcingapplication/baseoutsourcingapplication.vue

@ -45,7 +45,7 @@
</el-table-column>
<el-table-column prop="nodeState" width="100px;" label="状态" align="center" >
<template slot-scope="scope">
<el-button type="primary" size="mini" @click="flowRecord(scope.row)">{{scope.row.nodeState}}</el-button>
<span @click="flowRecord(scope.row)" style="color: #018ad2;cursor: pointer;">{{scope.row.nodeState}}</span>
</template>
</el-table-column>
<el-table-column prop="applicationDate" width="110px;" label="申请日期" align="center" />

3
anrui-scm/anrui-scm-ui/src/views/workFlow/caigoutuikuFlow/caigoutuikuEdit.vue

@ -238,6 +238,7 @@
vinNo: depositVehicleList[i].vinNo
})
}
this.formobj.detailsList=this.list
console.log('车辆表数据', this.list)
},
//
@ -338,7 +339,7 @@
this.$refs['form_obj'].validate(valid => {
if (valid) {
this.submitdisabled = true
req.submitVehicleReturn(this.formobj).then(resp => {
req.submitVehicleReturn(this.formobj).then(resp => {
this.submitdisabled = false
if (resp.success) {
_this.handleReturn('true')

Loading…
Cancel
Save