|
|
@@ -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)" />
|