fix: 移除vip页面iOS平台限制并更新版本号

- 移除vip页面iOS平台限制,允许所有平台购买VIP
- 更新manifest.json中的版本号至1.0.49
- 调整开发环境baseUrl配置
This commit is contained in:
2026-01-23 11:50:06 +08:00
parent 52fbc2a1bc
commit f3c7de1d29
6 changed files with 8 additions and 10 deletions

View File

@@ -1,5 +1,3 @@
<script> <script>
// import { // import {
// mapMutations // mapMutations

View File

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

View File

@@ -13,8 +13,8 @@
"src" : "图片路径" "src" : "图片路径"
} }
], ],
"versionName" : "1.0.48", "versionName" : "1.0.49",
"versionCode" : 1048, "versionCode" : 1049,
"app-plus" : { "app-plus" : {
"nvueCompiler" : "weex", "nvueCompiler" : "weex",
"compatible" : { "compatible" : {

View File

@@ -37,7 +37,7 @@
></view ></view
> >
</view> </view>
<view v-if="$platform != 'ios'"> <view>
<text <text
class="vip_item_btn" class="vip_item_btn"
v-if="item.state == null" v-if="item.state == null"
@@ -232,9 +232,9 @@ export default {
//点击购买 //点击购买
openorderModal(item, type) { openorderModal(item, type) {
console.log("item at line 120:", item); console.log("item at line 120:", item);
if (this.$platform == "ios") { // if (this.$platform == "ios") {
return false; // return false;
} // }
let text = ""; let text = "";
//如果是右侧按钮点击展示 //如果是右侧按钮点击展示
//判断点击类型是vip价格还是延期价格 //判断点击类型是vip价格还是延期价格

Binary file not shown.

Binary file not shown.