浏览代码

修改名称

lichao 3 年之前
父节点
当前提交
3120c4286e
共有 3 个文件被更改,包括 5 次插入5 次删除
  1. 2 2
      src/page/index/tags.vue
  2. 1 1
      src/router/views/index.js
  3. 2 2
      src/store/modules/ifdetail.js

+ 2 - 2
src/page/index/tags.vue

@@ -282,10 +282,10 @@ export default {
         if (tag.label == "收货(E)") {
           this.$store.commit("REC_OUT_DETAIL");
         }
-        if (tag.label == "发货单(N)") {
+        if (tag.label == "客户确认(N)") {
           this.$store.commit("IN_OUT_DETAIL");
         }
-        if (tag.label == "收货单(N)") {
+        if (tag.label == "采购确认(N)") {
           this.$store.commit("DOM_OUT_DETAIL");
         }
         if (tag.label == "发货单(I)") {

+ 1 - 1
src/router/views/index.js

@@ -266,7 +266,7 @@ export default [{
         children: [
             {
                 path: '/businessManagement/receipt/index',
-                name: '收货单(N)',
+                name: '采购确认(N)',
                 meta: {
                     keepAlive: true,
                 },

+ 2 - 2
src/store/modules/ifdetail.js

@@ -111,10 +111,10 @@ const ifdetail = {
       for (let item in state) {
         state[item] = false
       }
-      if (tag.label == '发货单(N)') {
+      if (tag.label == '客户确认(N)') {
         state.inStatus = true;
       }
-      if (tag.label == '收货单(N)') {
+      if (tag.label == '采购确认(N)') {
         state.domTakeStatus = true;
       }
       if (tag.label == '发货单(I)') {