li.shaoyi 1 tahun lalu
induk
melakukan
6db21d9806

+ 1 - 1
app/package.json

@@ -1,6 +1,6 @@
 {
   "name": "trading-beta",
-  "version": "1.0.9",
+  "version": "1.0.11",
   "main": "main.js",
   "dependencies": {
     "electron-updater": "^6.1.4",

+ 1 - 1
file/android/fxgl.txt

@@ -132,7 +132,7 @@ http://101.133.236.116:8280/cfg?key=mtp_20
 
 
 泰商所
-模拟
+演示
 com.muchinfo.tss_demo_v1.0.0.apk
 http://218.17.158.45:25067/cfg?key=test_tss
 

+ 2 - 2
oem/sbyj/config/appconfig.json

@@ -1,8 +1,8 @@
 {
   "appId": "com.muchinfo.sbyj",
   "appName": "水贝亿爵",
-  "version": "1.0.21",
-  "versionCode": "100021",
+  "version": "1.0.22",
+  "versionCode": "100022",
   "apiUrl": "http://192.168.31.171:8080/cfg?key=test_171",
   "tradeChannel": "ws",
   "modules": [

+ 2 - 2
oem/tss/config/appconfig.json

@@ -1,8 +1,8 @@
 {
   "appId": "com.muchinfo.tss",
   "appName": "TCE",
-  "version": "1.0.10",
-  "versionCode": "100010",
+  "version": "1.0.11",
+  "versionCode": "100011",
   "apiUrl": "http://192.168.31.204:8080/cfg?key=test_204",
   "tradeChannel": "ws",
   "modules": [

+ 1 - 9
src/packages/sbyj/views/market/list/index.vue

@@ -108,14 +108,6 @@ if (loginStore.token) {
     futuresStore.onDataCompleted(() => {
         subscribeData.value = futuresStore.goodsList.map((e) => e.goodscode)
         subscribe.start(...subscribeData.value)
-
-        const [firstMarket] = touristTradeGoodsList.value
-        if (firstMarket) {
-            /// 获取市场运行情况
-            marketRun({
-                marketID: firstMarket.marketid
-            })
-        }
     })
 } else {
     // 获取游客商品列表
@@ -154,7 +146,7 @@ const market = computed(() => {
 // 校验服务器时间
 const checkServerTime = () => {
     getServerTime().then((res) => {
-        serverTime.value = moment.parseZone(res.data)
+        serverTime.value = moment(res.data)
         // 每1分钟同步一次服务器时间
         timerTask.setTimeout(() => {
             checkServerTime()