diff --git a/src/components/tablecmt/tablecmt.vue b/src/components/tablecmt/tablecmt.vue index 3a2e38cd..65c4968f 100644 --- a/src/components/tablecmt/tablecmt.vue +++ b/src/components/tablecmt/tablecmt.vue @@ -10,6 +10,7 @@ border height="100%" :row-class-name="tableRowClassName" + ref="selecttable" > - + + + - + - + --> 提交(包件) { + 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;