dingxin 6 年前
父节点
当前提交
479030faeb
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4
    0
      VUECODE/smart-property-manage/src/views/shop/shopAdd.vue

+ 4
- 0
VUECODE/smart-property-manage/src/views/shop/shopAdd.vue 查看文件

54
         <el-select v-model="listData.shopTypeId" placeholder="商铺类型" clearable class="filter-item">
54
         <el-select v-model="listData.shopTypeId" placeholder="商铺类型" clearable class="filter-item">
55
           <el-option v-for="item in shopTypeList" :key="item.id" :value="item.id" :label="item.typeName"/>
55
           <el-option v-for="item in shopTypeList" :key="item.id" :value="item.id" :label="item.typeName"/>
56
         </el-select>
56
         </el-select>
57
+         <a @click="shopSetting"><span style="padding-left:4%;font-size:13%;color:#00BFFF">{{ '维护类型' }}</span></a>
57
       </el-form-item>
58
       </el-form-item>
58
       <el-form-item label="上架状态" prop="shopStatus">
59
       <el-form-item label="上架状态" prop="shopStatus">
59
         <el-select v-model="listData.shopStatus" placeholder="请选择">
60
         <el-select v-model="listData.shopStatus" placeholder="请选择">
277
         loading.close()
278
         loading.close()
278
         console.log('error AddBuilding')
279
         console.log('error AddBuilding')
279
       })
280
       })
281
+    },
282
+    shopSetting(){
283
+       this.$router.push({ name: 'shop-setting'})
280
     }
284
     }
281
   }
285
   }
282
 }
286
 }