修改标签信息

This commit is contained in:
yangjun 2024-07-10 13:45:15 +08:00
parent 0de2fdcba8
commit 3327941490
1 changed files with 16 additions and 0 deletions

View File

@ -164,6 +164,11 @@
<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;">
@ -256,6 +261,11 @@
<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;">
@ -487,6 +497,7 @@ import { serverPaths } from '@/utils/enumData'
consortiaName: '',
couponPicture:'',
consortiaContent: 0,
tags:'',
rate: '',
identityName:'',
identityCard:'',
@ -508,6 +519,7 @@ import { serverPaths } from '@/utils/enumData'
consortiaId: '',
consortiaName: '',
consortiaContent: '',
tags:'',
rate: '',
userId: '',
userName:'',
@ -623,6 +635,7 @@ import { serverPaths } from '@/utils/enumData'
this.consortiaName = ''
this.couponPicture = ''
this.consortiaContent = ''
this.tags='',
this.userId = ''
this.userName = ''
this.phone = ''
@ -772,6 +785,7 @@ import { serverPaths } from '@/utils/enumData'
'consortiaName': this.consortiaName,
'couponPicture': this.couponPicture,
'consortiaContent': this.consortiaContent,
'tags': this.tags,
'rate': this.rate,
'userId': this.userId,
'identityName': this.identityName,
@ -812,6 +826,7 @@ import { serverPaths } from '@/utils/enumData'
this.consortiaId = row.consortiaId
this.consortiaName = row.consortiaName
this.consortiaContent = row.consortiaContent
this.tags = row.tags
this.rate = row.rate
this.phone = row.phone
this.userId = row.userId
@ -963,6 +978,7 @@ import { serverPaths } from '@/utils/enumData'
'consortiaId': this.consortiaId,
'consortiaName': this.consortiaName,
'consortiaContent': this.consortiaContent,
'tags': this.tags,
'rate': this.rate,
'phone':this.phone,
'userId': this.userId,