|
@@ -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('/')
|
|
|
}
|
|
|
},
|
|
|
|