浏览代码

升级,转派消息通知BUG

seimin 3 年之前
父节点
当前提交
4a1c10a6bf
共有 1 个文件被更改,包括 6 次插入0 次删除
  1. 6 0
      src/views/processing.vue

+ 6 - 0
src/views/processing.vue

@@ -1278,6 +1278,8 @@ export default {
1278 1278
       if (that.order == 1) {
1279 1279
         // 直接处理
1280 1280
         that.modelData.handler_code = "resolve";
1281
+        that.modelData.msgflag = "申请关闭";
1282
+        that.modelData.submit = "申请关闭";
1281 1283
         that.modelData.incident.handleDescription =
1282 1284
           that.model.handleDescription;
1283 1285
         that.modelData.incident.handleCategory = {
@@ -1300,6 +1302,8 @@ export default {
1300 1302
       } else if (that.order == 2) {
1301 1303
         // 升级
1302 1304
         that.modelData.handler_code = "function";
1305
+        that.modelData.msgflag = "升级";
1306
+        that.modelData.submit = "升级";
1303 1307
         that.modelData.isupreason = that.model.isupreason;
1304 1308
         that.modelData.assignee = that.model.handlerUser;
1305 1309
         that.modelData.examine = {
@@ -1314,6 +1318,8 @@ export default {
1314 1318
       } else if (that.order == 3) {
1315 1319
         // 转派
1316 1320
         that.modelData.handler_code = "forward";
1321
+        that.modelData.msgflag = "转派";
1322
+        that.modelData.submit = "转派";
1317 1323
         that.modelData.transferReason = that.model.transferReason;
1318 1324
         that.modelData.assignee = that.model.handlerUser;
1319 1325
         delete that.modelData.isupreason;