dts-shop/wx-mini-program/pages/about/about.wxml

55 lines
1.4 KiB
Plaintext

<view class="container">
<view class="about-item">
<view class="item-left">
<label class="jhx_f12">项目名称: </label>
<text>{{shopInfo.name}}</text>
</view>
<view class="item-right" bindtap="showLocation">
<image src="/static/images/ico-addr.png" class="right-icon"></image>
</view>
</view>
<view class="about-item">
<view class="item-left">
<label class="jhx_f12">项目地址: </label>
<text>{{shopInfo.address}}</text>
</view>
</view>
<view class="about-item">
<view class="item-left">
<label class="jhx_f12">电话号码: </label>
<text>{{shopInfo.linkPhone}}</text>
</view>
<view class="item-right" bindtap="callPhone">
<image src="/static/images/telephone.png" class="right-icon"></image>
</view>
</view>
<view class="about-item">
<view class="item-left">
<label class="jhx_f12">QQ交流群: </label>
<text>{{shopInfo.qqNumber}}</text>
</view>
<view class="item-right">
<image src="/static/images/mobile.png" class="right-icon"></image>
</view>
</view>
<view class="about-item">
<view class="item-left">
<label class="jhx_f12">当前版本: </label>
<text>1.0.0</text>
</view>
</view>
<view class="about-item">
<view class="item-left">
<label class="jhx_f12">开源协议: </label>
<text>MIT</text>
</view>
</view>
</view>