|
|
|
@ -410,7 +410,7 @@
|
|
|
|
|
</avue-form> |
|
|
|
|
<div style="bottom: 7%; margin-left: 500px; width: 50%"> |
|
|
|
|
<div style="width: 100%"> |
|
|
|
|
<el-button type="primary" @click="submitForm" style="margin-right: 20%">确定</el-button> |
|
|
|
|
<el-button type="primary" @click="submitForm">确定</el-button> |
|
|
|
|
<el-button type="primary" @click="cancellation">取消</el-button> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -2505,18 +2505,16 @@ export default {
|
|
|
|
|
console.log('更新参数>>>>>>>>', row); |
|
|
|
|
if (!!row.id) { |
|
|
|
|
updatesign(row).then( |
|
|
|
|
() => { |
|
|
|
|
this.$message({ |
|
|
|
|
type: 'success', |
|
|
|
|
message: '操作成功!', |
|
|
|
|
}); |
|
|
|
|
this.signBox = false; |
|
|
|
|
this.onLoad(); |
|
|
|
|
}, |
|
|
|
|
error => { |
|
|
|
|
console.log(error); |
|
|
|
|
this.signBox = false; |
|
|
|
|
} |
|
|
|
|
() => { |
|
|
|
|
this.$message({ |
|
|
|
|
type: 'success', |
|
|
|
|
message: '操作成功!', |
|
|
|
|
}); |
|
|
|
|
this.onLoad(); |
|
|
|
|
}, |
|
|
|
|
error => { |
|
|
|
|
console.log(error); |
|
|
|
|
} |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
@ -2530,10 +2528,12 @@ export default {
|
|
|
|
|
console.log('一键签收data>>>>>>>>>>', data); |
|
|
|
|
getOneclickq(data).then(res => { |
|
|
|
|
this.$message.success(res.data.msg); |
|
|
|
|
this.signBox = false; |
|
|
|
|
this.onLoad(); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
// 清空签收表单的数据, 并关闭弹出框 |
|
|
|
|
this.signform = {} |
|
|
|
|
this.signBox = false; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|