Browse Source

Merge remote-tracking branch 'origin/master'

yu jie 4 năm trước cách đây
mục cha
commit
b3a387b9d5

+ 1 - 74
src/views/platinum/platinum_financing_information/list/tab/compoments/detail/index.vue

@@ -16,80 +16,7 @@
       <fieldset class="formFieldSet">
         <legend>融资信息</legend>
         <Des :list="desList" />
-
-        <!-- <a-row :gutter="24">
-          <a-col :span="12">
-            <a-form-item label="账号类型">
-              <span class="white">企业</span>
-            </a-form-item>
-          </a-col>
-          <a-col :span="12">
-            <a-form-item label="企业名称">
-              <span class="white">深圳首饰加工厂</span>
-            </a-form-item>
-          </a-col>
-        </a-row>
-        <a-row :gutter="24">
-          <a-col :span="12">
-            <a-form-item label="账号">
-              <span class="white">2732175</span>
-            </a-form-item>
-          </a-col>
-          <a-col :span="12">
-            <a-form-item label="融资商品">
-              <span class="white">黄金</span>
-            </a-form-item>
-          </a-col>
-        </a-row>
-        <a-row :gutter="24">
-          <a-col :span="12">
-            <a-form-item label="数量">
-              <span class="white">50g</span>
-            </a-form-item>
-          </a-col>
-          <a-col :span="12">
-            <a-form-item label="成本价">
-              <span class="white">366.06</span>
-            </a-form-item>
-          </a-col>
-        </a-row>
-        <a-row :gutter="24">
-          <a-col :span="12">
-            <a-form-item label="订单总额">
-              <span class="white">17320.00</span>
-            </a-form-item>
-          </a-col>
-          <a-col :span="12">
-            <a-form-item label="首付款">
-              <span class="white">2400.00</span>
-            </a-form-item>
-          </a-col>
-        </a-row>
-        <a-row :gutter="24">
-          <a-col :span="12">
-            <a-form-item label="已付货款">
-              <span class="white">4500.00</span>
-            </a-form-item>
-          </a-col>
-          <a-col :span="12">
-            <a-form-item label="融资额">
-              <span class="white">12820.00</span>
-            </a-form-item>
-          </a-col>
-        </a-row>
-        <a-row :gutter="24">
-          <a-col :span="12">
-            <a-form-item label="利息">
-              <span class="white">25.34</span>
-            </a-form-item>
-          </a-col>
-          <a-col :span="12">
-            <a-form-item label="状态">
-              <span class="red">预警(需追加5000.00)</span>
-            </a-form-item>
-          </a-col>
-        </a-row> -->
-      </fieldset>
+</fieldset>
       <fieldset class="formFieldSet">
         <legend>还款信息</legend>
         <div class="tableDatas tableContextCenter">

+ 0 - 17
src/views/platinum/platinum_financing_information/list/tab/setup.ts

@@ -1,17 +0,0 @@
-import { queryResultLoadingAndInfo } from '@/common/methods/request/resultInfo';
-import { queryContract } from '@/services/go/ermcp/qhj';
-import { QhjContract } from '@/services/go/ermcp/qhj/interface';
-import { ref } from 'vue';
-export function queryTableList() {
-    // 加载状态
-    const loading = ref<boolean>(false);
-    // 表格数据
-    const tableList = ref<QhjContract[]>([]);
-    function queryTable() {
-        queryResultLoadingAndInfo(queryContract, loading)
-            .then(res => {
-                tableList.value = res
-            })
-    }
-    return { loading, tableList, queryTable }
-}