添加游戏数学审批并修改审批意见bug

This commit is contained in:
sk1551 2020-11-03 11:39:22 +08:00
parent 46129e0c94
commit 0c22bbf592
2 changed files with 4 additions and 6 deletions

View File

@ -138,7 +138,7 @@ export default {
this.tbr = response.createusername; this.tbr = response.createusername;
this.classname = response.classname; this.classname = response.classname;
this.xnxq = response.data.xnxq; this.xnxq = response.data.xnxq;
this.spyj = response.data.shyj; this.spyj = response.data.spyj;
}); });
this.listMathTermItemPlan(); this.listMathTermItemPlan();
}, },

View File

@ -194,8 +194,8 @@
<el-radio label="2">通过</el-radio> <el-radio label="2">通过</el-radio>
</el-radio-group> </el-radio-group>
</el-form-item> </el-form-item>
<el-form-item label="审批建议" prop="shyj"> <el-form-item label="审批建议" prop="spyj">
<el-input v-model="form.shyj" type="textarea" placeholder="请输入审核建议" /> <el-input v-model="form.spyj" type="textarea" placeholder="请输入审核建议" />
</el-form-item> </el-form-item>
</el-form> </el-form>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
@ -257,7 +257,6 @@ export default {
status: "1", status: "1",
spr: undefined, spr: undefined,
sptime: undefined, sptime: undefined,
spyj: undefined,
createuserid: undefined, createuserid: undefined,
}, },
// //
@ -342,7 +341,6 @@ export default {
status: "2", status: "2",
spr: undefined, spr: undefined,
sptime: undefined, sptime: undefined,
spyj: undefined,
remark: undefined, remark: undefined,
createuserid: undefined, createuserid: undefined,
createTime: undefined, createTime: undefined,
@ -390,7 +388,7 @@ export default {
if (this.form.id != undefined) { if (this.form.id != undefined) {
updateMathtermplan(this.form).then((response) => { updateMathtermplan(this.form).then((response) => {
if (response.code === 200) { if (response.code === 200) {
this.msgSuccess("修改成功"); this.msgSuccess("审批成功");
this.open = false; this.open = false;
this.getList(); this.getList();
} }