diff --git a/.env.development b/.env.development index cee29c1..8668941 100644 --- a/.env.development +++ b/.env.development @@ -1,3 +1,5 @@ NODE_ENV = 'development' -VITE_APP_BASE_URL = 'https://ceshi-worker-task.lihaink.cn/' \ No newline at end of file +VITE_APP_BASE_URL = 'https://ceshi-worker-task.lihaink.cn/' + +# VITE_APP_BASE_URL = 'https://worker-task.lihaink.cn/' \ No newline at end of file diff --git a/src/views/company/index.vue b/src/views/company/index.vue index 331b47b..4861853 100644 --- a/src/views/company/index.vue +++ b/src/views/company/index.vue @@ -163,7 +163,11 @@ 未签约 - + 企业认证 diff --git a/src/views/finance/balance_details.vue b/src/views/finance/balance_details.vue index ec5e86d..ce09f65 100644 --- a/src/views/finance/balance_details.vue +++ b/src/views/finance/balance_details.vue @@ -100,10 +100,16 @@ label="变动类型" prop="change_type_desc" min-width="120" - /> + > + + - +
@@ -142,6 +148,31 @@ const { optionsData } = useDictOptions<{ }, }); +const getTypeColor = (type: number) => { + let color = "#333"; + switch (type) { + case 100: + color = "#f56c6c"; + break; + case 101: + color = "#f56c6c"; + break; + case 200: + color = "#409eff"; + break; + case 201: + color = "#409eff"; + break; + case 202: + color = "#67c23a"; + break; + case 203: + color = "#e6a23c"; + break; + } + return color; +}; + getLists();