|
|
@ -68,7 +68,7 @@ |
|
|
|
> |
|
|
|
<!-- <template #action="{ row }"> |
|
|
|
<ButtonBase |
|
|
|
:Butttondata="buttondata" |
|
|
|
:Butttondata="buttondata(row)" |
|
|
|
@button-base-click="buttonTableClick($event, row)" |
|
|
|
/> |
|
|
|
</template> --> |
|
|
@ -95,7 +95,7 @@ |
|
|
|
</template> |
|
|
|
<template #action="{ row }"> |
|
|
|
<ButtonBase |
|
|
|
:Butttondata="buttondata" |
|
|
|
:Butttondata="buttondata(row)" |
|
|
|
@button-base-click="buttonTableClick($event, row)" |
|
|
|
/> |
|
|
|
</template> |
|
|
@ -111,7 +111,7 @@ |
|
|
|
> |
|
|
|
<template #action="{ row }"> |
|
|
|
<ButtonBase |
|
|
|
:Butttondata="buttondata" |
|
|
|
:Butttondata="buttondata(row)" |
|
|
|
@button-base-click="buttonTableClick($event, row)" |
|
|
|
/> |
|
|
|
</template> |
|
|
@ -544,6 +544,7 @@ const filterPermissionAnnexTable = ()=>{ |
|
|
|
const isShowDrawer = ref(false) |
|
|
|
const detailLoading = ref(false) |
|
|
|
const tabsList = ref(JSON.parse(JSON.stringify(props.tabs ? props.tabs : ''))) |
|
|
|
const buttondataTable = ref(props.buttondataTable) |
|
|
|
|
|
|
|
if (props.isBasic == true) { |
|
|
|
if (tabsList.value && tabsList.value.length > 0) { |
|
|
@ -772,7 +773,7 @@ const masterParmas = ref({ |
|
|
|
const HeadButttondata = ref() |
|
|
|
const HeadButttondataBackups = ref([])// 列表头部按钮备份 |
|
|
|
// 列表-操作按钮 |
|
|
|
const buttondata = ref() |
|
|
|
// const buttondata = ref() |
|
|
|
|
|
|
|
/** 表格弹窗 */ |
|
|
|
const initModel = (schema: FormSchema[], formModel: Recordable) => { |
|
|
@ -875,13 +876,28 @@ const openDetail = async (row: any, titleName: any, titleValue: any, tableName: |
|
|
|
} |
|
|
|
HeadButttondata.value = [...HeadButttondata.value,...props.otherHeadButttonData] |
|
|
|
HeadButttondataBackups.value = [...HeadButttondata.value,...props.otherHeadButttonData] |
|
|
|
let detailButtonEdit: any = [] |
|
|
|
|
|
|
|
// if (props.buttondataTable.length > 0) { |
|
|
|
// // console.log(4445,props.buttondataTable) |
|
|
|
// buttondataTable.value.forEach(item => { |
|
|
|
// item.hide= isShowMainButton(row,item.showStatus) |
|
|
|
// }) |
|
|
|
// } |
|
|
|
// buttondata.value = [...detailButtonEdit,...detailButtonDelete,...buttondataTable.value] |
|
|
|
|
|
|
|
} finally { |
|
|
|
detailLoading.value = false |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
const buttondata = (row) => { |
|
|
|
let detailButtonEdit: any = [] |
|
|
|
let detailButtonDelete: any = [] |
|
|
|
if (props.detailButtonIsShowEdit) { |
|
|
|
// 编辑 |
|
|
|
detailButtonEdit = [ |
|
|
|
defaultButtons.mainListEditBtn({ |
|
|
|
hide: isShowMainButton(row,props.detailButtonIsShowAddStatusArray), |
|
|
|
hide: isShowMainButton(detailData.value,props.detailButtonIsShowAddStatusArray), |
|
|
|
hasPermi: props.editHasPermi |
|
|
|
}) |
|
|
|
] |
|
|
@ -890,17 +906,26 @@ const openDetail = async (row: any, titleName: any, titleValue: any, tableName: |
|
|
|
// 删除 |
|
|
|
detailButtonDelete = [ |
|
|
|
defaultButtons.mainListDeleteBtn({ |
|
|
|
hide: isShowMainButton(row,props.detailButtonIsShowAddStatusArray), |
|
|
|
hide: isShowMainButton(detailData.value,props.detailButtonIsShowAddStatusArray), |
|
|
|
hasPermi: props.deleteHasPermi |
|
|
|
}) |
|
|
|
] |
|
|
|
} |
|
|
|
buttondata.value = [...detailButtonEdit,...detailButtonDelete,...props.buttondataTable] |
|
|
|
|
|
|
|
} finally { |
|
|
|
detailLoading.value = false |
|
|
|
} |
|
|
|
if (props.buttondataTable.length > 0) { |
|
|
|
buttondataTable.value.forEach(item => { |
|
|
|
if (item.field) { |
|
|
|
item.hide = row[item.field] == '1' ? false : true |
|
|
|
} |
|
|
|
else { |
|
|
|
item.hide = isShowMainButton(row,item.showStatus) |
|
|
|
} |
|
|
|
}) |
|
|
|
} |
|
|
|
return [ |
|
|
|
...detailButtonEdit, |
|
|
|
...detailButtonDelete, |
|
|
|
...buttondataTable.value |
|
|
|
] |
|
|
|
} |
|
|
|
const updateList =async ()=>{ |
|
|
|
|
|
|
|