li.shaoyi vor 1 Jahr
Ursprung
Commit
149780e00e

+ 1 - 1
app/package.json

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

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

@@ -1,8 +1,8 @@
 {
   "appId": "com.muchinfo.gcszt",
   "appName": "贵茶数字通",
-  "version": "1.0.16",
-  "versionCode": "100016",
+  "version": "1.0.17",
+  "versionCode": "100017",
   "apiUrl": "http://192.168.31.204:8080/cfg?key=test_204",
   "tradeChannel": "ws",
   "modules": [

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

@@ -1,8 +1,8 @@
 {
   "appId": "com.muchinfo.gstj",
   "appName": "甘肃碳交",
-  "version": "1.0.29",
-  "versionCode": "100029",
+  "version": "1.0.30",
+  "versionCode": "100030",
   "apiUrl": "http://192.168.31.205:8080/cfg?key=test_205",
   "tradeChannel": "ws",
   "modules": [

+ 3 - 3
oem/gstj/manifest.json

@@ -1,13 +1,13 @@
 {
     "@platforms" : [ "android", "iPhone", "iPad" ],
-    "id" : "H5E4A9458",
+    "id" : "H5A27263D",
     /*应用的标识*/
     "name" : "甘肃碳交",
     /*应用名称,程序桌面图标名称*/
     "version" : {
-        "name" : "1.0.26",
+        "name" : "1.0.0",
         /*应用版本名称*/
-        "code" : 100026
+        "code" : 100000
     },
     "description" : "",
     /*应用描述信息*/

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

@@ -1,8 +1,8 @@
 {
   "appId": "com.muchinfo.gzcj",
   "appName": "贵州茶交",
-  "version": "1.0.4",
-  "versionCode": "100004",
+  "version": "1.0.5",
+  "versionCode": "100005",
   "apiUrl": "http://192.168.31.204:8080/cfg?key=test_204",
   "tradeChannel": "ws",
   "modules": [

+ 1 - 1
public/config/appconfig.json

@@ -1,6 +1,6 @@
 {
   "appId": "cn.muchinfo.demo",
-  "appName": "多元世纪",
+  "appName": "多元世纪交易中心",
   "appTitle": "多元世纪交易中心",
   "version": "1.0.8",
   "versionCode": "10008",

+ 2 - 2
src/constants/account.ts

@@ -28,8 +28,8 @@ export function getAuthStatusList() {
     return [
         { label: '未实名', value: AuthStatus.Uncertified },
         { label: '已实名', value: AuthStatus.Certified },
-        { label: '实名审核中', value: AuthStatus.Submitted },
-        { label: '实名未通过', value: AuthStatus.Rejected },
+        { label: '审核中', value: AuthStatus.Submitted },
+        { label: '未通过', value: AuthStatus.Rejected },
     ]
 }
 

+ 1 - 1
src/packages/gstj/views/holdbank/holddeposit/Index.vue

@@ -88,7 +88,7 @@ useRequest(queryGetGtwithholdsigninfo, {
 
 const showComponent = (componentName: string) => {
     if (signStatus.value != SignStatus.Signed) {
-        dialog('未进行入金代扣签约申请')
+        dialog('未进行入金代扣签约')
         return
     }
     openComponent(componentName)

+ 1 - 1
src/packages/gstj/views/holdbank/holddeposit/components/apply/Index.vue

@@ -107,7 +107,7 @@ const formSubmit = () => {
                 hideLoading()
                 dialog({
                     title: '提示',
-                    message: '入金代扣操作不在时间范围内',
+                    message: '入金不在时间范围内',
                     confirmButtonText: '我知道了'
                 })
             }

+ 1 - 1
src/packages/gstj/views/mine/Index.vue

@@ -247,7 +247,7 @@ const showComponent = (companyName: string) => {
         dialog({
             showCancelButton: true,
             confirmButtonText: '签约申请',
-            message: '未进行入金代扣签约申请'
+            message: '未进行入金代扣签约'
         }).then(() => {
             router.push({ name: 'hold-sign' })
         })

+ 2 - 0
src/packages/mobile/views/account/authresult/Index.vue

@@ -17,6 +17,7 @@
                 <Cell title="手持证件照">
                     <Image fit="contain" :src="getFileUrl(userInfo.halfbodyphotourl)" width="100" height="100" />
                 </Cell>
+                <Cell title="实名状态" :value="getAuthStatusName(2)" />
             </CellGroup>
         </div>
         <Empty description="暂无数据" v-else />
@@ -26,6 +27,7 @@
 <script lang="ts" setup>
 import { shallowRef } from 'vue'
 import { CellGroup, Cell, Image, Empty } from 'vant'
+import { getAuthStatusName } from '@/constants/account'
 import { queryWrDraftUserInfo } from '@/services/api/account'
 import { useRequest } from '@/hooks/request'
 import { getCertificateTypeCodeName } from '@/constants/account'

+ 1 - 1
src/packages/pc/views/account/holddeposit/index.vue

@@ -77,7 +77,7 @@ useRequest(queryGetGtwithholdsigninfo, {
 
 const showComponent = () => {
     if (signStatus.value != SignStatus.Signed) {
-        ElMessage.error('未进行入金代扣签约申请')
+        ElMessage.error('未进行入金代扣签约')
         return
     }
     openComponent('deposit')