Commit 9de1ff6a by 吕明尚

增加金额券

parent f9db5bd3
...@@ -92,6 +92,7 @@ ...@@ -92,6 +92,7 @@
<el-table v-loading="loading" :data="storeList" @selection-change="handleSelectionChange"> <el-table v-loading="loading" :data="storeList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center"/> <el-table-column type="selection" width="55" align="center"/>
<el-table-column label="门店名称" align="center" prop="name" width="100px"/> <el-table-column label="门店名称" align="center" prop="name" width="100px"/>
<el-table-column align="center" label="城市名称" prop="cityName" width="100px"/>
<el-table-column label="门店类型" align="center" prop="storeType"> <el-table-column label="门店类型" align="center" prop="storeType">
<template slot-scope="scope"> <template slot-scope="scope">
<dict-tag :options="dict.type.store_type" :value="scope.row.storeType"/> <dict-tag :options="dict.type.store_type" :value="scope.row.storeType"/>
...@@ -187,6 +188,9 @@ ...@@ -187,6 +188,9 @@
<el-form-item label="门店名称" prop="name"> <el-form-item label="门店名称" prop="name">
<el-input v-model="form.name" placeholder="请输入门店名称"/> <el-input v-model="form.name" placeholder="请输入门店名称"/>
</el-form-item> </el-form-item>
<el-form-item label="所在城市" prop="cityName">
<el-input v-model="form.cityName" placeholder="请输入所在城市"/>
</el-form-item>
</el-col> </el-col>
</el-row> </el-row>
<el-row> <el-row>
...@@ -629,6 +633,7 @@ export default { ...@@ -629,6 +633,7 @@ export default {
this.form.openShopUuid = openShopUuid; this.form.openShopUuid = openShopUuid;
this.form.address = cityname + shopaddress; this.form.address = cityname + shopaddress;
this.form.name = branchname; this.form.name = branchname;
this.form.cityName = cityname;
this.onSearchMapAddress(); this.onSearchMapAddress();
}, },
selectPoiId(tiktokPoiId) { selectPoiId(tiktokPoiId) {
......
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
<el-table-column label="店铺名称" align="center" prop="shopname" width="120px"/> <el-table-column label="店铺名称" align="center" prop="shopname" width="120px"/>
<el-table-column label="分店名称" align="center" prop="branchname" width="120px"/> <el-table-column label="分店名称" align="center" prop="branchname" width="120px"/>
<el-table-column label="店铺地址" align="center" prop="shopaddress" /> <el-table-column label="店铺地址" align="center" prop="shopaddress" />
<el-table-column align="center" label="城市名称" prop="cityname"/>
</el-table> </el-table>
</el-row> </el-row>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment