Commit b312ef34 authored by 姬鋆屾's avatar 姬鋆屾

fixed:修改分数自增问题

parent 38a9276b
......@@ -306,7 +306,11 @@ export default {
},
// 表格内下拉选框得触发事件
handleChange(v, row) {
this.$post("/staff/perform/summary/save", row).then((res) => {
let obj = {};
obj.id = row.id;
obj.auditLevel = row.auditLevel;
obj.recommend = row.recommend;
this.$post("/staff/perform/summary/save", obj).then((res) => {
const { code, msg } = res;
code == 1 ? this.$message.success(msg) : this.$message.error(msg);
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment