Handy_Cao 11 months ago
parent
commit
c7804d60b7

+ 1 - 1
oem/ykhj/config/appconfig.json

@@ -3,7 +3,7 @@
   "appName": "鑫永坤",
   "version": "1.0.12",
   "versionCode": "100012",
-  "apiUrl": "http://192.168.31.158:15240/cfg?key=dev_104",
+  "apiUrl": "http://192.168.31.139:8080/cfg?key=test_139",
   "tradeChannel": "ws",
   "modules": [
     "register",

+ 1 - 1
src/packages/mobile/views/mine/profile/Index.vue

@@ -14,7 +14,7 @@
 
 <script lang="ts" setup>
 import { Cell, CellGroup } from 'vant'
-import { useUserStore, useGlobalStore, i18n } from '@/stores'
+import { useUserStore, useGlobalStore } from '@/stores'
 import { decryptAES } from '@/services/websocket/package/crypto'
 import { onActivated } from 'vue'
 

+ 9 - 0
src/packages/sbyj/index.html

@@ -2,6 +2,15 @@
 <html lang="zh-cn">
 
 <head>
+  <link rel="apple-touch-icon-precomposed" sizes="180x180" href="../../../public/app/icons/180x180.png">
+  <link rel="apple-touch-icon-precomposed" sizes="152x152" href="../../../public/app//icons/152x152.png">
+  <link rel="apple-touch-icon-precomposed" sizes="144x144" href="../../../public/app//icons/144x144.png">
+  <link rel="apple-touch-icon-precomposed" sizes="120x120" href="../../../public/app//icons/120x120.png">
+  <link rel="apple-touch-icon-precomposed" sizes="114x114" href="../../../public/app//icons/144x144.png">
+  <link rel="apple-touch-icon-precomposed" sizes="76x76" href="../../../public/app//icons/76x76.png">
+  <link rel="apple-touch-icon-precomposed" sizes="72x72" href="../../../public/app//icons/72x72.png">
+  <link rel="apple-touch-icon-precomposed" href="../../../public/app/icons/58x58.png">
+
   <meta charset="utf-8">
   <meta http-equiv="X-UA-Compatible" content="IE=edge">
   <meta name="viewport"

+ 2 - 1
src/packages/sbyj/views/market/detail/index.vue

@@ -296,12 +296,13 @@ const onSubmit = () => {
     const orderPrice = `定价价格:${formData.OrderPrice ?? 0}\n`
     const qty = `订单数量:${orderQty.value}${getGoodsUnitName(goodunitid)}\n`
     const orderamount = `订单总额:${formatDecimal(totalamount)}\n`
+    console.log(marginalgorithm, transferdepositratio)
     const margin = `预付定金:${marginalgorithm === 1 ? totalamount*transferdepositratio : orderQty.value*transferdepositratio}\n`
     const message = orderPrice + qty + orderamount + margin
 
     dialog({
         allowHtml: true,
-        title: '订单明细',
+        title: '定价明细',
         message: message,
         showCancelButton: true,
     }).then(() => {