| | |
| | | gePurchaseListPage, |
| | | { |
| | | purchaseContractNumber: undefined, |
| | | approvalStatus: 2 |
| | | }, |
| | | [ |
| | | { |
| | |
| | | searchForm: { |
| | | customerName: "", |
| | | status: false, |
| | | approvalStatus: 2, |
| | | customerContractNo: undefined, // 客户合同号 |
| | | projectName: undefined, // 项目名称 |
| | | createUer: undefined, // 登记人 |
| | |
| | | <el-table-column label="项目名称" prop="projectName" width="180" show-overflow-tooltip /> |
| | | <el-table-column label="审核状态" width="140"> |
| | | <template #default="scope"> |
| | | <template v-if="scope.row.salesType !== '紧急'"> |
| | | |
| | | <el-tag |
| | | v-if="(scope.row.approveStatus ?? scope.row.approvalStatus) == 0" |
| | | type="warning" |
| | |
| | | type="info" |
| | | >已重新提交</el-tag> |
| | | <el-tag v-else type="info">-</el-tag> |
| | | </template> |
| | | |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="销售类型" width="120"> |