提交
This commit is contained in:
4
main.js
4
main.js
@@ -17,8 +17,8 @@ import {
|
|||||||
Vue.prototype.$getHours = nowHour
|
Vue.prototype.$getHours = nowHour
|
||||||
|
|
||||||
// 地址
|
// 地址
|
||||||
Vue.prototype.$baseUrl = "http://192.168.110.100:9100/pb/"
|
// Vue.prototype.$baseUrl = "http://192.168.110.100:9100/pb/"
|
||||||
//Vue.prototype.$baseUrl = "https://api.nuttyreading.com/"
|
Vue.prototype.$baseUrl = "https://api.nuttyreading.com/"
|
||||||
|
|
||||||
// 安卓安卓包下载地址
|
// 安卓安卓包下载地址
|
||||||
// Vue.prototype.$apkUrl = "https://www.nuttyreading.com/nuttyreading.apk" // 本地地址
|
// Vue.prototype.$apkUrl = "https://www.nuttyreading.com/nuttyreading.apk" // 本地地址
|
||||||
|
|||||||
@@ -12,8 +12,8 @@
|
|||||||
"src" : "图片路径"
|
"src" : "图片路径"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"versionName" : "2.0.15",
|
"versionName" : "2.0.20",
|
||||||
"versionCode" : 2015,
|
"versionCode" : 2019,
|
||||||
"app-plus" : {
|
"app-plus" : {
|
||||||
"nvueCompiler" : "uni-app",
|
"nvueCompiler" : "uni-app",
|
||||||
"compatible" : {
|
"compatible" : {
|
||||||
|
|||||||
@@ -309,6 +309,7 @@ export default {
|
|||||||
...data,
|
...data,
|
||||||
productId: data.id,
|
productId: data.id,
|
||||||
price: data.rebateFee,
|
price: data.rebateFee,
|
||||||
|
productAmount:1
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
console.log("this.goodsDataList at line 861:", this.goodsDataList);
|
console.log("this.goodsDataList at line 861:", this.goodsDataList);
|
||||||
|
|||||||
@@ -124,9 +124,9 @@
|
|||||||
var max;
|
var max;
|
||||||
var str=''
|
var str=''
|
||||||
if (this.thisClass.title.includes("精英")) {
|
if (this.thisClass.title.includes("精英")) {
|
||||||
max=Math.ceil(this.students.length * 0.2);
|
max=Math.round(this.students.length * 0.2);
|
||||||
} else {
|
} else {
|
||||||
max=Math.ceil(this.students.length * 0.1);
|
max=Math.round(this.students.length * 0.1);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -461,12 +461,20 @@
|
|||||||
</view>
|
</view>
|
||||||
<!-- 应对华为审核,去掉app跳转 -->
|
<!-- 应对华为审核,去掉app跳转 -->
|
||||||
<view class="appJump">
|
<view class="appJump">
|
||||||
<view class="soulspace item flexbox" @click="appjumpfun('soulspace')">
|
<view class="soulspace item flexbox" @click="appjumpfun('soulspace')">
|
||||||
|
<view class="img">
|
||||||
|
<image src="@/static/xlkj.png"></image>
|
||||||
|
</view>
|
||||||
|
<view class="text">
|
||||||
|
<text>心灵空间</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="zmzm item flexbox" @click="appjumpfun('taihu')" v-if="isShowTaihu">
|
||||||
<view class="img">
|
<view class="img">
|
||||||
<image src="@/static/xlkj.png"></image>
|
<image src="@/static/logo_taihu.png"></image>
|
||||||
</view>
|
</view>
|
||||||
<view class="text">
|
<view class="text">
|
||||||
<text>心灵空间</text>
|
<text>太湖云医</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="zmzm item flexbox" @click="appjumpfun('zmzm')">
|
<view class="zmzm item flexbox" @click="appjumpfun('zmzm')">
|
||||||
@@ -546,6 +554,7 @@ import { mapState, mapMutations } from "vuex";
|
|||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
isShowTaihu:false,
|
||||||
myList: [],
|
myList: [],
|
||||||
advertisementList: [],
|
advertisementList: [],
|
||||||
showEbook: false, // 显示电子书相关
|
showEbook: false, // 显示电子书相关
|
||||||
@@ -605,6 +614,11 @@ export default {
|
|||||||
},
|
},
|
||||||
//第一次加载
|
//第一次加载
|
||||||
onLoad(e) {
|
onLoad(e) {
|
||||||
|
if (plus.os.name == "Android") {
|
||||||
|
this.isShowTaihu=true
|
||||||
|
}else{
|
||||||
|
this.isShowTaihu=false
|
||||||
|
}
|
||||||
uni.hideTabBar();
|
uni.hideTabBar();
|
||||||
//提示评分
|
//提示评分
|
||||||
this.editScoreRemind();
|
this.editScoreRemind();
|
||||||
@@ -1208,6 +1222,10 @@ export default {
|
|||||||
bagName = "com.cn.nuttyreading";
|
bagName = "com.cn.nuttyreading";
|
||||||
schemes = "nuttyreading";
|
schemes = "nuttyreading";
|
||||||
}
|
}
|
||||||
|
if (name == "taihu") {
|
||||||
|
bagName = "com.cn.taimed";
|
||||||
|
schemes = "taimed";
|
||||||
|
}
|
||||||
// if(name == 'everhealth'){
|
// if(name == 'everhealth'){
|
||||||
if (plus.os.name == "Android") {
|
if (plus.os.name == "Android") {
|
||||||
//安卓
|
//安卓
|
||||||
@@ -1302,7 +1320,7 @@ export default {
|
|||||||
|
|
||||||
.item {
|
.item {
|
||||||
background: rgba(255, 255, 255, 0.9);
|
background: rgba(255, 255, 255, 0.9);
|
||||||
margin-bottom: 20rpx;
|
margin-bottom:10rpx;
|
||||||
border: 1px solid #fff;
|
border: 1px solid #fff;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding-right: 10rpx;
|
padding-right: 10rpx;
|
||||||
|
|||||||
BIN
static/logo_taihu.png
Normal file
BIN
static/logo_taihu.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 39 KiB |
12
unpackage/dist/build/app-plus/app-service.js
vendored
12
unpackage/dist/build/app-plus/app-service.js
vendored
File diff suppressed because one or more lines are too long
6
unpackage/dist/build/app-plus/app-view.js
vendored
6
unpackage/dist/build/app-plus/app-view.js
vendored
File diff suppressed because one or more lines are too long
2
unpackage/dist/build/app-plus/manifest.json
vendored
2
unpackage/dist/build/app-plus/manifest.json
vendored
File diff suppressed because one or more lines are too long
152
unpackage/dist/dev/app-plus/app-service.js
vendored
152
unpackage/dist/dev/app-plus/app-service.js
vendored
File diff suppressed because one or more lines are too long
145
unpackage/dist/dev/app-plus/app-view.js
vendored
145
unpackage/dist/dev/app-plus/app-view.js
vendored
File diff suppressed because one or more lines are too long
2
unpackage/dist/dev/app-plus/manifest.json
vendored
2
unpackage/dist/dev/app-plus/manifest.json
vendored
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user