Browse Source

更新表格回显选择和是否可勾选的函数

fix_bug_pro20231227
zhangsiyu 2 years ago
parent
commit
d191c27fcf
  1. 30
      src/components/tablecmt/tablecmt.vue
  2. 18
      src/views/distribution/inventory/distrilbutionBillLading.vue
  3. 257
      src/views/distribution/reservation/reservationAddFrom.vue

30
src/components/tablecmt/tablecmt.vue

@ -10,6 +10,7 @@
border
height="100%"
:row-class-name="tableRowClassName"
ref="selecttable"
>
<el-table-column
:type="column.type == 0 ? 'selection' : ''"
@ -20,6 +21,7 @@
:label="column.label"
:fixed="column.fixed"
:sortable="column.sortable"
:selectable="isselectfun"
v-show="column.head"
>
<!-- <template #header>
@ -162,10 +164,10 @@
</template>
<script lang="ts" setup>
import { computed, ref, watchEffect, getCurrentInstance } from 'vue';
import { computed, ref, watchEffect, getCurrentInstance, onMounted } from 'vue';
import type { PropType } from 'vue';
const { proxy } = getCurrentInstance() as any;
const selecttable = ref(null);
/**
* 对应通知事件
* inputTxt:输入框输入的确认事件
@ -249,6 +251,17 @@ let props = defineProps({
type: Boolean as PropType<boolean>,
required: true,
},
//
checkselect: {
type: Array as PropType<TableDataType[]>,
required: false,
},
//
isselectfun: {
type: Function as PropType<(row: TableDataType) => boolean>,
required: false,
default: null,
},
});
let selectarr = ref([]);
const tableRowClassName = ({ row, rowIndex }: { row: TableDataType; rowIndex: number }) => {
@ -273,6 +286,19 @@ watchEffect(() => {
}
});
});
onMounted(() => {
if (props.checkselect) {
props.checkselect.map(item => {
if (props.isselectfun) {
if (props.isselectfun(item)) {
selecttable.value.toggleRowSelection(item, true);
}
} else {
selecttable.value.toggleRowSelection(item, true);
}
});
}
});
function godowns(url) {
let a = document.createElement('a'); //a
a.href = url; //myurl

18
src/views/distribution/inventory/distrilbutionBillLading.vue

@ -1505,23 +1505,7 @@ export default {
},
mounted() {
this.init();
let arr = [];
this.option.columnStock.map(item => {
if (!item.hide) {
arr.push({
prop: item.prop,
label: item.label,
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: true,
sortable: true,
head: false,
});
}
});
console.log(JSON.stringify(arr));
if (this.$route.query.type == '2') {
//
this.getDetailOen();

257
src/views/distribution/reservation/reservationAddFrom.vue

@ -345,7 +345,29 @@
<el-dialog v-model="isaddvalue" title="包件信息" width="100%" :model="addvalue">
<!-- 列表模块 -->
<el-table
<tablecmt
:columnList="columnParcels"
:tableData="packageData"
:checkselect="packageData"
:isselectfun="checkPackage"
:loading="loading"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionPackageChange"
>
<template #default="slotProps">
<!-- <el-text
type="primary"
link
icon="el-icon-edit"
@click="removeStockList(slotProps.scope.row)"
>移除</el-text
> -->
</template>
</tablecmt>
<!-- <el-table
ref="packageList"
v-loading="loading"
@selection-change="selectionPackageChange"
@ -365,7 +387,6 @@
<el-table-column v-if="option.index" label="序号" type="index" width="60" align="center">
</el-table-column>
<template v-for="(item, index) in option.columnParcels">
<!-- table字段 -->
<el-table-column
v-if="item.hide !== true"
:prop="item.prop"
@ -375,15 +396,11 @@
>
</el-table-column>
</template>
<!-- 操作栏模块 -->
<el-table-column prop="menu" label="操作" :width="220" align="center">
<template #="{ row }">
<!-- <el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button>-->
<!-- <el-button type="primary" text icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button>-->
<!-- <el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button>-->
</template>
</template>
</el-table-column>
</el-table>
</el-table> -->
<el-form-item style="margin-left: 45%; margin-top: 5px">
<el-button type="primary" icon="el-icon-circle-close" @click="onSubmitPackage"
>提交(包件)</el-button
@ -1292,6 +1309,205 @@ export default {
head: false,
},
],
columnParcels: [
{
prop: '',
label: '序号',
type: 0,
values: '',
width: '50',
checkarr: [],
fixed: true,
sortable: true,
head: false,
},
{
prop: 'warehouse',
label: '仓库',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'waybillNumber',
label: '运单号',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'orderPackageStatusName',
label: '包件状态',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'orderPackageFreezeStatusName',
label: '冻结状态',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'orderPackageGroundingStatusName',
label: '上架状态',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'orderPackageStockupStatusName',
label: '备货状态',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'orderPackageReservationStatusName',
label: '预约状态',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'orderPackageCode',
label: '包条码',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'goodsAllocation',
label: '货位信息',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'pallet',
label: '所在托盘',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'firsts',
label: '一级品',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'second',
label: '二级品',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'thirdProduct',
label: '三级品',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'materialName',
label: '物料名称',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'quantity',
label: '数量',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'trainNumber',
label: '客户车次号',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: true,
sortable: true,
head: false,
},
// {
// prop: '',
// label: '',
// type: 6,
// values: '',
// width: '150',
// checkarr: [],
// fixed: 'right',
// hide: true,
// },
],
height: 0,
//
title: '',
@ -1389,7 +1605,23 @@ export default {
},
mounted() {
this.init();
let arr = [];
this.option.columnParcels.map(item => {
if (!item.hide) {
arr.push({
prop: item.prop,
label: item.label,
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
});
}
});
console.log(JSON.stringify(arr));
this.onLoad(this.page);
this.getDictionary();
},
@ -1605,7 +1837,7 @@ export default {
packageListInfo.forEach(p => {
if (item.id === p.id) {
this.$nextTick(() => {
this.$refs.packageList.toggleRowSelection(this.packageData[index], true);
// this.$refs.packageList.toggleRowSelection(this.packageData[index], true);
});
}
});
@ -1650,15 +1882,16 @@ export default {
checkPackage(row, index) {
//
//
console.log(row,'rowrowrowrowrowrow')
if (!this.reservationId) {
if (
row.orderPackageReservationStatusName === '已预约' ||
row.orderPackageReservationStatusName === '20'
) {
return false;
return true;
}
}
if (row.orderPackageFreezeStatus === '20' || row.orderPackageFreezeStatusName === '已冻结') {
if (row.orderPackageFreezeStatus === '10' || row.orderPackageFreezeStatusName === '已冻结') {
return false;
} else {
return true;

Loading…
Cancel
Save