This commit is contained in:
liuyuan
2025-09-08 10:51:27 +08:00
parent 3254d33cd0
commit 0b849c9508
5 changed files with 27 additions and 8 deletions

View File

@@ -2,12 +2,12 @@ let baseUrl = "";
let socketUrl = "";
if (process.env.NODE_ENV === 'development') {
//开发环境
baseUrl = "https://api.nuttyreading.com/"; // 线上正式
//baseUrl = "http://192.168.110.100:9200/pb/"; // 张川川
// baseUrl = "https://api.nuttyreading.com/"; // 线上正式
baseUrl = "http://192.168.110.100:9200/pb/"; // 张川川
} else if (process.env.NODE_ENV === 'production') {
//生产环境
baseUrl = "https://api.nuttyreading.com/";
//baseUrl = "http://192.168.110.100:9200/pb/"; // 张川川
// baseUrl = "https://api.nuttyreading.com/";
baseUrl = "http://192.168.110.100:9200/pb/"; // 张川川
}
const courtConfig = {
//微信公众号APPID

View File

@@ -12,8 +12,8 @@
"src" : "图片路径"
}
],
"versionName" : "1.2.73",
"versionCode" : 1273,
"versionName" : "1.2.75",
"versionCode" : 1275,
"app-plus" : {
"compatible" : {
"ignoreVersion" : true

View File

@@ -217,6 +217,14 @@
<text>吴门医述</text>
</view>
</view>
<view class="zmzm item flexbox" @click="appjumpfun('taihu')" v-if="isShowTaihu">
<view class="img">
<image src="@/static/logo_taihu.png"></image>
</view>
<view class="text">
<text>太湖云医</text>
</view>
</view>
<view class="zmzm item flexbox" @click="appjumpfun('zmzm')">
<view class="img">
<image src="@/static/40x40.png"></image>
@@ -225,6 +233,7 @@
<text>众妙之门</text>
</view>
</view>
</view>
<!-- 公共组件-每个页面必须引入 -->
<public-module></public-module>
@@ -248,6 +257,7 @@
export default {
data() {
return {
isShowTaihu:false,
myList: [],
advertisementList: [],
showEbook: false, // 显示电子书相关
@@ -344,6 +354,11 @@
},
//第一次加载
onLoad(e) {
if (plus.os.name == "Android") {
this.isShowTaihu=true
}else{
this.isShowTaihu=false
}
// 隐藏原生的tabbar
uni.hideTabBar();
// this.requestIapOrder()
@@ -937,6 +952,10 @@
bagName = "com.cn.medicine";
schemes = "medicine";
}
if (name == "taihu") {
bagName = "com.cn.taimed";
schemes = "taimed";
}
if (plus.os.name == "Android") {
//安卓
@@ -1004,7 +1023,7 @@
.item {
background: rgba(255, 255, 255, 0.9);
margin-bottom: 20rpx;
margin-bottom: 10rpx;
border: 1px solid #fff;
align-items: center;
padding-right: 10rpx;

View File

@@ -690,7 +690,7 @@ export default {
})
.then((res) => {
uni.showToast({
title: "评论成功!",
title: res.tip,
icon: "success",
});
// this.getCommPL()

BIN
static/logo_taihu.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB