|
|
@@ -104,6 +104,7 @@
|
|
|
<!-- #endif -->
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <view class="bottom-version">Version {{version}}</view>
|
|
|
</view>
|
|
|
</template>
|
|
|
<ShopSelect ref="shopSelectComponent" class="bar" :isShowTit="false" top="0upx" @selectShopFn="selectShopFn" />
|
|
|
@@ -135,6 +136,7 @@ export default {
|
|
|
return {
|
|
|
constant: this.$constant,
|
|
|
shopInfo: {},
|
|
|
+ version:'1.0.0'
|
|
|
};
|
|
|
},
|
|
|
onPullDownRefresh () {
|
|
|
@@ -143,6 +145,11 @@ export default {
|
|
|
onShow () {
|
|
|
this.init()
|
|
|
},
|
|
|
+ onLoad(){
|
|
|
+ if(plus.runtime.version){
|
|
|
+ this.version = plus.runtime.version
|
|
|
+ }
|
|
|
+ },
|
|
|
methods: {
|
|
|
showAllShop () {
|
|
|
this.$refs.shopSelectComponent.dropdownShow = true;
|
|
|
@@ -321,6 +328,12 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ .bottom-version{
|
|
|
+ text-align:center;
|
|
|
+ color:#CCCCCC;
|
|
|
+ font-size:30upx;
|
|
|
+ margin-top:20upx;
|
|
|
+ }
|
|
|
}
|
|
|
& .account-info_box {
|
|
|
margin-top: 20upx;
|