Browse Source

update proof status

master
Jason Chuang 1 year ago
parent
commit
5a190d7d34
2 changed files with 6 additions and 6 deletions
  1. +2
    -2
      src/utils/ComboData.js
  2. +4
    -4
      src/utils/statusUtils/ProofStatus.js

+ 2
- 2
src/utils/ComboData.js View File

@@ -66,6 +66,6 @@ export const proofPrice = [

export const proofStatus = [
{ key: 0, labelCht: '全部', label: 'All', type: 'all' },
{ key: 1, labelCht: '已回覆', label:'Replyed', type: 'T' }, // submitted and reviewed
{ key: 2, labelCht: '未回覆', label:'Not reply yet', type: 'F' },
{ key: 1, labelCht: '已回覆', label:'Replied', type: 'T' }, // submitted and reviewed
{ key: 2, labelCht: '未回覆', label:'Pending Reply', type: 'F' },
];

+ 4
- 4
src/utils/statusUtils/ProofStatus.js View File

@@ -1,9 +1,9 @@
import {getStatusTag} from "utils/statusUtils/Base";

const confirm = {color:"#22a13f", eng:"Confirm", cht:"可以付印"}
const unable = {color:"#d9372b", eng:"Unable to print", cht:"未能付印"}
const timeOut = {color:"#8a8784", eng:"Timed out", cht:"回覆逾時"}
const noReply = {color:"#f5a83d", eng:"No reply yet", cht:"未回覆"}
const confirm = {color:"#22a13f", eng:"Confirmed", cht:"可以付印"}
const unable = {color:"#d9372b", eng:"Re-proofing", cht:"未能付印"}
const timeOut = {color:"#8a8784", eng:"No Reply", cht:"回覆逾時"}
const noReply = {color:"#f5a83d", eng:"Pending Reply", cht:"未回覆"}

export function getStatus_Cht(params) {
let status = getStatus(params);


Loading…
Cancel
Save