li.shaoyi 2 rokov pred
rodič
commit
a926deb3f1

+ 4 - 0
doc/android/fxgl.txt

@@ -30,8 +30,12 @@ http://8.130.132.95:8280/cfg?key=mtp_20
 
 
 中融文遗通
+模拟盘
 cn.muchinfo.zrwyt_demo_v1.0.0.apk
 http://122.5.68.230:52004/cfg?key=mtp_20
+实盘
+cn.muchinfo.zrwyt_release_v1.0.0.apk
+http://122.5.68.230:8280/cfg?key=zrwyt_sp
 
 
 青岛海商

+ 3 - 3
oem/qxst/manifest.json

@@ -2,12 +2,12 @@
     "@platforms" : [ "android", "iPhone", "iPad" ],
     "id" : "H5E4A9458",
     /*应用的标识*/
-    "name" : "甘肃碳交",
+    "name" : "贵茶数字化",
     /*应用名称,程序桌面图标名称*/
     "version" : {
-        "name" : "1.0.0",
+        "name" : "1.0.6",
         /*应用版本名称*/
-        "code" : 100000
+        "code" : 100006
     },
     "description" : "",
     /*应用描述信息*/

+ 3 - 3
oem/zrwyt/manifest.json

@@ -2,12 +2,12 @@
     "@platforms" : [ "android", "iPhone", "iPad" ],
     "id" : "H5E4A9458",
     /*应用的标识*/
-    "name" : "多元世纪",
+    "name" : "中融文遗通",
     /*应用名称,程序桌面图标名称*/
     "version" : {
-        "name" : "1.0.0",
+        "name" : "1.0.1",
         /*应用版本名称*/
-        "code" : 100000
+        "code" : 100001
     },
     "description" : "",
     /*应用描述信息*/

Rozdielové dáta súboru neboli zobrazené, pretože súbor je príliš veľký
+ 0 - 0
src/packages/mobile/assets/themes/base/iconfont.less


+ 11 - 11
src/packages/pc/components/layouts/header/components/report/index.vue

@@ -4,9 +4,10 @@
         <el-select placeholder="请选择" v-model="reporttype" @change="onChange">
             <el-option v-for="option in selectList" :key="option.value" :value="option.value" :label="option.label" />
         </el-select>
-        <el-date-picker :type="reporttype === 1 ? 'date' : 'month'" placeholder="查询日期" :value-format="reporttype === 1 ? 'YYYYMMDD' : 'YYYYMM'" v-model="cycletime" />
+        <el-date-picker :type="reporttype === 1 ? 'date' : 'month'" placeholder="查询日期"
+            :value-format="reporttype === 1 ? 'YYYYMMDD' : 'YYYYMM'" v-model="cycletime" />
         <el-button type="danger" @click="reloadData">查询</el-button>
-        <app-table-details title="账户信息" :data="ta" :label-width="180" :cell-props="accountDetailProps" :column="2" >
+        <app-table-details title="账户信息" :data="ta" :label-width="180" :cell-props="accountDetailProps" :column="2">
             <!-- 名称 -->
             <template #accountname>
                 {{ userinfo?.customername }}
@@ -20,8 +21,10 @@
                 {{ formatDate(value) }}
             </template>
         </app-table-details>
-        <app-table-details v-if="reporttype === 1 && dtaaccounts.length != 0" title="资金信息" :data="dtaaccounts[0]" :label-width="180" :cell-props="taDetailProps" :column="2" ></app-table-details>
-        <app-table-details v-if="reporttype === 2 && mtaaccounts.length != 0" title="资金信息" :data="mtaaccounts[0]" :label-width="180" :cell-props="taDetailProps" :column="2" ></app-table-details>
+        <app-table-details v-if="reporttype === 1 && dtaaccounts.length != 0" title="资金信息" :data="dtaaccounts[0]"
+            :label-width="180" :cell-props="taDetailProps" :column="2"></app-table-details>
+        <app-table-details v-if="reporttype === 2 && mtaaccounts.length != 0" title="资金信息" :data="mtaaccounts[0]"
+            :label-width="180" :cell-props="taDetailProps" :column="2"></app-table-details>
         <span>出入金明细</span>
         <app-table :data="logs" v-model:columns="logsTableColumns" />
         <span>持仓汇总</span>
@@ -67,7 +70,7 @@ const tradedetails = shallowRef<Model.ReportTradeDetailRsp[]>([])
 
 const onAgree = () => {
     /// 记录时间和是否同意
-    localData.setValue('isReportAgree', true) 
+    localData.setValue('isReportAgree', true)
     localData.setValue('reportTime', new Date().toISOString())
     show.value = false
     refresh.value = false
@@ -75,7 +78,7 @@ const onAgree = () => {
 
 const onDisAgree = () => {
     /// 记录时间和是否同意
-    localData.setValue('isReportAgree', false) 
+    localData.setValue('isReportAgree', false)
     eventBus.$emit('LogoutNotify')
     router.replace({ name: 'login' })
 }
@@ -161,16 +164,13 @@ const accountDetailProps = [
 
 /// 资金信息
 const taDetailProps = [
-    { prop: 'balance', label: '期初余额:' },
-    { prop: '', label: '' },
+    { prop: 'balance', label: '期初余额:', entireRow: true },
     { prop: 'inamount', label: '银行入金:' },
     { prop: 'closepl', label: '平仓损益:' },
     { prop: 'outamount', label: '银行出金:' },
     { prop: 'reckonpl', label: '结算损益:' },
     { prop: 'freezecharge', label: '服务费:' },
-    { prop: '', label: '' },
-    { prop: 'currentbalance', label: '期末余额:' },
-    { prop: '', label: '' },
+    { prop: 'currentbalance', label: '期末余额:', entireRow: true },
     { prop: 'oriusedmargin', label: '占用资金:' },
     { prop: 'orioutamountfreeze', label: '冻结资金:' },
     { prop: 'avaiablemoney', label: '可用资金:' },

+ 1 - 1
src/packages/pc/views/auth/components/layout/index.vue

@@ -2,7 +2,7 @@
   <div class="sign-layout">
     <div class="sign-layout__wrapper">
       <div class="left">
-        <span>国际化交易平台</span>
+        <span>数字化交易平台</span>
         <span>现代化综合服务</span>
       </div>
       <div class="right">

+ 1 - 0
src/packages/pc/views/footer/goods/order/index.vue

@@ -66,6 +66,7 @@ const tableColumns = ref<Model.TableColumn[]>([
     { prop: 'orderprice', label: '委托价' },
     { prop: 'orderqty', label: '委托数量' },
     { prop: 'tradeqty', label: '成交数量' },
+    { prop: 'freezemargin', label: '冻结金额' },
     { prop: 'orderid', label: '委托单号' },
     { prop: 'ordertime', label: '委托时间' },
     { prop: 'orderstatus', label: '状态' }

Niektoré súbory nie sú zobrazené, pretože je v týchto rozdielových dátach zmenené mnoho súborov