|
@@ -483,7 +483,7 @@
|
|
|
>
|
|
|
<!-- :key="index + listIndex + listItem.normId" -->
|
|
|
<!-- :rules="rules" ref="form" -->
|
|
|
-
|
|
|
+
|
|
|
<el-col :span="12" >
|
|
|
<el-form-item
|
|
|
:label="
|
|
@@ -502,7 +502,7 @@
|
|
|
</el-col >
|
|
|
|
|
|
</el-form>
|
|
|
-
|
|
|
+
|
|
|
</template>
|
|
|
</el-row>
|
|
|
<!-- 这里是第二种写法 -->
|
|
@@ -625,7 +625,7 @@
|
|
|
:rules="rules"
|
|
|
:key="listItem.normfeeId"
|
|
|
>
|
|
|
- <!-- :rules="rules" ref="form" -->
|
|
|
+ <!-- :rules="rules" ref="form" -->z
|
|
|
<el-form-item
|
|
|
:label="
|
|
|
listItem.normfeeName + '(' + listItem.funit_dictText + ')'
|
|
@@ -1034,7 +1034,8 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
- handleCheck(val) {
|
|
|
+ handleCheck(val,value) {
|
|
|
+ // console.log(value)
|
|
|
let data = {
|
|
|
gatherId: this.dataId,
|
|
|
type: 1,
|
|
@@ -1042,6 +1043,7 @@ export default {
|
|
|
let audit = {
|
|
|
gatherId: this.dataId,
|
|
|
auditType: 2,
|
|
|
+ remark: value,
|
|
|
};
|
|
|
if (val == 1) {
|
|
|
approve(data).then((res) => {
|
|
@@ -1052,6 +1054,7 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
} else {
|
|
|
+ // console.log('aude',audit)
|
|
|
bsqAudit(audit).then((res) => {
|
|
|
if (res.code == 200) {
|
|
|
this.$modal.msgSuccess("驳回成功");
|
|
@@ -1064,14 +1067,14 @@ export default {
|
|
|
|
|
|
// 驳回处理
|
|
|
handleReject() {
|
|
|
- this.$prompt("请驳回理由:", "提示", {
|
|
|
+ this.$prompt("请输入驳回理由:", "提示", {
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
|
inputType: "textarea",
|
|
|
})
|
|
|
.then(({ value }) => {
|
|
|
- // console.log(value);
|
|
|
- this.handleCheck(2);
|
|
|
+ // console.log(666,value);
|
|
|
+ this.handleCheck(2,value);
|
|
|
// this.$message({
|
|
|
// type: 'success',
|
|
|
// message: '你的邮箱是: ' + value
|
|
@@ -1299,7 +1302,7 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
});
|
|
|
-
|
|
|
+
|
|
|
});
|
|
|
Promise.all(p)
|
|
|
.then(() => {
|