li.shaoyi vor 1 Jahr
Ursprung
Commit
6b337605e7

+ 2 - 2
app/package.json

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

+ 6 - 5
oem/thj/config/appconfig.json

@@ -1,9 +1,9 @@
 {
-  "appId": "com.muchinfo.thj",
+  "appId": "cn.muchinfo.thj",
   "appName": "铁合金掌上行",
-  "version": "1.1.4",
-  "versionCode": "100104",
-  "apiUrl": "http://192.168.31.167:8080/cfg?key=test_167",
+  "version": "1.1.5",
+  "versionCode": "100105",
+  "apiUrl": "http://101.133.236.116:8280/cfg?key=mtp_20",
   "tradeChannel": "ws",
   "modules": [
     "register",
@@ -12,5 +12,6 @@
   "quotationProperties": [
     "totalvolume"
   ],
-  "registrationCodeRule": 0
+  "registrationCodeRule": 0,
+  "i18nEnabled": false
 }

+ 4 - 0
oem/thj/locales/extras/zh-CN.json

@@ -2,5 +2,9 @@
     "app": {
         "name": "铁合金掌上行",
         "slogan": "铁合金供应链\r\n交易服务平台"
+    },
+    "common": {
+        "tips30": "存储空间/相机权限说明",
+        "tips31": "用于在添加、制作、上传、发布、分享、下载、搜索、识别图片和视频等场景中读取和写入相册和文件内容,用于设置头像、实名认证以及入金上传凭证等场景中需要访问您的拍摄照片权限,您如果拒绝开启,将无法使用上述功能。"
     }
 }

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

@@ -51,7 +51,7 @@ const { router, getQueryString } = useNavigation()
 const futuresStore = useFuturesStore()
 
 const title = getQueryString('title')
-const titleName = computed(() => title ? decodeURIComponent(title) : props.marketSection?.displayname ?? t('quote.title')))
+const titleName = computed(() => title ? decodeURIComponent(title) : props.marketSection?.displayname ?? '参考行情')
 
 const dataList = computed(() => futuresStore.quotationList.filter((e) => e.marketid === 99201))