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

View File

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

View File

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

View File

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

BIN
static/logo_taihu.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB