fix: 修复bug

This commit is contained in:
fyy
2025-08-22 19:43:32 +08:00
parent 29adc052c7
commit 553a915027
5 changed files with 30 additions and 21 deletions

View File

@@ -201,7 +201,7 @@ const modalSchema = [
fieldName: 'signType',
component: 'Select',
componentProps: {
options:getDictOptions('wy_bjqdfs')
options: getDictOptions('wy_bjqdfs'),
},
dependencies: {
show: () => (isReadonly.value ? true : false),
@@ -213,10 +213,11 @@ const modalSchema = [
fieldName: 'signImgUrl',
component: 'ImageUpload',
componentProps: {
helpMessage:false
helpMessage: false,
},
dependencies: {
show: (formValue) => (isReadonly.value&&formValue.signImgUrl ? true : false),
show: (formValue) =>
isReadonly.value && formValue.signImgUrl ? true : false,
triggerFields: [''],
},
},
@@ -289,7 +290,6 @@ const [BasicModal, modalApi] = useVbenModal({
if (!isOpen) {
return null;
}
console.log(isReadonly.value);
// 查询服务地址树形结构
setupCommunitySelect();
@@ -314,6 +314,7 @@ const [BasicModal, modalApi] = useVbenModal({
}
if ((isUpdate.value || isReadonly.value) && id) {
const record: any = await clean_orderInfo(id);
if (record.starTime) record.starTime = dayjs(record.starTime);
if (record.endTime) record.endTime = dayjs(record.endTime);
editUnitId.value = record.unitId || '';
@@ -496,7 +497,6 @@ async function handleConfirm() {
return;
}
const data = cloneDeep(await formApi.getValues());
console.log(data);
// 单位数据缓存
if (unitListData.length === 0) {
@@ -537,7 +537,6 @@ async function handleClosed() {
// 获取服务地址
async function setupCommunitySelect() {
const areaList = await communityTree(4);
console.log(areaList);
// 选中后显示在输入框的值 即父节点 / 子节点
// addFullName(areaList, 'areaName', ' / ');