diff --git a/pos-uni/config.js b/pos-uni/config.js
index 84307d3a0..ad85589c5 100644
--- a/pos-uni/config.js
+++ b/pos-uni/config.js
@@ -1,11 +1,6 @@
// 应用全局配置
module.exports = {
- // baseUrl: 'https://vue.ruoyi.vip/prod-api',
- // baseUrl: 'http://192.168.0.196:8081/',
- // baseUrl: 'https://www.tuofeng.cc/oilAdmin/',
- // baseUrl: 'https://8q4f124343.yicp.fun/',
- baseUrl: 'http://192.168.31.96:8080/',
- // baseUrl: 'http://192.168.1.5:8002/cdJdc',
+ baseUrl: 'https://www.tuofeng.cc/oilAdmin/',
imagesUrl: 'http://www.nuoyunr.com/lananRsc',
// 应用信息
appInfo: {
@@ -28,4 +23,4 @@ module.exports = {
}
]
}
-}
\ No newline at end of file
+}
diff --git a/pos-uni/manifest.json b/pos-uni/manifest.json
index c04742fc1..f6d022843 100644
--- a/pos-uni/manifest.json
+++ b/pos-uni/manifest.json
@@ -1,5 +1,5 @@
{
- "name" : "WX-lift",
+ "name" : "pos",
"appid" : "__UNI__7A6878C",
"description" : "",
"versionName" : "1.0.0",
@@ -41,9 +41,13 @@
]
},
/* ios打包配置 */
- "ios" : {},
+ "ios" : {
+ "dSYMs" : false
+ },
/* SDK配置 */
- "sdkConfigs" : {}
+ "sdkConfigs" : {
+ "ad" : {}
+ }
}
},
/* 快应用特有相关 */
diff --git a/pos-uni/pagesHome/BusinessData/BusinessData.vue b/pos-uni/pagesHome/BusinessData/BusinessData.vue
index ddf9b8cfa..935fbc364 100644
--- a/pos-uni/pagesHome/BusinessData/BusinessData.vue
+++ b/pos-uni/pagesHome/BusinessData/BusinessData.vue
@@ -37,7 +37,7 @@
退款金额/笔数
- ¥{{dataForm.refBalance}}/{{dataForm.refBalanceCount}}
+ ¥{{dataForm.refBalance || 0}}/{{dataForm.refBalanceCount}}
@@ -52,11 +52,11 @@
营业额/笔数
- ¥{{dataForm.wechat}}/{{dataForm.wechatcount}}
+ ¥{{dataForm.wechat || 0}}/{{dataForm.wechatcount}}
会员充值/笔数
- ¥{{dataForm.userBalanceByWechat }}/{{dataForm.userBalanceCountByWechat}}
+ ¥{{dataForm.userBalanceByWechat|| 0 }}/{{dataForm.userBalanceCountByWechat}}
@@ -69,11 +69,11 @@
营业额/笔数
- ¥{{dataForm.alipay}}/{{dataForm.alipaycount}}
+ ¥{{dataForm.alipay || 0}}/{{dataForm.alipaycount}}
会员充值/笔数
- ¥{{dataForm.userBalanceByAli}}/{{dataForm.userBalanceCountByali}}
+ ¥{{dataForm.userBalanceByAli || 0}}/{{dataForm.userBalanceCountByali}}