li.shaoyi 2 rokov pred
rodič
commit
51ebcb7dab

+ 1 - 1
src/packages/pc/components/base/table-details/index.less

@@ -10,7 +10,7 @@
         th,
         td {
             border: 0 solid #ebeef5;
-            padding: 5px 10px;
+            padding: 6px 10px;
         }
 
         th {

+ 20 - 0
src/packages/pc/views/centralize/list/components/details/index.vue

@@ -2,10 +2,26 @@
 <template>
     <app-drawer title="详情" :width="960" v-model:show="show" :loading="loading" :refresh="refresh">
         <app-table-details title="集采信息" :label-width="140" :data="selectedRow" :cell-props="details1" :column="2">
+            <!-- 集采总量 -->
+            <template #presaleqty="{ value }">
+                {{ value }} (克拉)
+            </template>
             <!-- 钻石类型 -->
             <template #yszscategory="{ value }">
                 {{ getYSZSCategoryName(value) }}
             </template>
+            <!-- 最小采购单位 -->
+            <template #minbuyqty="{ value }">
+                {{ value }} (克拉)
+            </template>
+            <!-- 最低成团量 -->
+            <template #minsuccessqty="{ value }">
+                {{ value }} (克拉)
+            </template>
+            <!-- 最大采购单位 -->
+            <template #maxbuyqty="{ value }">
+                {{ value }} (克拉)
+            </template>
             <!-- 采购保证金比例 -->
             <template #buymarginvalue="{ value }">
                 {{ parsePercent(value) }}
@@ -14,6 +30,10 @@
             <template #presalestatus="{ value }">
                 {{ getWRPresaleStatusName(value) }}
             </template>
+            <!-- 已采购数量 -->
+            <template #tradeqty="{ value }">
+                {{ value }} (克拉)
+            </template>
             <!-- 履约方式 -->
             <template #performancetemplateid="{ value }">
                 <app-performance-rule :item="getPerformanceTemplateById(value)" />

+ 16 - 0
src/packages/pc/views/centralize/mine/components/apply/details.vue

@@ -2,10 +2,26 @@
 <template>
     <app-drawer title="详情" :width="960" v-model:show="show">
         <app-table-details title="预售信息" :label-width="140" :data="selectedRow" :cell-props="details1" :column="2">
+            <!-- 集采总量 -->
+            <template #presaleqty="{ value }">
+                {{ value }} (克拉)
+            </template>
             <!-- 钻石类型 -->
             <template #yszscategory="{ value }">
                 {{ getYSZSCategoryName(value) }}
             </template>
+            <!-- 最小采购单位 -->
+            <template #minbuyqty="{ value }">
+                {{ value }} (克拉)
+            </template>
+            <!-- 最低成团量 -->
+            <template #minsuccessqty="{ value }">
+                {{ value }} (克拉)
+            </template>
+            <!-- 最大采购单位 -->
+            <template #maxbuyqty="{ value }">
+                {{ value }} (克拉)
+            </template>
             <!-- 采购保证金比例 -->
             <template #buymarginvalue="{ value }">
                 {{ parsePercent(value) }}

+ 20 - 0
src/packages/pc/views/centralize/mine/components/details/index.vue

@@ -2,10 +2,26 @@
 <template>
     <app-drawer class="g-details" title="详情" :width="960" v-model:show="show">
         <app-table-details title="预售信息" :label-width="140" :data="selectedRow" :cell-props="details1" :column="2">
+            <!-- 集采总量 -->
+            <template #presaleqty="{ value }">
+                {{ value }} (克拉)
+            </template>
             <!-- 钻石类型 -->
             <template #yszscategory="{ value }">
                 {{ getYSZSCategoryName(value) }}
             </template>
+            <!-- 最小采购单位 -->
+            <template #minbuyqty="{ value }">
+                {{ value }} (克拉)
+            </template>
+            <!-- 最低成团量 -->
+            <template #minsuccessqty="{ value }">
+                {{ value }} (克拉)
+            </template>
+            <!-- 最大采购单位 -->
+            <template #maxbuyqty="{ value }">
+                {{ value }} (克拉)
+            </template>
             <!-- 采购保证金比例 -->
             <template #buymarginvalue="{ value }">
                 {{ parsePercent(value) }}
@@ -14,6 +30,10 @@
             <template #presalestatus="{ value }">
                 {{ getWRPresaleStatusName(value) }}
             </template>
+            <!-- 已采购数量 -->
+            <template #tradeqty="{ value }">
+                {{ value }} (克拉)
+            </template>
             <!-- 履约方式 -->
             <template #performancetemplateid="{ value }">
                 <app-performance-rule :item="getPerformanceTemplateById(value)" />

+ 9 - 1
src/packages/pc/views/centralize/partake/components/details/index.vue

@@ -1,11 +1,19 @@
 <!-- 集采交易-我参与的预售-详情 -->
 <template>
     <app-drawer title="详情" :width="960" v-model:show="show">
-        <app-table-details title="集采信息" :label-width="140" :data="selectedRow" :cell-props="details1" :column="2">、
+        <app-table-details title="集采信息" :label-width="140" :data="selectedRow" :cell-props="details1" :column="2">
+            <!-- 采购数量 -->
+            <template #orderqty="{ value }">
+                {{ value }} (克拉)
+            </template>
             <!-- 钻石类型 -->
             <template #yszscategory="{ value }">
                 {{ getYSZSCategoryName(value) }}
             </template>
+            <!-- 采购价格 -->
+            <template #tradeprice="{ value }">
+                {{ value }} (元/克拉)
+            </template>
             <!-- 采购保证金比例 -->
             <template #marginvalue="{ value }">
                 {{ parsePercent(value) }}

+ 24 - 0
src/packages/pc/views/presale/list/components/details/index.vue

@@ -2,6 +2,26 @@
 <template>
     <app-drawer title="详情" :width="960" v-model:show="show" :loading="loading" :refresh="refresh">
         <app-table-details title="预售信息" :label-width="140" :data="selectedRow" :cell-props="details1" :column="2">
+            <!-- 预售总量 -->
+            <template #presaleqty="{ value }">
+                {{ value }} (克拉)
+            </template>
+            <!-- 预售价格 -->
+            <template #unitprice="{ value }">
+                {{ value }} (元/克拉)
+            </template>
+            <!-- 最小采购单位 -->
+            <template #minbuyqty="{ value }">
+                {{ value }} (克拉)
+            </template>
+            <!-- 最低成团量 -->
+            <template #minsuccessqty="{ value }">
+                {{ value }} (克拉)
+            </template>
+            <!-- 最大采购单位 -->
+            <template #maxbuyqty="{ value }">
+                {{ value }} (克拉)
+            </template>
             <!-- 采购保证金比例 -->
             <template #buymarginvalue="{ value }">
                 {{ parsePercent(value) }}
@@ -10,6 +30,10 @@
             <template #presalestatus="{ value }">
                 {{ getWRPresaleStatusName(value) }}
             </template>
+            <!-- 已认购数量 -->
+            <template #tradeqty="{ value }">
+                {{ value }} (克拉)
+            </template>
             <!-- 履约方式 -->
             <template #performancetemplateid="{ value }">
                 <app-performance-rule :item="getPerformanceTemplateById(value)" />

+ 20 - 0
src/packages/pc/views/presale/mine/components/apply/details.vue

@@ -2,6 +2,26 @@
 <template>
     <app-drawer title="详情" :width="960" v-model:show="show">
         <app-table-details title="预售信息" :label-width="140" :data="selectedRow" :cell-props="details1" :column="2">
+            <!-- 预售总量 -->
+            <template #presaleqty="{ value }">
+                {{ value }} (克拉)
+            </template>
+            <!-- 预售价格 -->
+            <template #unitprice="{ value }">
+                {{ value }} (元/克拉)
+            </template>
+            <!-- 最小采购单位 -->
+            <template #minbuyqty="{ value }">
+                {{ value }} (克拉)
+            </template>
+            <!-- 最低成团量 -->
+            <template #minsuccessqty="{ value }">
+                {{ value }} (克拉)
+            </template>
+            <!-- 最大采购单位 -->
+            <template #maxbuyqty="{ value }">
+                {{ value }} (克拉)
+            </template>
             <!-- 采购保证金比例 -->
             <template #buymarginvalue="{ value }">
                 {{ parsePercent(value) }}

+ 24 - 0
src/packages/pc/views/presale/mine/components/details/index.vue

@@ -2,6 +2,26 @@
 <template>
     <app-drawer class="g-details" title="详情" :width="960" v-model:show="show">
         <app-table-details title="预售信息" :label-width="140" :data="selectedRow" :cell-props="details1" :column="2">
+            <!-- 预售总量 -->
+            <template #presaleqty="{ value }">
+                {{ value }} (克拉)
+            </template>
+            <!-- 预售价格 -->
+            <template #unitprice="{ value }">
+                {{ value }} (元/克拉)
+            </template>
+            <!-- 最小采购单位 -->
+            <template #minbuyqty="{ value }">
+                {{ value }} (克拉)
+            </template>
+            <!-- 最低成团量 -->
+            <template #minsuccessqty="{ value }">
+                {{ value }} (克拉)
+            </template>
+            <!-- 最大采购单位 -->
+            <template #maxbuyqty="{ value }">
+                {{ value }} (克拉)
+            </template>
             <!-- 采购保证金比例 -->
             <template #buymarginvalue="{ value }">
                 {{ parsePercent(value) }}
@@ -10,6 +30,10 @@
             <template #presalestatus="{ value }">
                 {{ getWRPresaleStatusName(value) }}
             </template>
+            <!-- 已认购数量 -->
+            <template #tradeqty="{ value }">
+                {{ value }} (克拉)
+            </template>
             <!-- 履约方式 -->
             <template #performancetemplateid="{ value }">
                 <app-performance-rule :item="getPerformanceTemplateById(value)" />

+ 8 - 0
src/packages/pc/views/presale/partake/components/details/index.vue

@@ -2,6 +2,14 @@
 <template>
     <app-drawer title="详情" :width="960" v-model:show="show">
         <app-table-details title="预售信息" :label-width="140" :data="selectedRow" :cell-props="details1" :column="2">
+            <!-- 认购数量 -->
+            <template #orderqty="{ value }">
+                {{ value }} (克拉)
+            </template>
+            <!-- 预售价格 -->
+            <template #tradeprice="{ value }">
+                {{ value }} (元/克拉)
+            </template>
             <!-- 采购保证金比例 -->
             <template #marginvalue="{ value }">
                 {{ parsePercent(value) }}