优化:添加在线买单二维码显示
This commit is contained in:
parent
76ee991614
commit
626ad4774c
|
|
@ -373,7 +373,13 @@
|
||||||
{{ merData.is_best ? "是" : "否" }}
|
{{ merData.is_best ? "是" : "否" }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="infoType != 3" class="submit-button">
|
<div v-if="infoType == '4'" class="user-msg">
|
||||||
|
<div class="qr-code-box">
|
||||||
|
<div class="title">在线买单二维码</div>
|
||||||
|
<img class="qr-code-img" :src="merData.online_payment_qr_code" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div v-if="infoType != 3 && infoType != 4" class="submit-button">
|
||||||
<el-button type="primary" :loading="submitLoading" @click="submitForm('ruleForm')">提交</el-button>
|
<el-button type="primary" :loading="submitLoading" @click="submitForm('ruleForm')">提交</el-button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -600,7 +606,8 @@ export default {
|
||||||
tabList: [
|
tabList: [
|
||||||
{value: '1',title: '基本信息'},
|
{value: '1',title: '基本信息'},
|
||||||
{value: '2',title: '店铺信息'},
|
{value: '2',title: '店铺信息'},
|
||||||
{value: '3',title: '功能信息'}
|
{value: '3',title: '功能信息'},
|
||||||
|
{value: '4',title: '二维码信息'}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -646,7 +653,7 @@ export default {
|
||||||
this.value1 = e;
|
this.value1 = e;
|
||||||
this.merData.mer_take_time[0] = e
|
this.merData.mer_take_time[0] = e
|
||||||
},
|
},
|
||||||
onchangeTime2(e) {
|
onchangeTime2(e) {
|
||||||
this.value2 = e;
|
this.value2 = e;
|
||||||
this.merData.mer_take_time[1] = e
|
this.merData.mer_take_time[1] = e
|
||||||
},
|
},
|
||||||
|
|
@ -953,6 +960,24 @@ export default {
|
||||||
.user-msg {
|
.user-msg {
|
||||||
padding: 0 20px;
|
padding: 0 20px;
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
|
.qr-code-box{
|
||||||
|
display: inline-flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
justify-content: flex-start;
|
||||||
|
padding-left: 200px;
|
||||||
|
.title{
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
.qr-code-img{
|
||||||
|
margin-left: 50px;
|
||||||
|
border: 1px solid #CFCFCF;
|
||||||
|
height: 200px;
|
||||||
|
width: 200px;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.basic-information {
|
.basic-information {
|
||||||
padding: 0 100px;
|
padding: 0 100px;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue