|
|
@ -32,6 +32,10 @@ |
|
|
|
<span>{{ row.code }}</span> |
|
|
|
</el-button> |
|
|
|
</template> |
|
|
|
<template #shift="{row}"> |
|
|
|
<el-tag type="primary" v-if="row.isDay == 1">白班</el-tag> |
|
|
|
<el-tag type="primary" v-if="row.isNight == 1">夜班</el-tag> |
|
|
|
</template> |
|
|
|
<template #action="{ row }"> |
|
|
|
<ButtonBase :Butttondata="butttondata" @button-base-click="buttonTableClick($event,row)" /> |
|
|
|
</template> |
|
|
@ -170,22 +174,27 @@ const buttonTableClick = async (val, row) => { |
|
|
|
/** 添加/修改操作 */ |
|
|
|
const basicFormRef = ref() |
|
|
|
const openForm = (type: string, row?: any) => { |
|
|
|
if (type == 'update') { |
|
|
|
row.shift = [] |
|
|
|
row.modelShow = row.model?.split(',') |
|
|
|
if (row.isDay == 1) { |
|
|
|
row.shift.push('day') |
|
|
|
} |
|
|
|
if (row.isNight == 1) { |
|
|
|
row.shift.push('night') |
|
|
|
} |
|
|
|
} |
|
|
|
console.log(row) |
|
|
|
basicFormRef.value.open(type, row) |
|
|
|
} |
|
|
|
|
|
|
|
// form表单提交 |
|
|
|
const formsSuccess = async (formType,data) => { |
|
|
|
var isHave =SupplierAddressModelDeli.allSchemas.formSchema.some(function (item) { |
|
|
|
return item.field === 'activeTime' || item.field === 'expireTime'; |
|
|
|
}); |
|
|
|
if(isHave){ |
|
|
|
if(data.activeTime && data.expireTime && data.activeTime >=data.expireTime){ |
|
|
|
message.error('失效时间要大于生效时间') |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
if(data.activeTime==0)data.activeTime = null; |
|
|
|
if(data.expireTime==0)data.expireTime = null; |
|
|
|
const formsSuccess = async (formType, dataParams) => { |
|
|
|
const data = {...dataParams} |
|
|
|
data.isDay = data.shift.some(item=>item === 'day') ? 1 :0 |
|
|
|
data.isNight = data.shift.some(item => item === 'night') ? 1 :0 |
|
|
|
data.model = data.modelShow.join(',') |
|
|
|
delete data.shift |
|
|
|
if (formType === 'create') { |
|
|
|
await SupplierAddressModelDeliApi.createSupplierAddressModelDeli(data) |
|
|
|
message.success(t('common.createSuccess')) |
|
|
|