Merge branch 'feature/assetMgmt'

This commit is contained in:
koko 2024-11-04 16:08:33 +08:00
commit 3c876607ef
20 changed files with 582 additions and 87 deletions

View File

@ -11,6 +11,7 @@ export const DELETE_ASSET_ITEM_API = `/AssetManage/DeleteAsset`;
export const GET_ASSET_FLOOR_LIST_API = `/AssetManage/GetFloorList`;
export const POST_ASSET_FLOOR_API = `/AssetManage/SaveFloor`;
export const DELETE_ASSET_FLOOR_API = `/AssetManage/DeleteFloor`;
export const GET_ASSET_IOT_LIST_API = `/AssetManage/GetIOTList`;
export const GET_ASSET_SUB_POINT_API = `/AssetManage/GetSubPoint`;

View File

@ -7,6 +7,7 @@ import {
GET_ASSET_SINGLE_API,
GET_ASSET_FLOOR_LIST_API,
POST_ASSET_FLOOR_API,
DELETE_ASSET_FLOOR_API,
GET_ASSET_IOT_LIST_API,
DELETE_ASSET_ITEM_API,
POST_ASSET_SINGLE_API,
@ -143,6 +144,15 @@ export const postAssetFloor = async (formData) => {
});
};
export const deleteAssetFloor = async (formData) => {
const res = await instance.post(DELETE_ASSET_FLOOR_API, formData);
return apihandler(res.code, res.data, {
msg: res.msg,
code: res.code,
});
};
export const getAssetIOTList = async (sub_system_tag, points) => {
const res = await instance.post(GET_ASSET_IOT_LIST_API, {
sub_system_tag,

View File

@ -10,7 +10,7 @@ const props = defineProps({
svg: Object,
getCoordinate: {
type: Function,
default: null
default: null,
},
});
@ -22,7 +22,7 @@ async function updateSvg(svg, option) {
if (!chart.value && dom.value && svg) {
init();
} else {
clear()
clear();
}
axios.get(svg.path).then(({ data }) => {
echarts.registerMap(svg.full_name, { svg: data });
@ -30,24 +30,33 @@ async function updateSvg(svg, option) {
if (props.getCoordinate) {
chart.value.getZr().on("click", function (params) {
var pixelPoint = [params.offsetX, params.offsetY];
var dataPoint = chart.value.convertFromPixel({ geoIndex: 0 }, pixelPoint);
var dataPoint = chart.value.convertFromPixel(
{ geoIndex: 0 },
pixelPoint
);
currentClickPosition.value = dataPoint;
props.getCoordinate(dataPoint);
const updatedData = option.series.data
.filter(
(point) => !(point.itemStyle && point.itemStyle.color === "#0000FF")
)
.concat({
value: dataPoint, //
itemStyle: { color: "#0000FF" }, //
});
chart.value.setOption({
series: {
data: [dataPoint],
data: updatedData,
},
});
});
}
});
console.log("updateSvg", svg.path);
}
function clear() {
chart.value.clear()
chart.value.clear();
}
function init() {

View File

@ -0,0 +1,35 @@
<script setup>
import Checkbox from "@/components/customUI/Checkbox.vue";
import { twMerge } from "tailwind-merge";
import { computed, defineProps, onMounted, ref, watch } from "vue";
const props = defineProps({
item: Object,
selectedId: String,
menuCheck:Function,
});
</script>
<template>
<li>
<!-- 項目無子層級 -->
<a v-if="item.children.length === 0">
<Checkbox
:title="item.name"
:checked="selectedId === item.id"
@click="() => menuCheck(item.id)"
/>
</a>
<!-- 項目有子層級 -->
<details v-else open>
<summary>{{ item.name }}</summary>
<ul>
<li v-for="(child, index) in item.children" :key="index">
<Menu :item="child" :selectedId="selectedId" :menuCheck="menuCheck"></Menu>
</li>
</ul>
</details>
</li>
</template>
<style lang="css" scoped></style>

View File

@ -161,12 +161,12 @@ watch(
<div :class="withStyle ? 'content-box' : 'py-5'">
<div class="content-decoration">
<slot name="beforeTable"></slot>
<form ref="form " class="overflow-x-auto">
<form ref="form" class="overflow-x-auto">
<table
:class="
twMerge(
withStyle ? 'table' : 'table border',
currentDataSource.length === 0 ? 'h-96' : ''
currentDataSource.length === 0 ? 'h-28' : ''
)
"
>

View File

@ -3,9 +3,6 @@ import { getBuildings } from "@/apis/building";
import { onMounted, ref } from "vue";
import useBuildingStore from "@/stores/useBuildingStore";
// const buildings = ref(null);
// const selectedBuilding = ref(null);
const store = useBuildingStore();
const getBui = async () => {
@ -15,6 +12,10 @@ const getBui = async () => {
store.selectedBuilding = res?.data[0];
};
const selectBuilding = (bui) => {
store.selectedBuilding = bui;
};
onMounted(() => {
getBui();
});
@ -25,10 +26,10 @@ onMounted(() => {
<div
tabindex="0"
role="button"
class="text-white ml-8 text-lg font-semiLight "
class="text-white ml-8 text-lg font-semiLight"
>
{{ store.selectedBuilding?.full_name }}
<font-awesome-icon :icon="['fas', 'angle-down']" class="ml-1"/>
<font-awesome-icon :icon="['fas', 'angle-down']" class="ml-1" />
</div>
<ul
tabindex="0"
@ -38,6 +39,7 @@ onMounted(() => {
class="text-white my-1 text-base"
v-for="bui in store.buildings"
:key="bui.building_tag"
@click="selectBuilding(bui)"
>
{{ bui.full_name }}
</li>

View File

@ -41,6 +41,7 @@ export default function useForgeSprite() {
console.log("onSpriteClicked", event.target);
console.log("onSpriteClicked", data);
// modalContent.value = data;
// debugger;
if (data) {
getCurrentInfoModalData(
event,

View File

@ -38,6 +38,9 @@ instance.interceptors.response.use(
function (error) {
// Any status codes that falls outside the range of 2xx cause this function to trigger
// Do something with response error
if (response && response.status === 401) {
window.location.href = "/logout";
}
return Promise.reject(error);
}
);

View File

@ -1,6 +1,6 @@
<script setup>
import { getAssetList, getAssetSingle, deleteAssetItem } from "@/apis/asset";
import { onMounted, ref, watch, inject, computed } from "vue";
import { onMounted, ref, watch, inject, provide, computed } from "vue";
import useSearchParam from "@/hooks/useSearchParam";
import AssetTableAddModal from "./AssetTableAddModal.vue";
import { getOperationCompanyList } from "@/apis/operation";
@ -20,6 +20,7 @@ const getCompany = async () => {
};
const floors = ref([]);
const totalCoordinates = ref({});
const getFloors = async () => {
const res = await getAssetFloorList();
floors.value = res.data[0]?.floors.map((d) => ({ ...d, key: d.floor_guid }));
@ -27,8 +28,18 @@ const getFloors = async () => {
const tableData = ref([]);
const getAssetData = async () => {
totalCoordinates.value = {}; // totalCoordinates
const res = await getAssetList(searchParams.value?.subSys_id);
if (res.isSuccess) {
// device_coordinate
res.data.forEach(d => {
const floorGuid = d.floor_guid;
if (!totalCoordinates.value[floorGuid]) {
totalCoordinates.value[floorGuid] = [];
}
totalCoordinates.value[floorGuid].push(d.device_coordinate);
});
tableData.value = res.data.map((d) => ({
...d,
key: d.id,
@ -90,10 +101,10 @@ const columns = computed(() => [
key: "buying_date",
sort: true,
},
{
title: t("assetManagement.oriFile"),
key: "oriFile",
},
// {
// title: t("assetManagement.oriFile"),
// key: "oriFile",
// },
{
title: t("assetManagement.created_at"),
key: "created_at",
@ -158,6 +169,10 @@ const remove = async (id) => {
getAssetData();
}
};
provide("asset_table_data", {
totalCoordinates,
});
</script>
<template>

View File

@ -3,6 +3,7 @@ import { ref, inject, onBeforeMount, onMounted, watch } from "vue";
import * as yup from "yup";
import "yup-phone-lite";
import AssetTableModalLeftInfoIoT from "./AssetTableModalLeftInfoIoT.vue";
import AssetTableModalLeftInfoGraph from "./AssetTableModalLeftInfoGraph.vue";
import { getOperationCompanyList } from "@/apis/operation";
import useSearchParam from "@/hooks/useSearchParam";
import OperationTableModal from "@/views/operation/components/OperationTableModal.vue";
@ -200,7 +201,8 @@ const openCompanyAddModal = () => {
{{ $t("button.add") }}
</button>
</div>
<Upload
<AssetTableModalLeftInfoGraph />
<!-- <Upload
name="oriFile"
:fileList="formState.oriFile"
:getFileList="updateFileList"
@ -209,7 +211,7 @@ const openCompanyAddModal = () => {
:baseUrl="FILE_BASEURL"
>
<template #topLeft>{{ $t("assetManagement.oriFile") }}</template>
</Upload>
</Upload> -->
<AssetTableModalLeftInfoIoT />
</template>

View File

@ -0,0 +1,173 @@
<script setup>
import { getSideBar, getGraphData } from "@/apis/graph";
import { ref, computed, inject, watch, onMounted } from "vue";
import { useI18n } from "vue-i18n";
import Menu from "@/components/customUI/Menu.vue";
const { t } = useI18n();
const FILE_BASEURL = import.meta.env.VITE_FILE_API_BASEURL;
const { formState } = inject("asset_table_modal_form");
const columns = computed(() => [
{
title: t("assetManagement.index"),
key: "index",
width: 150,
},
{
title: t("graphManagement.oriOrgName"),
key: "oriOrgName",
},
]);
const graphData = ref([]);
const menuData = ref([]);
const selectedId = ref(null);
const dataSource = ref([]);
const getMenuData = async () => {
const res = await getSideBar();
graphData.value = res.data;
console.log(" graphData", graphData.value);
};
const getData = async (id) => {
const res = await getGraphData(id);
if (res.isSuccess) {
dataSource.value = res.data.map((d) => ({ ...d, key: d.id }));
}
};
const buildMenuTree = (data) => {
const map = new Map();
const menu = [];
data.forEach((item) => {
map.set(item.id, { ...item, children: [] });
});
data.forEach((item) => {
const parent = map.get(item.parent_id);
if (item.parent_id === 0) {
menu.push(map.get(item.id));
} else {
if (parent) {
parent.children.push(map.get(item.id));
}
}
});
return menu;
};
const openModal = () => {
asset_add_graph_item.showModal();
};
const onOk = () => {
formState.value.graph_tree_id = selectedId.value;
onCancel();
};
const onCancel = () => {
selectedId.value = null;
asset_add_graph_item.close();
};
const menuCheck = (id) => {
selectedId.value = id;
};
watch(selectedId, (newId) => {
if (newId) {
getData(newId);
} else {
getData(formState.value.graph_tree_id);
}
});
watch(
formState,
(newValue) => {
if (newValue?.graph_tree_id) {
selectedId.value = newValue?.graph_tree_id;
} else {
selectedId.value = null;
dataSource.value = [];
}
},
{
immediate: true,
}
);
onMounted(async () => {
await getMenuData();
menuData.value = buildMenuTree(graphData.value);
});
</script>
<template>
<div class="flex flex-col mt-8 col-span-2">
<div class="flex justify-between items-center">
<span class="label-text-alt text-lg">{{
$t("graphManagement.title")
}}</span>
<button
type="button"
class="btn btn-sm btn-success"
@click.stop.prevent="openModal"
>
{{ $t("assetManagement.choose") }}
</button>
</div>
<Table :columns="columns" :dataSource="dataSource" :withStyle="false">
<template #bodyCell="{ record, column, index }">
<template v-if="column.key === 'index'">{{ index + 1 }}</template>
<template v-else-if="column.key === 'oriOrgName'">
<a
:href="`${FILE_BASEURL}/upload/graph_manage/${record.oriSavName}`"
target="_blank"
class="btn-link no-underline hover:no-underline :focus:outline-0"
>
{{ record.oriOrgName }}
</a>
</template>
</template>
</Table>
</div>
<Modal
id="asset_add_graph_item"
:title="t('graphManagement.title')"
:onCancel="onCancel"
width="500"
>
<template #modalContent>
<ul class="menu bg-base-200 rounded-box text-lg w-full mt-3">
<li v-for="(item, index) in menuData" :key="index">
<Menu
:item="item"
:selectedId="selectedId"
:menuCheck="menuCheck"
></Menu>
</li>
</ul>
</template>
<template #modalAction>
<button
type="reset"
class="btn btn-outline-success mr-2"
@click.prevent="onCancel"
>
{{ $t("button.cancel") }}
</button>
<button
type="submit"
class="btn btn-outline-success"
@click.prevent="onOk"
>
{{ $t("button.submit") }}
</button>
</template></Modal
>
</template>
<style lang="scss" scoped></style>

View File

@ -1,18 +1,24 @@
<script setup>
import { onMounted, ref, inject, onBeforeMount, watch, computed } from "vue";
import EffectScatter from "@/components/chart/EffectScatter.vue";
import { getAssetFloorList, postAssetFloor } from "@/apis/asset";
import {
getAssetFloorList,
postAssetFloor,
deleteAssetFloor,
} from "@/apis/asset";
import useFormErrorMessage from "@/hooks/useFormErrorMessage";
import useBuildingStore from "@/stores/useBuildingStore";
import * as yup from "yup";
import { twMerge } from "tailwind-merge";
import { useI18n } from "vue-i18n";
const { t } = useI18n();
const FILE_BASEURL = import.meta.env.VITE_FILE_API_BASEURL;
const { totalCoordinates } = inject("asset_table_data");
const { updateRightFields, formErrorMsg, formState } = inject(
"asset_table_modal_form"
);
const store = useBuildingStore();
let schema = {
floor_guid: yup.string().nullable(true),
device_coordinate: yup.string().nullable(true),
@ -27,41 +33,56 @@ onBeforeMount(() => {
const asset_floor_chart = ref(null);
const currentFloor = ref(null);
const defaultOption = (map, data = []) => ({
tooltip: {},
geo: {
tooltip: {
show: false,
const selectedOption = ref("add");
const defaultOption = (map, data = []) => {
//
const formattedData = data.map((coordinate) => {
const coordString = JSON.stringify(coordinate);
return {
name: coordString,
value: coordinate,
itemStyle: {
color: coordString === formState.value.device_coordinate ? "#0000FF" : "#b02a02",
},
};
});
return {
tooltip: {},
geo: {
tooltip: {
show: false,
},
map,
roam: true,
},
map,
roam: true, //
},
series: {
type: "effectScatter",
coordinateSystem: "geo",
geoIndex: 0,
symbolSize: 10,
itemStyle: {
color: "#b02a02",
series: {
type: "effectScatter",
coordinateSystem: "geo",
geoIndex: 0,
symbolSize: 10,
encode: {
tooltip: 2,
},
data: formattedData, // 使
},
encode: {
tooltip: 2,
},
data,
},
});
};
};
watch(currentFloor, (newValue) => {
if (newValue?.floor_map_name) {
const coordinates = totalCoordinates.value[newValue.floor_guid] || [];
const parsedCoordinates = coordinates.map((coord) => {
return JSON.parse(coord);
});
asset_floor_chart.value.updateSvg(
{
full_name: newValue?.floor_map_name,
path: `${FILE_BASEURL}/${newValue?.floor_map_url}.svg`,
},
defaultOption(newValue?.floor_map_name, [
formState.value.device_coordinate
? JSON.parse(formState.value.device_coordinate)
: [],
])
defaultOption(newValue?.floor_map_name, parsedCoordinates)
);
}
});
@ -99,23 +120,39 @@ onMounted(() => {
// modal
const openModal = () => {
if (selectedOption.value === "add") {
FloorFormState.value = {
full_name: "",
floorFile: [],
};
} else if (selectedOption.value === "edit") {
const floor = floors.value.find(
(f) => f.floor_guid === formState.value.floor_guid
);
if (floor) {
console.log("floor", floor);
FloorFormState.value = {
full_name: floor.full_name,
floorFile: [],
};
}
}
asset_add_floor.showModal();
};
const form = ref(null);
const FloorFormState = ref({
building_tag: "F3",
full_name: "",
floorFile: [],
});
const floorScheme = yup.object({
building_tag: yup.string().required(t("button.required")),
full_name: yup.string().required(t("button.required")),
floorFile: yup.array(),
});
const updateFileList = (files) => {
console.log("file", files);
FloorFormState.value.floorFile = files;
};
@ -127,9 +164,9 @@ const {
} = useFormErrorMessage(floorScheme);
const onOk = async () => {
const value = handleSubmit(floorScheme, FloorFormState.value);
const formData = new FormData(form.value);
formData.append("floor_guid", "");
formData.append("floor_guid", currentFloor.value.floor_guid);
formData.append("building_tag", store.selectedBuilding.building_tag);
formData.append("initMapName", FloorFormState.value.floorFile[0].name);
formData.append("mapFile", FloorFormState.value.floorFile[0]);
formData.delete("floorFile");
@ -143,25 +180,34 @@ const onOk = async () => {
onCancel();
}
};
const onDelete = async () => {
console.log("guild", formState.value.floor_guid);
const res = await deleteAssetFloor({
floor_guid: formState.value.floor_guid,
});
if (res.isSuccess) {
getFloors();
}
};
const onCancel = () => {
FloorFormState.value = {
building_tag: "F3",
full_name: "",
floorFile: [],
};
asset_add_floor.close();
};
</script>
<template>
<!-- 平面圖 -->
<div class="flex items-center justify-between mb-5">
<div class="flex justify-start">
<div className="join">
<Select
:value="formState"
selectClass="border-info focus-within:border-info"
selectClass="border-info focus-within:border-info rounded-r-none"
name="floor_guid"
Attribute="full_name"
:options="floors"
@ -169,12 +215,23 @@ const onCancel = () => {
>
<template #topLeft>{{ $t("assetManagement.floor") }}</template>
</Select>
<button type="button" class="btn btn-add mt-10 ml-5" @click="openModal">
<font-awesome-icon :icon="['fas', 'plus']" />
{{ $t("assetManagement.add_floor") }}
<select
v-model="selectedOption"
className="select border-info focus-within:border-info join-item mt-11"
>
<option value="add" selected>{{ $t("button.add") }}</option>
<option value="edit">{{ $t("button.edit") }}</option>
<option value="delete">{{ $t("button.delete") }}</option>
</select>
<button
type="button"
class="btn btn-success join-item mt-11"
@click="selectedOption === 'delete' ? onDelete() : openModal()"
:aria-label="$t('button.submit')"
>
{{ $t("button.submit") }}
</button>
</div>
<!-- <button type="button" class="btn btn-success mt-10">確認座標</button> -->
</div>
<div class="relative">
<EffectScatter

View File

@ -73,11 +73,11 @@ const getProgressValue = (group) => {
<img src="@ASSET/img/state-ul.svg" />
<div class="box">
<div class="mark">
<span>{{ group[0].value }}</span>
<span class="w-10">{{ group[0].value }}</span>
<span
><img class="w-[50px]" src="@ASSET/img/state-ul-text.svg" />
</span>
<span>{{ group[1].value }}</span>
<span class="w-10">{{ group[1].value }}</span>
</div>
<progress
class="progress [&::-webkit-progress-value]:bg-red-600 [&::-moz-progress-bar]:bg-red-600"

View File

@ -43,9 +43,9 @@ const specOptions = computed(() => {
return options.value.find(({ selected }) => selected)?.spec || [];
});
onMounted(() => {
getOption();
});
// onMounted(() => {
// getOption();
// });
const openModal = () => {
graph_add_item.showModal();

View File

@ -130,8 +130,8 @@ const getNewFilename = async (e) => {
});
getData(res);
} else if (
e.target.value !== "" &&
e.target.value !== selectedItem.value?.title
e?.target.value !== "" &&
e?.target.value !== selectedItem.value?.title
) {
//
const res = await updateSideBarTreeName({

View File

@ -5,12 +5,15 @@ import SystemFloorBar from './components/SystemFloorBar.vue';
import useBuildingStore from "@/stores/useBuildingStore";
import ForgeForSystem from "@/components/forge/ForgeForSystem.vue";
import { getSystemDevices, getSystemRealTime } from "@/apis/system";
import { getOperationCompanyList } from "@/apis/operation";
import { getAssetSingle, getAssetFloorList } from "@/apis/asset";
import SystemSubBar from './components/SystemSubBar.vue';
import SystemInfoModal from './components/SystemInfoModal.vue';
import SystemMain from "./SystemMain.vue";
import SystemMode from './components/SystemMode.vue';
import SystemFloor from './SystemFloor.vue';
import { twMerge } from 'tailwind-merge';
import dayjs from "dayjs";
const buildingStore = useBuildingStore()
@ -30,9 +33,21 @@ const statusList = computed(() => {
return null
})
const raw_data = ref([])
const data = ref([]) // filter data
const route = useRoute()
const raw_data = ref([]);
const data = ref([]); // filter data
const route = useRoute();
const floors = ref([]);
const companyOptions = ref([]);
const getFloors = async () => {
const res = await getAssetFloorList();
floors.value = res.data[0]?.floors.map((d) => ({ ...d, key: d.floor_guid }));
};
const getCompany = async () => {
const res = await getOperationCompanyList();
companyOptions.value = res.data.map((d) => ({ ...d, key: d.id }));
};
const getData = async () => {
if (!route.params.sub_system_id) return
@ -90,7 +105,7 @@ const updateDataByGas = (gas) => {
} else {
update_values = raw_data.value.map((d) => (
{
...d,
...d,
device_list: d.device_list.filter(({ points }) => points.some(({ points: p }) => p === gas))
}
))
@ -100,23 +115,24 @@ const updateDataByGas = (gas) => {
}
watch(() => buildingStore.selectedBuilding, (newBuilding) => {
if (Boolean(newBuilding)) {
if (Boolean(newBuilding)) {
getData()
}
}
}, {
deep: true,
deep: true,
})
watch(() => route.params.sub_system_id, (newRoute, oldRoute) => {
if (buildingStore.selectedBuilding && newRoute !== oldRoute) {
if (buildingStore.selectedBuilding && newRoute !== oldRoute) {
getData()
}
})
onMounted(() => {
getData()
})
getFloors();
getCompany();
getData();
});
const currentFloor = ref(null);
@ -142,6 +158,7 @@ watch(subscribeData, (newValue) => {
provide("system_deviceList", { data, subscribeData, currentFloor, updateCurrentFloor, updateDataByGas, realtimeData })
const selectedDevice = ref(null);
const selectedDeviceCog = ref({});
// const selectedDevice = computed(() => {
// return {
// ...currentInfo.value,
@ -152,13 +169,35 @@ const selectedDevice = ref(null);
const isMobile = (e) => {
return e.pointerType !== "mouse" && e.type !== "click"; // is mobile
};
const getCurrentInfoModalData = (e, position, value) => {
const getCurrentInfoModalData = async (e, position, value) => {
if (value.main_id) {
const res = await getAssetSingle(value.main_id);
if (res.isSuccess) {
selectedDeviceCog.value = {
...res.data,
key: res.data.id,
floor: floors.value.find(
({ floor_guid }) => res.data.floor_guid === floor_guid
)?.full_name,
company: companyOptions.value.find(
({ id }) => res.data.operation_id === id
)?.name,
buying_date: res.data?.buying_date
? dayjs(res.data.buying_date).format("YYYY-MM-DD")
: "",
created_at: res.data?.created_at
? dayjs(res.data.created_at).format("YYYY-MM-DD")
: "",
};
}
}
const mobile = isMobile(e);
selectedDevice.value = {
initPos: { left: `50%`, top: `50%` },
value,
isMobile: mobile,
};;
};
document.getElementById('system_info_modal').showModal();
};
@ -169,7 +208,7 @@ const clearSelectedDeviceInfo = () => {
selectedDevice.value.value = null;
}
provide("system_selectedDevice", { selectedDeviceRealtime, selectedDevice, getCurrentInfoModalData, clearSelectedDeviceInfo })
provide("system_selectedDevice", { selectedDeviceRealtime, selectedDevice, getCurrentInfoModalData, clearSelectedDeviceInfo, selectedDeviceCog, })
</script>

View File

@ -24,7 +24,7 @@ const fitToView = (forge_dbid) => {
<p class="title">{{ d.full_name }}</p>
<div class="grid grid-cols-3 gap-5">
<div class="col-auto relative" v-for="device in d.device_list" :key="device.device_guid">
<div class="item" @click="() => fitToView(device.forge_dbid)">
<div class="item h-full">
<div class="left h-full flex flex-wrap justify-center">
<div class="sec02 w-full">
<img v-if="device.device_image_url" :src="device.device_image_url" alt="" class="w-8 h-8">
@ -34,7 +34,7 @@ const fitToView = (forge_dbid) => {
<div class="flex justify-between w-full self-end">
<div class="sec03">
<span class="w-5 h-5 rounded-full" :style="{ backgroundColor: device.device_normal_color }"></span>
<span class="mx-2">{{ $t("system.status") }}</span>
<span class="mx-2">{{ $t("system.status") }}:</span>
<span>{{ device.device_status }}</span>
</div>
<button class="btn-text border-0 "

View File

@ -1,5 +1,71 @@
<script setup></script>
<script setup>
import { computed, inject, watch, ref } from "vue";
import { useI18n } from "vue-i18n";
const { t } = useI18n();
const { selectedDeviceCog } = inject("system_selectedDevice");
const tableData = ref({});
<template>Cog</template>
watch(
selectedDeviceCog,
(newValue) => {
if (newValue) {
tableData.value = newValue;
} else {
tableData.value = {};
}
},
{ immediate: true }
);
</script>
<style lang="scss" scoped></style>
<template>
<table class="table">
<tbody>
<tr>
<td>{{ $t("assetManagement.device_number") }}</td>
<td>{{ tableData.device_number }}</td>
</tr>
<tr>
<td>{{ $t("assetManagement.device_name") }}</td>
<td>{{ tableData.full_name }}</td>
</tr>
<tr>
<td>{{ $t("assetManagement.floor") }}</td>
<td>{{ tableData.floor }}</td>
</tr>
<tr>
<td>{{ $t("assetManagement.device_coordinate") }}</td>
<td>{{ tableData.device_coordinate }}</td>
</tr>
<tr>
<td>{{ $t("assetManagement.brand_and_modal") }}</td>
<td>{{ tableData.brand }} / {{ tableData.device_model }}</td>
</tr>
<tr>
<td>{{ t("assetManagement.company_and_contact") }}</td>
<td>
{{ tableData.company?.name }} /
{{ tableData.company?.contact_person }}
</td>
</tr>
<tr>
<td>{{ t("assetManagement.buying_date") }}</td>
<td>{{ tableData.buying_date }}</td>
</tr>
<tr>
<td>{{ t("assetManagement.created_at") }}</td>
<td>{{ tableData.created_at }}</td>
</tr>
</tbody>
</table>
</template>
<style lang="scss" scoped>
td {
border: 1px solid #ddd
}
td:first-child {
font-weight: bold;
}
</style>

View File

@ -2,6 +2,7 @@
import { defineProps, inject, ref, watch } from "vue";
import SystemInfoModalDesktop from "./SystemInfoModalDesktop.vue";
import SystemInfoModalCog from "./SystemInfoModalCog.vue";
import SystemInfoModalImage from "./SystemInfoModalImage.vue";
import { twMerge } from "tailwind-merge";
@ -12,6 +13,7 @@ const currentTab = ref("desktop");
const tabs = {
desktop: SystemInfoModalDesktop,
cog: SystemInfoModalCog,
image: SystemInfoModalImage
};
const changeOpenKey = (key) => {
@ -34,6 +36,10 @@ const onCancel = () => {
<font-awesome-icon :icon="['fas', 'desktop']" size="lg"
:class="twMerge(currentTab === 'desktop' ? 'text-success' : 'text-[#a5abb1]')" />
</Button>
<Button type="link" class="btn-link btn-text-without-border px-2" @click="() => changeOpenKey('image')">
<font-awesome-icon :icon="['fas', 'image']" size="lg"
:class="twMerge(currentTab === 'image' ? 'text-success' : 'text-[#a5abb1]')" />
</Button>
<Button type="link" class="btn-link btn-text-without-border px-2" @click="() => changeOpenKey('cog')">
<font-awesome-icon :icon="['fas', 'cog']" size="lg"
:class="twMerge(currentTab === 'cog' ? 'text-success' : 'text-[#a5abb1]')" />

View File

@ -0,0 +1,76 @@
<script setup>
import { computed, inject, watch, ref } from "vue";
import { useI18n } from "vue-i18n";
const { t } = useI18n();
const FILE_BASEURL = import.meta.env.VITE_FILE_API_BASEURL;
const { selectedDeviceCog } = inject("system_selectedDevice");
const imgData = ref([]);
watch(
selectedDeviceCog,
(newValue) => {
if (newValue) {
imgData.value = newValue.oriFile.map(file => file.file_url);
} else {
imgData.value = [];
}
},
{ immediate: true }
);
</script>
<template>
<a-carousel arrows class="mt-5 shadow-lg">
<template #prevArrow>
<div class="custom-slick-arrow" style="left: 10px; z-index: 1">
<font-awesome-icon
:icon="['fas', 'chevron-left']"
size="lg"
class="text-[#1b1b1b]"
/>
</div>
</template>
<template #nextArrow>
<div class="custom-slick-arrow" style="right: 10px">
<font-awesome-icon
:icon="['fas', 'chevron-right']"
size="lg"
class="text-[#1b1b1b]"
/>
</div>
</template>
<div v-for="(url, index) in imgData" :key="index">
<img :src="`${FILE_BASEURL}/${url}`" alt="Image" />
</div>
</a-carousel>
</template>
<style scoped>
/* For demo */
:deep(.slick-slide) {
text-align: center;
background: #c5c5c5;
height: 400px;
overflow: hidden;
}
:deep(.slick-arrow.custom-slick-arrow) {
width: 25px;
height: 25px;
font-size: 25px;
transition: ease all 0.3s;
opacity: 0.3;
z-index: 1;
}
:deep(.slick-arrow.custom-slick-arrow:before) {
display: none;
}
:deep(.slick-arrow.custom-slick-arrow:hover) {
color: #fff;
opacity: 0.5;
}
:deep(.slick-slide img) {
margin: auto;
}
</style>