unknown 6 months ago
parent
commit
56d96382ef
  1. 2
      config/site.config.js
  2. 36
      manifest.json
  3. 16
      pages/tabbar/statistics/index.vue
  4. 17
      pages/tabbar/student/index.vue

2
config/site.config.js

@ -3,7 +3,7 @@ const VUE_APP_PLATFORM = process.env.VUE_APP_PLATFORM;
module.exports = { module.exports = {
H5_API: VUE_APP_PLATFORM === 'h5' ? '/api' : '',//h5代理 H5_API: VUE_APP_PLATFORM === 'h5' ? '/api' : '',//h5代理
// WX_API: VUE_APP_PLATFORM === 'h5' ? '' : 'http://192.168.1.37:8318/',//非代理地址 // WX_API: VUE_APP_PLATFORM === 'h5' ? '' : 'http://192.168.1.37:8318/',//非代理地址
WX_API: VUE_APP_PLATFORM === 'h5' ? '/' : 'http://123.6.232.1:8099/',//非代理地址
WX_API: VUE_APP_PLATFORM === 'h5' ? '/' : 'http://123.6.232.54:8099/',//非代理地址
// TEMP_HOST: VUE_APP_PLATFORM === 'h5' ? '' : 'http://192.168.1.39:48082/', // TEMP_HOST: VUE_APP_PLATFORM === 'h5' ? '' : 'http://192.168.1.39:48082/',
httpPrefix: 'app-api/', httpPrefix: 'app-api/',
imgUrl: 'http://jxtemp.oss-cn-hangzhou.aliyuncs.com/defaultImages/admin/bigImg/' imgUrl: 'http://jxtemp.oss-cn-hangzhou.aliyuncs.com/defaultImages/admin/bigImg/'

36
manifest.json

@ -2,8 +2,8 @@
"name" : "洛阳驾校端", "name" : "洛阳驾校端",
"appid" : "__UNI__BD23957", "appid" : "__UNI__BD23957",
"description" : "", "description" : "",
"versionName" : "1.0.1",
"versionCode" : 101,
"versionName" : "1.0.3",
"versionCode" : 103,
"transformPx" : false, "transformPx" : false,
/* 5+App */ /* 5+App */
"app-plus" : { "app-plus" : {
@ -47,6 +47,38 @@
/* SDK */ /* SDK */
"sdkConfigs" : { "sdkConfigs" : {
"ad" : {} "ad" : {}
},
"icons" : {
"android" : {
"hdpi" : "unpackage/res/icons/72x72.png",
"xhdpi" : "unpackage/res/icons/96x96.png",
"xxhdpi" : "unpackage/res/icons/144x144.png",
"xxxhdpi" : "unpackage/res/icons/192x192.png"
},
"ios" : {
"appstore" : "unpackage/res/icons/1024x1024.png",
"ipad" : {
"app" : "unpackage/res/icons/76x76.png",
"app@2x" : "unpackage/res/icons/152x152.png",
"notification" : "unpackage/res/icons/20x20.png",
"notification@2x" : "unpackage/res/icons/40x40.png",
"proapp@2x" : "unpackage/res/icons/167x167.png",
"settings" : "unpackage/res/icons/29x29.png",
"settings@2x" : "unpackage/res/icons/58x58.png",
"spotlight" : "unpackage/res/icons/40x40.png",
"spotlight@2x" : "unpackage/res/icons/80x80.png"
},
"iphone" : {
"app@2x" : "unpackage/res/icons/120x120.png",
"app@3x" : "unpackage/res/icons/180x180.png",
"notification@2x" : "unpackage/res/icons/40x40.png",
"notification@3x" : "unpackage/res/icons/60x60.png",
"settings@2x" : "unpackage/res/icons/58x58.png",
"settings@3x" : "unpackage/res/icons/87x87.png",
"spotlight@2x" : "unpackage/res/icons/80x80.png",
"spotlight@3x" : "unpackage/res/icons/120x120.png"
}
}
} }
} }
}, },

16
pages/tabbar/statistics/index.vue

@ -175,21 +175,7 @@
<style lang="scss" scoped> <style lang="scss" scoped>
@import './comp/comp.scss'; @import './comp/comp.scss';
.box {
padding: 40rpx 50rpx;
text-align: center;
font-size: 28rpx;
color: #333;
.tit {
padding: 30rpx 0 60rpx 0;
color: $themC;
font-weight: 700;
}
.btnBg {
width: 370rpx;
margin: auto;
}
}
</style> </style>

17
pages/tabbar/student/index.vue

@ -102,7 +102,7 @@
<u-picker :show="showClass" :columns="classArr" keyName="name" @confirm="confirmClass" @cancel="showClass=false"></u-picker> <u-picker :show="showClass" :columns="classArr" keyName="name" @confirm="confirmClass" @cancel="showClass=false"></u-picker>
</view> </view>
<u-popup :show="showSign" mode="center" round="20rpx"> <u-popup :show="showSign" mode="center" round="20rpx">
<view class="box">
<view class="signbox">
<view class="tit">您还未上传签名请尽快上传!</view> <view class="tit">您还未上传签名请尽快上传!</view>
<view class="btnBg" @click="goSignPage">去签名</view> <view class="btnBg" @click="goSignPage">去签名</view>
</view> </view>
@ -335,4 +335,19 @@
} }
} }
} }
.signbox {
padding: 40rpx 50rpx;
text-align: center;
font-size: 28rpx;
color: #333;
.tit {
padding: 30rpx 0 60rpx 0;
color: $themC;
font-weight: 700;
}
.btnBg {
width: 370rpx;
margin: auto;
}
}
</style> </style>
Loading…
Cancel
Save