|
@@ -34,6 +34,7 @@
|
|
<view slot="icon" class="icon share"></view>
|
|
<view slot="icon" class="icon share"></view>
|
|
</u-cell-item>
|
|
</u-cell-item>
|
|
<u-cell-item title="微信号" :border-bottom="false" bg-color="#f9f9f9">
|
|
<u-cell-item title="微信号" :border-bottom="false" bg-color="#f9f9f9">
|
|
|
|
+ {{setting.service_wechat}}
|
|
<view slot="icon" class="icon wechat"></view>
|
|
<view slot="icon" class="icon wechat"></view>
|
|
</u-cell-item>
|
|
</u-cell-item>
|
|
<u-cell-item title="在线客服" :border-bottom="false" bg-color="#f9f9f9">
|
|
<u-cell-item title="在线客服" :border-bottom="false" bg-color="#f9f9f9">
|
|
@@ -45,7 +46,7 @@
|
|
<u-image
|
|
<u-image
|
|
width="260"
|
|
width="260"
|
|
height="260"
|
|
height="260"
|
|
- src="https://xiansin.oss-cn-shenzhen.aliyuncs.com/sange-bridge/images/sample.jpg"
|
|
|
|
|
|
+ :src="setting.service_qrcode"
|
|
></u-image>
|
|
></u-image>
|
|
</view>
|
|
</view>
|
|
<text class="title">扫描二维码联系客服</text>
|
|
<text class="title">扫描二维码联系客服</text>
|
|
@@ -62,7 +63,8 @@
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
- userData: this.vuex_user_data
|
|
|
|
|
|
+ userData: this.vuex_user_data,
|
|
|
|
+ setting: {}
|
|
}
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
@@ -76,7 +78,7 @@
|
|
},
|
|
},
|
|
getSetting(){
|
|
getSetting(){
|
|
this.$u.api.settingGet().then(data => {
|
|
this.$u.api.settingGet().then(data => {
|
|
- console.log('-->data',data)
|
|
|
|
|
|
+ this.setting = data;
|
|
})
|
|
})
|
|
}
|
|
}
|
|
},
|
|
},
|