新增了app扫码下载页面

This commit is contained in:
wpf 2024-03-15 18:07:56 +08:00
parent 0470d887d0
commit d217caf63f
3 changed files with 42 additions and 2 deletions

View File

@ -2,8 +2,8 @@
"name" : "惠农生活", "name" : "惠农生活",
"appid" : "__UNI__3A527D1", "appid" : "__UNI__3A527D1",
"description" : "", "description" : "",
"versionName" : "1.9.8", "versionName" : "1.9.9",
"versionCode" : 198, "versionCode" : 199,
"transformPx" : false, "transformPx" : false,
/* 5+App */ /* 5+App */
"app-plus" : { "app-plus" : {

View File

@ -322,6 +322,14 @@
"navigationBarTitleText": "教学视频", "navigationBarTitleText": "教学视频",
"enablePullDownRefresh": false "enablePullDownRefresh": false
} }
},
{
"path" : "pages/newActivity/share/share",
"style" :
{
"navigationBarTitleText" : "APP下载",
"enablePullDownRefresh" : false
}
} }
], ],
"subPackages": [{ "subPackages": [{

View File

@ -0,0 +1,32 @@
<template>
<view class="page">
<view style="margin-bottom: 50rpx;text-align: center;font-size: 40rpx;color: yellow;padding-top: 150rpx;">惠农生活APP</view>
<view style="width: 500rpx;height: 500rpx;margin: 0 auto;">
<image style="width: 100%;height: 100%;" src="https://lihai001.oss-cn-chengdu.aliyuncs.com/def/f668f202403151735165666.png"></image>
</view>
<view style="margin-top: 50rpx;text-align: center;font-size: 36rpx;color: yellow;">扫码即可下载最新版APP</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
onLoad() {},
onShow() {},
methods: {},
onPullDownRefresh() {
uni.stopPullDownRefresh()
}
}
</script>
<style lang="scss">
.page{
height: 100vh;
background: linear-gradient(#ea6241, #ffebc5);
}
</style>