修改标签信息
This commit is contained in:
parent
0de2fdcba8
commit
3327941490
|
@ -164,6 +164,11 @@
|
||||||
<el-input style="width:50%;" v-model="consortiaContent" type="textarea" :rows="2" placeholder="请输入商家公告">
|
<el-input style="width:50%;" v-model="consortiaContent" type="textarea" :rows="2" placeholder="请输入商家公告">
|
||||||
</el-input>
|
</el-input>
|
||||||
</div>
|
</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;">
|
<div style="margin-bottom: 10px;">
|
||||||
<span style="width: 200px;display: inline-block;text-align: right;">商家头像:</span>
|
<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;">
|
<div style="display: inline-block;width:148px;height:148px;border: 1px dashed #c0ccda;border-radius: 6px;text-align: center;line-height: 148px;">
|
||||||
|
@ -256,6 +261,11 @@
|
||||||
<el-input style="width:50%;" v-model="consortiaContent" type="textarea" :rows="2" placeholder="请输入商家公告">
|
<el-input style="width:50%;" v-model="consortiaContent" type="textarea" :rows="2" placeholder="请输入商家公告">
|
||||||
</el-input>
|
</el-input>
|
||||||
</div>
|
</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;">
|
<div style="margin-bottom: 10px;">
|
||||||
<span style="width: 200px;display: inline-block;text-align: right;">商家头像:</span>
|
<span style="width: 200px;display: inline-block;text-align: right;">商家头像:</span>
|
||||||
<div style="display: inline-block;width: 148px;height: 148px;border: 1px dashed #c0ccda;">
|
<div style="display: inline-block;width: 148px;height: 148px;border: 1px dashed #c0ccda;">
|
||||||
|
@ -487,6 +497,7 @@ import { serverPaths } from '@/utils/enumData'
|
||||||
consortiaName: '',
|
consortiaName: '',
|
||||||
couponPicture:'',
|
couponPicture:'',
|
||||||
consortiaContent: 0,
|
consortiaContent: 0,
|
||||||
|
tags:'',
|
||||||
rate: '',
|
rate: '',
|
||||||
identityName:'',
|
identityName:'',
|
||||||
identityCard:'',
|
identityCard:'',
|
||||||
|
@ -508,6 +519,7 @@ import { serverPaths } from '@/utils/enumData'
|
||||||
consortiaId: '',
|
consortiaId: '',
|
||||||
consortiaName: '',
|
consortiaName: '',
|
||||||
consortiaContent: '',
|
consortiaContent: '',
|
||||||
|
tags:'',
|
||||||
rate: '',
|
rate: '',
|
||||||
userId: '',
|
userId: '',
|
||||||
userName:'',
|
userName:'',
|
||||||
|
@ -623,6 +635,7 @@ import { serverPaths } from '@/utils/enumData'
|
||||||
this.consortiaName = ''
|
this.consortiaName = ''
|
||||||
this.couponPicture = ''
|
this.couponPicture = ''
|
||||||
this.consortiaContent = ''
|
this.consortiaContent = ''
|
||||||
|
this.tags='',
|
||||||
this.userId = ''
|
this.userId = ''
|
||||||
this.userName = ''
|
this.userName = ''
|
||||||
this.phone = ''
|
this.phone = ''
|
||||||
|
@ -772,6 +785,7 @@ import { serverPaths } from '@/utils/enumData'
|
||||||
'consortiaName': this.consortiaName,
|
'consortiaName': this.consortiaName,
|
||||||
'couponPicture': this.couponPicture,
|
'couponPicture': this.couponPicture,
|
||||||
'consortiaContent': this.consortiaContent,
|
'consortiaContent': this.consortiaContent,
|
||||||
|
'tags': this.tags,
|
||||||
'rate': this.rate,
|
'rate': this.rate,
|
||||||
'userId': this.userId,
|
'userId': this.userId,
|
||||||
'identityName': this.identityName,
|
'identityName': this.identityName,
|
||||||
|
@ -812,6 +826,7 @@ import { serverPaths } from '@/utils/enumData'
|
||||||
this.consortiaId = row.consortiaId
|
this.consortiaId = row.consortiaId
|
||||||
this.consortiaName = row.consortiaName
|
this.consortiaName = row.consortiaName
|
||||||
this.consortiaContent = row.consortiaContent
|
this.consortiaContent = row.consortiaContent
|
||||||
|
this.tags = row.tags
|
||||||
this.rate = row.rate
|
this.rate = row.rate
|
||||||
this.phone = row.phone
|
this.phone = row.phone
|
||||||
this.userId = row.userId
|
this.userId = row.userId
|
||||||
|
@ -963,6 +978,7 @@ import { serverPaths } from '@/utils/enumData'
|
||||||
'consortiaId': this.consortiaId,
|
'consortiaId': this.consortiaId,
|
||||||
'consortiaName': this.consortiaName,
|
'consortiaName': this.consortiaName,
|
||||||
'consortiaContent': this.consortiaContent,
|
'consortiaContent': this.consortiaContent,
|
||||||
|
'tags': this.tags,
|
||||||
'rate': this.rate,
|
'rate': this.rate,
|
||||||
'phone':this.phone,
|
'phone':this.phone,
|
||||||
'userId': this.userId,
|
'userId': this.userId,
|
||||||
|
|
Loading…
Reference in New Issue