| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- <!-- 集采交易-我的集采-详情 -->
- <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 #yszscategory="{ value }">
- {{ getYSZSCategoryName(value) }}
- </template>
- <!-- 采购保证金比例 -->
- <template #buymarginvalue="{ value }">
- {{ parsePercent(value) }}
- </template>
- <!-- 状态 -->
- <template #presalestatus="{ value }">
- {{ getWRPresaleStatusName(value) }}
- </template>
- <!-- 履约方式 -->
- <template #performancetemplateid="{ value }">
- <app-performance-rule :item="getPerformanceTemplateById(value)" />
- </template>
- <!-- 集采价格 -->
- <template #price>
- <app-table :data="priceList" :columns="priceColumns" :show-toolbar="false" border />
- </template>
- </app-table-details>
- <app-table-details title="钻石参考信息" :label-width="140" :data="selectedRow" :cell-props="details2" :column="2">
- <!-- 生产方式 -->
- <template #ysproductionmode="{ value }">
- {{ handleNumberValue(getYSProductionModeName(value)) }}
- </template>
- <!-- 图片 -->
- <template #pictureurls>
- <template v-for="(url, index) in imageUrl" :key="index">
- <el-image :src="url" :preview-src-list="imageUrl" fit="cover" />
- </template>
- </template>
- </app-table-details>
- <app-table :data="dataList" :columns="columns" :show-toolbar="false" :loading="loading" border>
- <template #header>
- <h3 class="g-details__title">采购信息</h3>
- </template>
- <template #footer>
- <app-pagination :total="total" v-model:page-size="pageSize" v-model:page-index="pageIndex" @change="run" />
- </template>
- </app-table>
- </app-drawer>
- </template>
- <script lang="ts" setup>
- import { shallowRef, reactive, PropType, onMounted } from 'vue'
- import { ElMessage } from 'element-plus'
- import { getFileUrl, parsePercent, handleNumberValue } from '@/filters'
- import { getYSZSCategoryName, getWRPresaleStatusName, getYSProductionModeName, YSZSCategory } from '@/constants/presale'
- import { useRequest } from '@/hooks/request'
- import { performanceStore } from '@/stores'
- import { queryGZMyPresell, queryPresaleorderapplyprice } from '@/services/api/presale'
- import AppDrawer from '@pc/components/base/drawer/index.vue'
- import AppTable from '@pc/components/base/table/index.vue'
- import AppPagination from '@pc/components/base/pagination/index.vue'
- import AppTableDetails from '@pc/components/base/table-details/index.vue'
- import AppPerformanceRule from '@pc/components/modules/performance-rule/index.vue'
- const props = defineProps({
- selectedRow: {
- type: Object as PropType<Ermcp.GZPreSellRsp>,
- required: true
- },
- })
- const { getPerformanceTemplateById } = performanceStore.actions
- const show = shallowRef(true)
- const imageUrl = reactive<string[]>([])
- const { dataList: priceList } = useRequest(queryPresaleorderapplyprice, {
- params: {
- applyid: props.selectedRow.presaleapplyid
- }
- })
- const { loading, dataList, total, pageIndex, pageSize, run } = useRequest(queryGZMyPresell, {
- params: {
- pagesize: 10,
- presaleapplyid: props.selectedRow.presaleapplyid,
- },
- onError: (err) => {
- ElMessage.error(err)
- }
- })
- const details1 = [
- { prop: 'wrstandardname', label: '商品名称:' },
- { prop: 'customername', label: '卖方:' },
- { prop: 'presaleqty', label: '集采总量:' },
- { prop: 'yszscategory', label: '钻石类型:' },
- { prop: 'minbuyqty', label: '最小采购单位:' },
- { prop: 'minsuccessqty', label: '最低成团量:' },
- { prop: 'maxbuyqty', label: '最大采购单位:' },
- { prop: 'buymarginvalue', label: '采购保证金比例:' },
- { prop: 'startdate', label: '开始日期:' },
- { prop: 'enddate', label: '结束日期:' },
- { prop: 'presalestatus', label: '状态:' },
- { prop: 'tradeqty', label: '已采购数量:' },
- { prop: 'performancetemplateid', label: '履约方式:', entireRow: true },
- { prop: 'price', label: '集采价格:', entireRow: true },
- ]
- const details2 = (() => {
- switch (props.selectedRow.yszscategory) {
- case YSZSCategory.Diamonds: {
- return [
- { prop: 'zsshapetypestr', label: '形状:' },
- { prop: 'zscolortypestr', label: '颜色:' },
- { prop: 'sizestr', label: '尺寸:' },
- { prop: 'zspolishtypestr', label: '抛光:' },
- { prop: 'zsclaritytypestr', label: '净度:' },
- { prop: 'zssymmetrytypestr', label: '对称:' },
- { prop: 'zscuttypestr', label: '切工:' },
- { prop: 'zsfluorescencetypestr', label: '荧光:' },
- { prop: 'pictureurls', label: '图片:', entireRow: true },
- { prop: 'remark', label: '备注:', entireRow: true },
- ]
- }
- case YSZSCategory.Rough: {
- return [
- { prop: 'zscolortypestr', label: '颜色:' },
- { prop: 'sizestr', label: '尺寸:' },
- { prop: 'zsclaritytypestr', label: '净度:' },
- { prop: 'yieldrate', label: '成品率:' },
- { prop: 'qtydesc', label: '数量描述:' },
- { prop: 'weightdesc', label: '重量描述:' },
- { prop: 'ysproductionmode', label: '生产方式:' },
- { prop: 'pictureurls', label: '图片:', entireRow: true },
- { prop: 'remark', label: '备注:', entireRow: true },
- ]
- }
- default: {
- return []
- }
- }
- })()
- const columns: Ermcp.TableColumn[] = [
- { prop: 'customername', label: '采购方' },
- { prop: 'orderqty', label: '认购数量(ct)' },
- { prop: 'tradeprice', label: '采购价格(元/克拉)' },
- { prop: 'ordertime', label: '采购时间' },
- ]
- const priceColumns: Ermcp.TableColumn[] = [
- { prop: 'stepindex', label: '序号' },
- { prop: 'qty', label: '数量' },
- { prop: 'price', label: '价格(元/克拉)' },
- ]
- onMounted(() => {
- const images = props.selectedRow.pictureurls.split(',')
- images.forEach((url) => {
- if (url) {
- imageUrl.push(getFileUrl(url))
- }
- })
- })
- </script>
- <style lang="less" scoped>
- .el-image {
- width: 64px;
- height: 64px;
- border: 1px solid #ccc;
- +.el-image {
- margin-left: 10px;
- }
- }
- </style>
|