li.shaoyi 1 年之前
父节点
当前提交
53f334861e

+ 1 - 1
app/package.json

@@ -1,6 +1,6 @@
 {
   "name": "trading",
-  "version": "1.0.8",
+  "version": "1.0.4",
   "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.15",
-  "versionCode": "100015",
+  "version": "1.0.16",
+  "versionCode": "100016",
   "apiUrl": "http://192.168.31.204:8080/cfg?key=test_204",
   "tradeChannel": "ws",
   "modules": [

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

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

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

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

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

@@ -95,7 +95,7 @@ const formSubmit = () => {
             const n = moment(res.data)
             const s = moment(start, 'HH:mm')
             const e = moment(end.value, 'HH:mm')
-            if (n.isSameOrBefore(s) && n.isSameOrBefore(e)) {
+            if (n.isSameOrAfter(s) && n.isBefore(e)) {
                 formData.BillAmount = formatDecimal(billAmount.value)
                 onSubmit().then(() => {
                     hideLoading()

+ 1 - 1
src/packages/mobile/views/bank/wallet/components/deposit/Index.vue

@@ -106,7 +106,7 @@ const doDepositWarning = () => {
             const n = moment(res.data)
             const s = moment(start, 'HH:mm')
             const e = moment(end.value, 'HH:mm')
-            if (n.isSameOrAfter(s) && n.isSameOrBefore(e)) {
+            if (n.isSameOrAfter(s) && n.isBefore(e)) {
                 dialog({ message: '是否已在银行端进行入金转账?', showCancelButton: true, confirmButtonText: '确认', cancelButtonText: '取消', }).then(() => {
                     /// 提交
                     formSubmit()

+ 1 - 1
src/packages/mobile/views/bank/wallet/components/withdraw/Index.vue

@@ -104,7 +104,7 @@ const doWithDrawWarning = () => {
             const s = moment(start, 'HH:mm')
             const e = moment(end.value, 'HH:mm')
             // 出金时间必须在开始和结束时间之间
-            if (n.isSameOrAfter(s) && n.isSameOrBefore(e)) {
+            if (n.isSameOrAfter(s) && n.isBefore(e)) {
                 /// 提交
                 formSubmit()
             } else {

+ 1 - 1
src/packages/pc/views/footer/capital/summary/deposit/index.vue

@@ -114,7 +114,7 @@ const doDepositWarning = () => {
                 const n = moment(res.data)
                 const s = moment(start, 'HH:mm')
                 const e = moment(end.value, 'HH:mm')
-                if (n.isSameOrAfter(s) && n.isSameOrBefore(e)) {
+                if (n.isSameOrAfter(s) && n.isBefore(e)) {
                     ElMessageBox.confirm(
                         '是否已在银行端进行入金转账?',
                         '提示',

+ 1 - 1
src/packages/pc/views/footer/capital/summary/withdraw/index.vue

@@ -94,7 +94,7 @@ const doWithDrawWarning = () => {
                 const s = moment(start, 'HH:mm')
                 const e = moment(end.value, 'HH:mm')
                 // 出金时间必须在开始和结束时间之间
-                if (n.isSameOrAfter(s) && n.isSameOrBefore(e)) {
+                if (n.isSameOrAfter(s) && n.isBefore(e)) {
                     /// 提交
                     formSubmit()
                 } else {