fix: 修复结算页金额显示精度问题

更新manifest.json中的版本号至1.2.82
修改开发环境baseUrl配置
修复结算页金额显示格式并调整底部操作栏z-index
This commit is contained in:
2026-01-21 15:06:37 +08:00
parent 5c9d7b89b2
commit 2a9df2f1c6
3 changed files with 6 additions and 5 deletions

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 = "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/";

View File

@@ -13,8 +13,8 @@
} }
], ],
"sassImplementationName" : "node-sass", "sassImplementationName" : "node-sass",
"versionName" : "1.2.81", "versionName" : "1.2.82",
"versionCode" : 1281, "versionCode" : 1282,
"app-plus" : { "app-plus" : {
"compatible" : { "compatible" : {
"ignoreVersion" : true "ignoreVersion" : true

View File

@@ -245,7 +245,7 @@
<span style="color: #666; margin-right: 10rpx; font-size: 15px" <span style="color: #666; margin-right: 10rpx; font-size: 15px"
>实付款: >实付款:
</span> </span>
{{ realPrice }}<span>天医币</span> {{ realPrice.toFixed(2) }}<span>天医币</span>
</view> </view>
<view class="operate" @click="goBuyJie" v-if="payType != 4"> <view class="operate" @click="goBuyJie" v-if="payType != 4">
<view class="goBuy"> 立即支付 </view> <view class="goBuy"> 立即支付 </view>
@@ -1262,6 +1262,7 @@ export default {
align-items: center; align-items: center;
position: fixed; position: fixed;
bottom: 0%; bottom: 0%;
z-index: 11;
.commodityPrice { .commodityPrice {
font-size: 40rpx; font-size: 40rpx;