This commit is contained in:
Melete
2024-03-04 11:01:48 +08:00
джерело 6df8c3bcc1 3b6483f013
коміт 3aa3361559
19 змінених файлів з 682 додано та 113 видалено

@@ -611,7 +611,8 @@ export default {
const response = await this.$axios('/base/core-equipment/listAll');
this.equipmentList = response.data || [];
const equipmentOptions = (response.data || [])
.filter((item) => (type == 'special-equipment' ? item.special : true))
// .filter((item) => (type == 'special-equipment' ? item.special : true))
.filter((item) => item.special == true)
.map((item) => ({
label: item.name,
value: item.id,