|
@@ -73,7 +73,6 @@ import Global from '@/layout/components/global'
|
|
|
},
|
|
|
approved () {
|
|
|
console.log(this.dataForm)
|
|
|
- this.dataForm.auditUserId = ''
|
|
|
this.$confirm(`是否通过审批?`, '提示', {
|
|
|
confirmButtonText: '确定',
|
|
|
cancelButtonText: '取消',
|
|
@@ -119,13 +118,14 @@ import Global from '@/layout/components/global'
|
|
|
Global.$emit("removeCache", "closeSelectedTag", view);
|
|
|
},
|
|
|
approvalRejected () {
|
|
|
+ this.dataForm.auditUserId = ''
|
|
|
this.$confirm(`是否驳回审批?`, '提示', {
|
|
|
confirmButtonText: '确定',
|
|
|
cancelButtonText: '取消',
|
|
|
type: 'warning'
|
|
|
}).then(() => {
|
|
|
return listCharge(this.dataForm,'/warehouse/paths/approvalRejected')
|
|
|
- }).then(({data}) => {
|
|
|
+ }).then(data => {
|
|
|
if (data && data.code == 200) {
|
|
|
this.$message({
|
|
|
message: '驳回审批',
|