|
|
|
@ -459,7 +459,7 @@ export default {
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
{this.packageList.map((item, index) => {
|
|
|
|
|
return <a-select-option value={index}>{item.code}</a-select-option>
|
|
|
|
|
return <a-select-option value={index}>{item.name}</a-select-option>
|
|
|
|
|
})}
|
|
|
|
|
</a-select>
|
|
|
|
|
)
|
|
|
|
@ -802,15 +802,7 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
beforeStartCellEditing: ({ row, column, cellValue }) => {
|
|
|
|
|
console.log(column)
|
|
|
|
|
const arr = this.$options.filters['dictData']('BookingLockCtn')
|
|
|
|
|
let type = true
|
|
|
|
|
arr.forEach(item => {
|
|
|
|
|
if (item.code == column.field && this.isLockBooking) {
|
|
|
|
|
type = false
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
return type
|
|
|
|
|
return true
|
|
|
|
|
},
|
|
|
|
|
afterCellValueChange: ({ row, column, changeValue }) => {
|
|
|
|
|
if (this.inTableLoad) {
|
|
|
|
|