fix: 通用minxin文件引入

developVue
wx-jincw 1 month ago
parent c551f7f777
commit a724e29dac

@ -19,6 +19,8 @@ import './permission' // permission control
import { getDicts } from "@/api/system/dict/data";
import { getConfigKey } from "@/api/system/config";
import { parseTime, resetForm, addDateRange, selectDictLabel, selectDictLabels, handleTree } from "@/utils/bs";
import CommonMixin from "./mixins/common-mixin";
// 分页组件
import Pagination from "@/components/Pagination";
// 自定义表格工具组件
@ -58,6 +60,8 @@ Vue.component('FileUpload', FileUpload)
Vue.component('ImageUpload', ImageUpload)
Vue.component('ImagePreview', ImagePreview)
Vue.mixin(CommonMixin);
Vue.use(directive)
Vue.use(plugins)
Vue.use(VueMeta)

@ -1,40 +0,0 @@
const DictMixin = {
dicts: [],
computed: {
dict() {
return this.$store.getters.dict;
}
},
created() {
if (this.$options.dicts) {
const noDicts = [];
const hasDicts = [];
this.$options.dicts.forEach((type) => {
if (!this.dict[type]) {
noDicts.push(type);
} else {
hasDicts.push(type);
}
});
if (hasDicts.length > 0 && this.MXDictFetched) {
this.MXDictFetched(hasDicts);
}
if (noDicts.length === 0) {
return;
}
this.$store.dispatch('dict/fetchDict', {
types: noDicts,
success: () => {
if (this.MXDictFetched) {
this.MXDictFetched(noDicts);
}
}
});
}
}
}
export default DictMixin;
Loading…
Cancel
Save