import { SCENE, api } from '@/config/index'; export default { namespaced: true, state: { apiPath: '/ptccsens/v1.0/finance', // 财务条apiPath }, getters: { // 完整路径 fullPath({ apiPath }) { return `${api.baseUrl[SCENE]}${apiPath}`; }, }, mutations: { /** * 设置apiPath * @param {object} state * @param {string} path 路径可能随着业务、项目变化 */ setApiPath(state, path) { state.apiPath = path; }, }, actions: {}, };