Browse Source

新增装车明细搜索

dev-xx
qb 5 months ago
parent
commit
8103352174
  1. 8
      src/option/distribution/TripartiteTransfer.js
  2. 14
      src/views/distribution/artery/VehicleStowageDetails.vue

8
src/option/distribution/TripartiteTransfer.js

@ -471,7 +471,7 @@ export const detailsColumnList = [
{ {
prop: 'firsts', prop: 'firsts',
label: '一级品', label: '一级品',
type: 1, type: 2,
values: '', values: '',
width: '130', width: '130',
checkarr: [], checkarr: [],
@ -481,7 +481,7 @@ export const detailsColumnList = [
{ {
prop: 'senconds', prop: 'senconds',
label: '二级品', label: '二级品',
type: 1, type: 2,
values: '', values: '',
width: '130', width: '130',
checkarr: [], checkarr: [],
@ -491,7 +491,7 @@ export const detailsColumnList = [
{ {
prop: 'thirds', prop: 'thirds',
label: '三级品', label: '三级品',
type: 1, type: 2,
values: '', values: '',
width: '130', width: '130',
checkarr: [], checkarr: [],
@ -501,7 +501,7 @@ export const detailsColumnList = [
{ {
prop: 'materialName', prop: 'materialName',
label: '物料名称', label: '物料名称',
type: 1, type: 2,
values: '', values: '',
width: '130', width: '130',
checkarr: [], checkarr: [],

14
src/views/distribution/artery/VehicleStowageDetails.vue

@ -181,9 +181,6 @@
> >
成本分摊确认 成本分摊确认
</el-button> </el-button>
<!-- <el-button type="primary" icon="Download" @click="tcTableexport = true">
导出
</el-button> -->
<el-button type="primary" icon="Download" @click="handleExport"> 导出 </el-button> <el-button type="primary" icon="Download" @click="handleExport"> 导出 </el-button>
</div> </div>
@ -423,13 +420,6 @@
</div> </div>
</el-dialog> </el-dialog>
<el-dialog v-model="tcTableexport" title="导出" width="40%">
<Tableexportcomponent
:menuData="details.detailsColumnList"
:data="detailsRenderData"
></Tableexportcomponent>
</el-dialog>
<edittablehead <edittablehead
@closce="showdrawer" @closce="showdrawer"
:drawerShow="drawerShow" :drawerShow="drawerShow"
@ -473,9 +463,6 @@ import { detailsColumnList, nodeInfoColumnList } from '@/option/distribution/add
import { detailsColumnList as abnormalColumn } from '@/option/distribution/TripartiteTransfer'; import { detailsColumnList as abnormalColumn } from '@/option/distribution/TripartiteTransfer';
import { compressImageBlob } from '@/components/IMGcompressor/imgcompressor.js'; import { compressImageBlob } from '@/components/IMGcompressor/imgcompressor.js';
import { getToken } from '@/utils/auth'; import { getToken } from '@/utils/auth';
const Tableexportcomponent = defineAsyncComponent(
() => import('@/components/Tableexportcomponent/Tableexportcomponent.vue')
);
import { import {
postCarsLoadDetailInfo, postCarsLoadDetailInfo,
postFindCarsLoadLogs, postFindCarsLoadLogs,
@ -515,7 +502,6 @@ const ruleFormRef = ref();
const oldColumnListNode = ref(); const oldColumnListNode = ref();
const abnormalTableRef = ref(); const abnormalTableRef = ref();
const tcTableexport = ref(false);
const exportColumnListNode = ref(); const exportColumnListNode = ref();
// //
const nodeInfoRef = ref(); const nodeInfoRef = ref();

Loading…
Cancel
Save