|
|
@@ -1,53 +1,53 @@
|
|
|
<template>
|
|
|
- <!-- 现货合同: 待审核-已审核-->
|
|
|
- <div class="spot-contract-peddding" :loading="loading">
|
|
|
- <filterCustomTable @search="updateColumn"></filterCustomTable>
|
|
|
- <a-table :columns="columns" class="topTable" :pagination="false" rowKey="key" :expandedRowKeys="expandedRowKeys" :customRow="Rowclick" :data-source="tableList" :scroll="{ x: 'calc(100% - 160px)', y: 'calc(100vh - 163px)' }">
|
|
|
- <!-- 额外的展开行 -->
|
|
|
- <!-- 额外的展开行 -->
|
|
|
- <template #expandedRowRender="{ record }">
|
|
|
- <mtp-table-button class="btn-list-sticky" :buttons="buttons" :record="record" @click="openComponent" />
|
|
|
- </template>
|
|
|
- <template #biztype="{ text }">
|
|
|
- <a>{{ getBizTypeName(text) }}</a>
|
|
|
- </template>
|
|
|
- <template #pricetype="{ text }">
|
|
|
- <a>{{ getPriceTypeName(text) }}</a>
|
|
|
- </template>
|
|
|
- <template #contracctstatus="{ text }">
|
|
|
- <a>{{ getContractStatusName(text) }}</a>
|
|
|
- </template>
|
|
|
- <template #contracttype="{ text }">
|
|
|
- <a>{{ getContractTypeName(text) }}</a>
|
|
|
- </template>
|
|
|
- <!-- 对手方 -->
|
|
|
- <template #negative="{ record }">
|
|
|
- <a>{{ record.contracttype === 1 ? record.sellusername : record.buyusername }}</a>
|
|
|
- </template>
|
|
|
- <template #startdate="{ record }">
|
|
|
- <span>{{ formatValue(formatTime(record.startdate, 'd') + '--' + formatTime(record.enddate, 'd')) }}</span>
|
|
|
- </template>
|
|
|
- <!-- 交收期 -->
|
|
|
- <template #deliverystartdate="{ record }">
|
|
|
- <span>{{ formatValue(formatTime(record.deliverystartdate, 'd') + '--' + formatTime(record.deliveryenddate, 'd')) }}</span>
|
|
|
- </template>
|
|
|
- <!-- 业务员 -->
|
|
|
- <template #saleuserid="{ record }">
|
|
|
- <span>{{ findManagerName(record.saleuserid) }}</span>
|
|
|
- </template>
|
|
|
- <!-- 跟单员 -->
|
|
|
- <template #meruserid="{ record }">
|
|
|
- <span>{{ findManagerName(record.meruserid) }}</span>
|
|
|
- </template>
|
|
|
- <!-- 合同量 -->
|
|
|
- <template #qty="{ text, record }">
|
|
|
- <span>{{ handleEnumdic(text, record) }}</span>
|
|
|
- </template>
|
|
|
- </a-table>
|
|
|
- <!-- 右键 -->
|
|
|
- <contextMenu :contextMenu="contextMenu" @cancel="closeContext" :list="buttons"> </contextMenu>
|
|
|
- <component :is="componentId" v-if="componentId" :selectedRow="selectedRow" @cancel="closeComponent"></component>
|
|
|
- </div>
|
|
|
+ <!-- 现货合同: 待审核-已审核-->
|
|
|
+ <div class="spot-contract-peddding" :loading="loading">
|
|
|
+ <filterCustomTable @search="updateColumn"></filterCustomTable>
|
|
|
+ <a-table :columns="columns" class="topTable" :pagination="false" rowKey="key" :expandedRowKeys="expandedRowKeys" :customRow="Rowclick" :data-source="tableList" :scroll="{ x: 'calc(100% - 160px)', y: 'calc(100vh - 163px)' }">
|
|
|
+ <!-- 额外的展开行 -->
|
|
|
+ <!-- 额外的展开行 -->
|
|
|
+ <template #expandedRowRender="{ record }">
|
|
|
+ <mtp-table-button class="btn-list-sticky" :buttons="buttons" :record="record" @click="openComponent" />
|
|
|
+ </template>
|
|
|
+ <template #biztype="{ text }">
|
|
|
+ <a>{{ getBizTypeName(text) }}</a>
|
|
|
+ </template>
|
|
|
+ <template #pricetype="{ text }">
|
|
|
+ <a>{{ getPriceTypeName(text) }}</a>
|
|
|
+ </template>
|
|
|
+ <template #contracctstatus="{ text }">
|
|
|
+ <a>{{ getContractStatusName(text) }}</a>
|
|
|
+ </template>
|
|
|
+ <template #contracttype="{ text }">
|
|
|
+ <a>{{ getContractTypeName(text) }}</a>
|
|
|
+ </template>
|
|
|
+ <!-- 对手方 -->
|
|
|
+ <template #negative="{ record }">
|
|
|
+ <a>{{ record.contracttype === 1 ? record.sellusername : record.buyusername }}</a>
|
|
|
+ </template>
|
|
|
+ <template #startdate="{ record }">
|
|
|
+ <span>{{ formatValue(formatTime(record.startdate, 'd') + '--' + formatTime(record.enddate, 'd')) }}</span>
|
|
|
+ </template>
|
|
|
+ <!-- 交收期 -->
|
|
|
+ <template #deliverystartdate="{ record }">
|
|
|
+ <span>{{ formatValue(formatTime(record.deliverystartdate, 'd') + '--' + formatTime(record.deliveryenddate, 'd')) }}</span>
|
|
|
+ </template>
|
|
|
+ <!-- 业务员 -->
|
|
|
+ <template #saleuserid="{ record }">
|
|
|
+ <span>{{ findManagerName(record.saleuserid) }}</span>
|
|
|
+ </template>
|
|
|
+ <!-- 跟单员 -->
|
|
|
+ <template #meruserid="{ record }">
|
|
|
+ <span>{{ findManagerName(record.meruserid) }}</span>
|
|
|
+ </template>
|
|
|
+ <!-- 合同量 -->
|
|
|
+ <template #qty="{ text, record }">
|
|
|
+ <span>{{ handleEnumdic(text, record) }}</span>
|
|
|
+ </template>
|
|
|
+ </a-table>
|
|
|
+ <!-- 右键 -->
|
|
|
+ <contextMenu :contextMenu="contextMenu" @cancel="closeContext" :list="buttons"> </contextMenu>
|
|
|
+ <component :is="componentId" v-if="componentId" :selectedRow="selectedRow" @cancel="closeComponent"></component>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
|
|
|
<script lang="ts">
|
|
|
@@ -61,7 +61,7 @@ import { QuerySpotContract } from '@/services/go/ermcp/spot-contract';
|
|
|
import { EnumRouterName } from '@/common/constants/enumRouterName';
|
|
|
import { getTableButton } from '@/common/setup/table/button';
|
|
|
import { useRoute } from 'vue-router';
|
|
|
-import moment from "moment"
|
|
|
+import moment from 'moment';
|
|
|
|
|
|
export default defineComponent({
|
|
|
name: EnumRouterName.spot_contract_checkpending,
|
|
|
@@ -85,11 +85,11 @@ export default defineComponent({
|
|
|
const queryTableAction = () => {
|
|
|
switch (routeName) {
|
|
|
case 'contract_checkpending':
|
|
|
- queryTable(QuerySpotContract, { querytype: 2 }).then((res)=>{
|
|
|
- tableList.value.sort((a,b)=>{
|
|
|
- return moment(b.createtime).valueOf()-moment(a.createtime).valueOf()
|
|
|
- })
|
|
|
- })
|
|
|
+ queryTable(QuerySpotContract, { querytype: 2 }).then((res) => {
|
|
|
+ tableList.value.sort((a, b) => {
|
|
|
+ return moment(b.createtime).valueOf() - moment(a.createtime).valueOf();
|
|
|
+ });
|
|
|
+ });
|
|
|
break;
|
|
|
case 'contract_performance':
|
|
|
queryTable(QuerySpotContract, { querytype: 3 });
|
|
|
@@ -116,7 +116,7 @@ export default defineComponent({
|
|
|
queryFn: queryTableAction,
|
|
|
menuType: EnumRouterName.spot_contract_checkpending,
|
|
|
tableName: getTableName(),
|
|
|
- tableFilterKey: ['contracttype', 'pricetype', 'contractno'],
|
|
|
+ tableFilterKey: ['contracttype', 'pricetype', 'contractno', 'negative'],
|
|
|
tableFilterCB,
|
|
|
isDetail: true,
|
|
|
};
|