Quellcode durchsuchen

feature_20250828_竞品店维护

zhujindu vor 3 Monaten
Ursprung
Commit
56a912a70c
2 geänderte Dateien mit 16 neuen und 4 gelöschten Zeilen
  1. 8 2
      src/views/deviceOutside/index.vue
  2. 8 2
      src/views/deviceWithin/index.vue

+ 8 - 2
src/views/deviceOutside/index.vue

@@ -2046,8 +2046,14 @@ export default {
         buryingPointName: '客户信息',
         buryingPointPosition: this.tabVal == 1 ? '我的' : '销售部',
       });
-      // FSQ 仿石漆服务商
-      if (/^FSQ/.test(val.storeCode)) {
+      if (val.sfaStoreType.type == 'qzd') {
+        // 竞品店/潜在店
+        this.$router.push({
+          path: '/competingStoresDetail',
+          query: { id: val.storeId },
+        });
+      } else if (/^FSQ/.test(val.storeCode)) {
+        // FSQ 仿石漆服务商
         this.$router.push({
           path: '/FSQStoreDetail',
           query: { id: val.storeId },

+ 8 - 2
src/views/deviceWithin/index.vue

@@ -1444,8 +1444,14 @@ export default {
         buryingPointName: '客户信息',
         buryingPointPosition: '计划内',
       });
-      // FSQ 仿石漆服务商
-      if (/^FSQ/.test(val.storeCode)) {
+      if (val.sfaStoreType.type == 'qzd') {
+        // 竞品店/潜在店
+        this.$router.push({
+          path: '/competingStoresDetail',
+          query: { id: val.storeId },
+        });
+      } else if (/^FSQ/.test(val.storeCode)) {
+        // FSQ 仿石漆服务商
         this.$router.push({
           path: '/FSQStoreDetail',
           query: { id: val.storeId },