|
|
|
@ -19,6 +19,7 @@ import {findMenuById,permissionMapping} from "@/utils/menuTreePermission.js" |
|
|
|
import {useMessageStore} from '@/store/index.js' |
|
|
|
// 国际化 |
|
|
|
import { useI18n } from 'vue-i18n' |
|
|
|
import { has } from 'lodash' |
|
|
|
const {t} = useI18n(); |
|
|
|
|
|
|
|
// ------------------ ICONS ------------------ |
|
|
|
@ -158,15 +159,19 @@ const selectStatusById = () => { |
|
|
|
status.push(0); |
|
|
|
} |
|
|
|
|
|
|
|
//地区财务审核 |
|
|
|
if (hasPermission(permissionMapping.area_finance_collection_approved)) { |
|
|
|
status.push(1); |
|
|
|
} |
|
|
|
//和地区负责人审核 |
|
|
|
if (hasPermission(permissionMapping.area_manager_collection_approved)) { |
|
|
|
status.push(7); |
|
|
|
} |
|
|
|
|
|
|
|
//地区客服收款 |
|
|
|
if (hasPermission(permissionMapping.collection_area_submit)) { |
|
|
|
status.push(2); |
|
|
|
} |
|
|
|
// 地区负责人收款待审核 |
|
|
|
// else if (hasPermission(permissionMapping.area_manager_collection_pending)) { |
|
|
|
// status.push(0); |
|
|
|
// } |
|
|
|
|
|
|
|
|
|
|
|
// ===== 退款流程状态 ===== |
|
|
|
// 地区财务退款审核 |
|
|
|
|