|
@@ -123,12 +123,6 @@
|
|
|
bordered>
|
|
|
<!-- 操作 -->
|
|
|
<template slot="action" slot-scope="text, record">
|
|
|
- <!-- <a-button
|
|
|
- size="small"
|
|
|
- type="link"
|
|
|
- class="button-warning"
|
|
|
- @click="openRecordModal = true"
|
|
|
- >流转记录</a-button> -->
|
|
|
<a-button
|
|
|
size="small"
|
|
|
type="link"
|
|
@@ -140,8 +134,6 @@
|
|
|
</a-spin>
|
|
|
<!-- 质保信息-->
|
|
|
<warranty-info-modal v-drag :openModal="openInfoModal" @close="openInfoModal = false" />
|
|
|
- <!-- 流转记录 -->
|
|
|
- <roam-record-modal v-drag :openModal="openRecordModal" @close="openRecordModal = false" />
|
|
|
<!-- 导入轮胎唯一码 -->
|
|
|
<importGuideModal :openModal="openGuideModal" @close="openGuideModal=false" @ok="handleGuideOk" />
|
|
|
</a-card>
|
|
@@ -162,7 +154,6 @@ import custList from '@/views/common/custList.vue'
|
|
|
import reportModal from '@/views/common/reportModal.vue'
|
|
|
import AreaList from '@/views/common/areaList.js'
|
|
|
import warrantyInfoModal from './warrantyInfoModal.vue'
|
|
|
-import roamRecordModal from './roamRecordModal.vue'
|
|
|
import importGuideModal from './importGuideModal.vue'
|
|
|
import {
|
|
|
hdExportExcel
|
|
@@ -186,7 +177,6 @@ export default {
|
|
|
reportModal,
|
|
|
AreaList,
|
|
|
warrantyInfoModal,
|
|
|
- roamRecordModal,
|
|
|
importGuideModal
|
|
|
},
|
|
|
data () {
|
|
@@ -214,15 +204,15 @@ export default {
|
|
|
openRecordModal: false, // 流转记录弹窗
|
|
|
columns: [
|
|
|
{ title: '序号', dataIndex: 'no', width: '5%', align: 'center' },
|
|
|
+ { title: '业务单号', dataIndex: 'salesBillNo', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '审核时间', dataIndex: 'giftQty1', width: '12%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '导入时间', dataIndex: 'giftQty4', width: '12%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '产品编码', dataIndex: 'indirectDealerName', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '唯一码', dataIndex: 'giftQty', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '业务单号', dataIndex: 'salesBillNo', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '出库时间', dataIndex: 'giftQty1', width: '12%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '产品名称', dataIndex: 'totalQty2', width: '12%', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
{ title: '客户名称', dataIndex: 'dealerName', width: '12%', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
- { title: '出库仓库', dataIndex: 'createDate', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '当前所在客户', dataIndex: 'giftQty3', width: '12%', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
{ title: '质保状态', dataIndex: 'giftQty4', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '质保时间', dataIndex: 'giftQty3', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '操作', scopedSlots: { customRender: 'action' }, width: '12%', align: 'center' }
|
|
|
],
|
|
|
rules: {
|