| | |
| | | fileType: ["jpg", "jpeg", "png", "gif", "webp", "mp4", "mov", "avi", "wmv"], |
| | | }; |
| | | |
| | | const uploadUrl = `${import.meta.env.VITE_APP_BASE_API}${uploadConfig.action}`; |
| | | const uploadUrl = computed(() => { |
| | | const type = getTabType(); |
| | | return `${import.meta.env.VITE_APP_BASE_API}${uploadConfig.action}?type=${type}`; |
| | | }); |
| | | const uploadHeaders = { |
| | | Authorization: `Bearer ${getToken()}`, |
| | | }; |
| | |
| | | showReportDialog(row); |
| | | }, |
| | | // 用户当前id |
| | | disabled: row => row.completeQuantity >= row.planQuantity || |
| | | !isCurrentUserInUserIds(row) || row.hasUnreportedMachine |
| | | // disabled: row => row.completeQuantity >= row.planQuantity || |
| | | // !isCurrentUserInUserIds(row) || row.hasUnreportedMachine |
| | | }, |
| | | { |
| | | name: "生产排产", |