rt-sim-training-client/src/scripts/GlobalPlugin.js

102 lines
3.1 KiB
JavaScript
Raw Normal View History

2019-07-25 10:30:30 +08:00
import Vue from 'vue';
import QueryListPage from '@/components/QueryListPage/QueryListPage';
import DataForm from '@/components/QueryListPage/DataForm';
import TurnbackBar from '@/components/TurnbackBar';
import ConstConfig from '@/scripts/ConstConfig';
import Dictionary from '@/scripts/DictionaryData';
import Theme from '@/jmapNew/theme/factory';
2019-07-02 16:29:52 +08:00
// 全局组件
2019-07-25 10:30:30 +08:00
Vue.component('DataForm', DataForm);
Vue.component('QueryListPage', QueryListPage);
Vue.component('TurnbackBar', TurnbackBar);
2019-07-02 16:29:52 +08:00
Vue.prototype.$ConstSelect = (function() {
2019-11-18 12:28:08 +08:00
ConstConfig.ConstSelect.translate = function(value, codeName) {
if (codeName) {
const obj = this[codeName].filter(function(item) {
return item.value === value;
})[0];
return obj && obj.label;
}
};
return ConstConfig.ConstSelect;
2019-07-25 10:30:30 +08:00
})();
2019-07-02 16:29:52 +08:00
2019-07-25 10:30:30 +08:00
Vue.prototype.$Dictionary = Dictionary;
Vue.prototype.__windowResizeFlag = false;
2019-07-02 16:29:52 +08:00
Vue.prototype.$addWindowResizeListener = function(cb) {
2019-11-18 12:28:08 +08:00
window.addEventListener('resize', function() {
if (!Vue.__windowResizeFlag) {
Vue.__windowResizeFlag = true;
setTimeout(function() {
Vue.__windowResizeFlag = false;
cb();
}, 100);
}
});
2019-07-25 10:30:30 +08:00
};
Vue.prototype.$theme = new Theme();
Vue.prototype.$messageBox = function(msge) {
2019-11-18 12:28:08 +08:00
if (this.$confirm) {
this.$confirm(`${msge || this.$t('global.processFailure')}`, this.$t('global.tips'), {
confirmButtonText: this.$t('global.confirm'),
type: 'warning',
showCancelButton: false,
center: true
}).then(() => {
}).catch(() => {
});
}
};
Vue.prototype.$convertField = function(fieldValue, enumList, converFormat, isList = false) {
2019-11-18 12:28:08 +08:00
const arr = [];
if (enumList && converFormat && converFormat.length >= 2) {
const value = converFormat[0];
const label = converFormat[1];
if (isList) {
enumList.forEach((element, i) => {
fieldValue.forEach((v) => {
if (v == element[value]) {
arr.push(element[label]);
2019-11-18 12:28:08 +08:00
}
});
});
} else {
for (let i = 0; i < enumList.length; i++) {
if ('' + fieldValue == '' + enumList[i][value]) {
2019-11-18 12:28:08 +08:00
return enumList[i][label];
}
}
}
}
2019-11-18 12:28:08 +08:00
return isList ? arr : '';
};
2019-08-13 16:59:38 +08:00
Vue.prototype.$convertSpecifiedField = function(dataDict, enumList, key, value, fieldList) {
2019-11-18 12:28:08 +08:00
if (dataDict && enumList && fieldList && enumList.length && fieldList.length) {
fieldList.forEach(field => {
enumList.forEach(elem => {
if (elem[key] === dataDict[field]) {
dataDict[field] = elem[value];
}
});
});
}
2019-10-22 13:41:23 +08:00
};
2019-08-13 16:59:38 +08:00
Vue.prototype.$convertList = function(FromList, ToList, checktypeFunction) {
2019-11-18 12:28:08 +08:00
if (FromList) {
ToList.length = 0;
FromList.forEach(elem => {
if (checktypeFunction(elem)) {
ToList.push({ value: elem.code, label: elem.name });
}
});
}
};