@@ -221,8 +221,7 @@ export const PRINT_PLAN_STATUS = {
NEW: "新建",
READY: "就绪",
PRINTING: "印刷中",
- PRINT_FINISH: "印刷完成",
- END: "已结束",
+ FINISH: "印刷完成",
};
// 印刷计划相关
export const DRAW_RULE_TYPE = {
@@ -245,10 +244,10 @@ export const PRINT_CONTENT_TYPE = {
// 印刷任务状态
export const PRINT_TASK_STATUS = {
+ CREATING: "生成中",
WAITING: "待印刷",
- EXPIRED: "已过期",
FINISH: "已完成",
CANCEL: "作废",
@@ -202,7 +202,7 @@
((scope.row.status === 'STAGE' && !scope.row.enable) ||
scope.row.status === 'DRAFT') &&
scope.row.createId === curUserId &&
- checkPrivilege('link', 'edit')
+ checkPrivilege('link', 'assign')
"
class="btn-primary"
type="text"
@@ -106,7 +106,7 @@
:loading="loading"
@click="toExport"
>
- 导出查询结果
+ 导出
</el-button>
<el-button
v-if="checkPrivilege('button', 'export')"
@@ -358,8 +358,7 @@
v-if="
- (scope.row.status === 'END' ||
- scope.row.status === 'PRINT_FINISH') &&
+ (scope.row.status === 'END' || scope.row.status === 'FINISH') &&
checkPrivilege('link', 'normal')
:class="scope.row.normal ? 'btn-danger' : 'btn-primary'"