Browse Source

HL-5445根据asnNumber判断是否显示查看质检报告按钮

hella_online_20240821
zhaoyiran 3 months ago
parent
commit
f465a2fbee
  1. 12
      src/views/qms/inspectionJob/index.vue

12
src/views/qms/inspectionJob/index.vue

@ -238,6 +238,14 @@ const isShowMainButton = (row, val) => {
}
}
const isShowMainButton3 = (row) => {
if (row.asnNumber) {
return false
} else {
return true
}
}
//
const isShowMainButton2 = (row, val) => {
if (val.indexOf(row.isStaging) > -1) {
@ -283,7 +291,9 @@ const butttondata = (row) => {
hasPermi: 'qms:inspection-job-main:execute'
}), //
defaultButtons.mainListPackageBtn(null), //
defaultButtons.mainListPlanCheckQualityReportBtn({}) //
defaultButtons.mainListPlanCheckQualityReportBtn({
hide: isShowMainButton3(row)
}) //
]
}
const listTableRef = ref()

Loading…
Cancel
Save