添加标签
This commit is contained in:
parent
3327941490
commit
466a3ba559
|
@ -137,6 +137,16 @@
|
|||
<span style="width: 200px;display: inline-block;text-align: right;">商家名称:</span>
|
||||
<el-input style="width:50%;" v-model="consortiaName" placeholder="请输入商家名称"></el-input>
|
||||
</div>
|
||||
<div style="margin-bottom: 10px;">
|
||||
<span style="width: 200px;display: inline-block;text-align: right;">标签:</span>
|
||||
<el-input style="width:50%;" v-model="tags" type="text" placeholder="请输入标签','分割">
|
||||
</el-input>
|
||||
</div>
|
||||
<div style="margin-bottom: 10px;">
|
||||
<span style="width: 200px;display: inline-block;text-align: right;">营业时间:</span>
|
||||
<el-input style="width:50%;" v-model="yysj" type="text" placeholder="请输入营业时间">
|
||||
</el-input>
|
||||
</div>
|
||||
|
||||
<div style="margin-bottom: 10px;">
|
||||
<span style="width: 200px;display: inline-block;text-align: right;">商家抽成比例:</span>
|
||||
|
@ -164,11 +174,6 @@
|
|||
<el-input style="width:50%;" v-model="consortiaContent" type="textarea" :rows="2" placeholder="请输入商家公告">
|
||||
</el-input>
|
||||
</div>
|
||||
<div style="margin-bottom: 10px;">
|
||||
<span style="width: 200px;display: inline-block;text-align: right;">标签:</span>
|
||||
<el-input style="width:50%;" v-model="tags" type="text" placeholder="请输入标签','分割">
|
||||
</el-input>
|
||||
</div>
|
||||
<div style="margin-bottom: 10px;">
|
||||
<span style="width: 200px;display: inline-block;text-align: right;">商家头像:</span>
|
||||
<div style="display: inline-block;width:148px;height:148px;border: 1px dashed #c0ccda;border-radius: 6px;text-align: center;line-height: 148px;">
|
||||
|
@ -234,6 +239,16 @@
|
|||
<span style="width: 200px;display: inline-block;text-align: right;">商家名称:</span>
|
||||
<el-input style="width:50%;" v-model="consortiaName" placeholder="请输入商家名称"></el-input>
|
||||
</div>
|
||||
<div style="margin-bottom: 10px;">
|
||||
<span style="width: 200px;display: inline-block;text-align: right;">标签:</span>
|
||||
<el-input style="width:50%;" v-model="tags" type="text" placeholder="请输入标签','分割">
|
||||
</el-input>
|
||||
</div>
|
||||
<div style="margin-bottom: 10px;">
|
||||
<span style="width: 200px;display: inline-block;text-align: right;">营业时间:</span>
|
||||
<el-input style="width:50%;" v-model="yysj" type="text" placeholder="请输入营业时间">
|
||||
</el-input>
|
||||
</div>
|
||||
|
||||
<div style="margin-bottom: 10px;">
|
||||
<span style="width: 200px;display: inline-block;text-align: right;">商家抽成比例:</span>
|
||||
|
@ -261,11 +276,6 @@
|
|||
<el-input style="width:50%;" v-model="consortiaContent" type="textarea" :rows="2" placeholder="请输入商家公告">
|
||||
</el-input>
|
||||
</div>
|
||||
<div style="margin-bottom: 10px;">
|
||||
<span style="width: 200px;display: inline-block;text-align: right;">标签:</span>
|
||||
<el-input style="width:50%;" v-model="tags" type="text" placeholder="请输入标签','分割">
|
||||
</el-input>
|
||||
</div>
|
||||
<div style="margin-bottom: 10px;">
|
||||
<span style="width: 200px;display: inline-block;text-align: right;">商家头像:</span>
|
||||
<div style="display: inline-block;width: 148px;height: 148px;border: 1px dashed #c0ccda;">
|
||||
|
@ -498,6 +508,7 @@ import { serverPaths } from '@/utils/enumData'
|
|||
couponPicture:'',
|
||||
consortiaContent: 0,
|
||||
tags:'',
|
||||
yysj:'',
|
||||
rate: '',
|
||||
identityName:'',
|
||||
identityCard:'',
|
||||
|
@ -520,6 +531,7 @@ import { serverPaths } from '@/utils/enumData'
|
|||
consortiaName: '',
|
||||
consortiaContent: '',
|
||||
tags:'',
|
||||
yysj:'',
|
||||
rate: '',
|
||||
userId: '',
|
||||
userName:'',
|
||||
|
@ -635,7 +647,8 @@ import { serverPaths } from '@/utils/enumData'
|
|||
this.consortiaName = ''
|
||||
this.couponPicture = ''
|
||||
this.consortiaContent = ''
|
||||
this.tags='',
|
||||
this.tags=''
|
||||
this.yysj=''
|
||||
this.userId = ''
|
||||
this.userName = ''
|
||||
this.phone = ''
|
||||
|
@ -786,6 +799,7 @@ import { serverPaths } from '@/utils/enumData'
|
|||
'couponPicture': this.couponPicture,
|
||||
'consortiaContent': this.consortiaContent,
|
||||
'tags': this.tags,
|
||||
'yysj':this.yysj,
|
||||
'rate': this.rate,
|
||||
'userId': this.userId,
|
||||
'identityName': this.identityName,
|
||||
|
@ -827,6 +841,7 @@ import { serverPaths } from '@/utils/enumData'
|
|||
this.consortiaName = row.consortiaName
|
||||
this.consortiaContent = row.consortiaContent
|
||||
this.tags = row.tags
|
||||
this.yysj = row.yysj
|
||||
this.rate = row.rate
|
||||
this.phone = row.phone
|
||||
this.userId = row.userId
|
||||
|
@ -979,6 +994,7 @@ import { serverPaths } from '@/utils/enumData'
|
|||
'consortiaName': this.consortiaName,
|
||||
'consortiaContent': this.consortiaContent,
|
||||
'tags': this.tags,
|
||||
'yysj': this.yysj,
|
||||
'rate': this.rate,
|
||||
'phone':this.phone,
|
||||
'userId': this.userId,
|
||||
|
|
Loading…
Reference in New Issue