|
|
@@ -5,9 +5,13 @@
|
|
|
<view v-if="id>0" style="color:red;font-weight:bold;text-align:center;font-size:32upx;margin:12upx auto;width:90%;">
|
|
|
本页请勿修改任何东西,要改请问过技术,否则出问题自负
|
|
|
</view>
|
|
|
+ <tui-list-cell class="line-cell" :hover="false" v-if="merchantName!=''">
|
|
|
+ <view class="tui-title">门店名称</view>
|
|
|
+ <view>{{ merchantName }}</view>
|
|
|
+ </tui-list-cell>
|
|
|
<tui-list-cell class="line-cell" :hover="false">
|
|
|
- <view class="tui-title">名称</view>
|
|
|
- <input v-model="form.shopName" placeholder-class="phcolor" class="tui-input" name="shopName" placeholder="请输入名称,如同安店" maxlength="50" type="text" />
|
|
|
+ <view class="tui-title">所属分店</view>
|
|
|
+ <input v-model="form.shopName" placeholder-class="phcolor" class="tui-input" name="shopName" placeholder="请输入名称,如雄安店" maxlength="50" type="text" />
|
|
|
</tui-list-cell>
|
|
|
<tui-list-cell class="line-cell" :hover="false">
|
|
|
<view class="tui-title">类型</view>
|
|
|
@@ -90,7 +94,7 @@
|
|
|
</tui-list-cell>
|
|
|
<tui-list-cell class="line-cell" :hover="false">
|
|
|
<view class="tui-title ">门牌</view>
|
|
|
- <input v-model="form.floor" placeholder-class="phcolor" class="tui-input" name="floor" placeholder="楼号门牌号(建议填写,方便找你)" />
|
|
|
+ <input v-model="form.floor" placeholder-class="phcolor" class="tui-input" name="floor" placeholder="楼号门牌号" />
|
|
|
</tui-list-cell>
|
|
|
|
|
|
<tui-list-cell class="line-cell" :hover="false">
|
|
|
@@ -252,6 +256,7 @@ export default {
|
|
|
openTimeVisible: false,
|
|
|
start_time: '00:00',
|
|
|
end_time: '00:00',
|
|
|
+ merchantName:'',
|
|
|
form: {
|
|
|
join:0,
|
|
|
shopName: '',
|
|
|
@@ -346,6 +351,7 @@ export default {
|
|
|
this.form.openEndTime = this.end_time
|
|
|
}
|
|
|
this.hasMap = data.hasMap || 0
|
|
|
+ this.merchantName = data.merchantName||''
|
|
|
})
|
|
|
.catch(() => {
|
|
|
this.$msg('获取门店详情失败')
|