|
|
@ -4,6 +4,7 @@ |
|
|
<view class="lf-color-gray">在线客服</view> |
|
|
<view class="lf-color-gray">在线客服</view> |
|
|
<button class="btn" open-type="contact">在线联系</button> |
|
|
<button class="btn" open-type="contact">在线联系</button> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
|
|
|
<view class="lf-row-between item"> |
|
|
<view class="lf-row-between item"> |
|
|
<view class="lf-color-gray">服务时间</view> |
|
|
<view class="lf-color-gray">服务时间</view> |
|
|
<view>10:00~20:00</view> |
|
|
<view>10:00~20:00</view> |
|
|
@ -23,6 +24,7 @@ |
|
|
<text class="lf-m-l-20 lf-color-primary" @click="copy">复制</text> |
|
|
<text class="lf-m-l-20 lf-color-primary" @click="copy">复制</text> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
|
|
|
<view class="lf-row-between item"> |
|
|
<view class="lf-row-between item"> |
|
|
<view class="lf-color-gray">当前版本</view> |
|
|
<view class="lf-color-gray">当前版本</view> |
|
|
<view>{{ version }}</view> |
|
|
<view>{{ version }}</view> |
|
|
@ -34,13 +36,22 @@ |
|
|
export default { |
|
|
export default { |
|
|
data(){ |
|
|
data(){ |
|
|
return { |
|
|
return { |
|
|
version: '' |
|
|
|
|
|
|
|
|
version: '', |
|
|
|
|
|
list: [] |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
onLoad(){ |
|
|
onLoad(){ |
|
|
this.version = this.API.VERSION; |
|
|
this.version = this.API.VERSION; |
|
|
|
|
|
this.getInfo(); |
|
|
}, |
|
|
}, |
|
|
methods: { |
|
|
methods: { |
|
|
|
|
|
// 获取信息 |
|
|
|
|
|
getInfo(){ |
|
|
|
|
|
this.$http(this.API.API_CONTACT).then(res => { |
|
|
|
|
|
console.log("info", res); |
|
|
|
|
|
this.list = res.data; |
|
|
|
|
|
}) |
|
|
|
|
|
}, |
|
|
// 拨打电话 |
|
|
// 拨打电话 |
|
|
makePhoneCall(){ |
|
|
makePhoneCall(){ |
|
|
uni.makePhoneCall({ |
|
|
uni.makePhoneCall({ |
|
|
|