|
@@ -570,6 +570,12 @@ export default {
|
|
|
handleFileExport() {
|
|
|
exportFileProcess(this.ids).then(() => {});
|
|
|
},
|
|
|
+ // 获取字典对应label
|
|
|
+ getDictLabel(value, dictLsit = []) {
|
|
|
+ return dictLsit.find((item) => {
|
|
|
+ return item.value == value;
|
|
|
+ })?.label;
|
|
|
+ },
|
|
|
},
|
|
|
};
|
|
|
</script>
|