Browse Source

2023.11.18 - 修复bug

GuYun-D 1 year ago
parent
commit
dd122de672

+ 2 - 2
src/views/brandFactory/factoryList/index.vue

@@ -712,7 +712,7 @@ export default {
       this.dialogVisible = true
       this.isEdit = true
       this.originShopDetailInfo = JSON.parse(JSON.stringify(res.data))
-      this.initShopClassPath(this.ruleForm.classificationId)
+      this.initShopClassPath(res.data.classificationId)
       this.ruleForm.voucherReturn *= 1
       const advertisementStr = this.ruleForm.advertisement
       if (advertisementStr && typeof advertisementStr === 'string') {
@@ -876,7 +876,7 @@ export default {
       })
 
       if (currentClassInfo) {
-        this.ruleForm.classificationId = currentClassInfo.levelId.slice(1).split('/').map(item => item * 1)
+        this.ruleForm.classificationId = currentClassInfo.levelId.slice(1).split('/')
       }
     },
 

+ 4 - 3
src/views/business/businessList/index.vue

@@ -334,7 +334,8 @@ export default {
         chargePersonName: '', // 店铺负责人
         contractState: '', // 合同状态 1-有效 0-无效
         page: '1', // 当前页
-        pageSize: '10' // 每页记录数
+        pageSize: '10', // 每页记录数
+        shopType: 2
       },
       disabled: false,
       ruleForm: {
@@ -504,7 +505,7 @@ export default {
   watch: {},
   // 生命周期 - 创建完成(可以访问当前this实例)
   created() {
-   
+
   },
   // 生命周期 - 挂载完成(可以访问DOM元素)
   mounted() {
@@ -852,7 +853,7 @@ export default {
       })
 
       if (currentClassInfo) {
-        this.ruleForm.classificationId = currentClassInfo.levelId.slice(1).split('/').map(item => item * 1)
+        this.ruleForm.classificationId = currentClassInfo.levelId.slice(1).split('/')
       }
     },