|
|
|
|
<script setup lang="ts">
|
|
|
|
|
import IconDeleteBtn from "@/components/atoms/button/IconDeleteBtn.vue";
|
|
|
|
|
import IconModifyBtn from "@/components/atoms/button/IconModifyBtn.vue";
|
|
|
|
|
import IconInfoBtn from "@/components/atoms/button/IconInfoBtn.vue";
|
|
|
|
|
// import FormComponent from "@/components/device/FormComponent.vue";
|
|
|
|
|
import { onMounted, ref, watch } from "vue";
|
|
|
|
|
import ViewComponent from "@/components/templates/stepconfig/ViewComponent.vue";
|
|
|
|
|
import StapComfigDialog from "@/components/atoms/organisms/StapComfigDialog.vue";
|
|
|
|
|
import { AutoflowStepService } from "@/components/service/management/AutoflowStepService";
|
|
|
|
|
// const store = commonStore();
|
|
|
|
|
|
|
|
|
|
const openView = ref(false);
|
|
|
|
|
const openModify = ref(false);
|
|
|
|
|
const tableHeader = [
|
|
|
|
|
{ label: "No", width: "5%", style: "word-break: keep-all;" },
|
|
|
|
|
{ label: "Step Name", width: "15%", style: "word-break: keep-all;" },
|
|
|
|
|
{ label: "Type", width: "10%", style: "word-break: keep-all;" },
|
|
|
|
|
{ label: "Dataset", width: "10%", style: "word-break: keep-all;" },
|
|
|
|
|
{ label: "Script", width: "10%", style: "word-break: keep-all;" },
|
|
|
|
|
{ label: "Hyper Parameters", width: "15%", style: "word-break: keep-all;" },
|
|
|
|
|
{ label: "Resource", width: "15%", style: "word-break: keep-all;" },
|
|
|
|
|
{ label: "Status", width: "5%", style: "word-break: keep-all;" },
|
|
|
|
|
{ label: "Workflow", width: "10%", style: "word-break: keep-all;" },
|
|
|
|
|
{ label: "Action", width: "5%", style: "word-break: keep-all;" },
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
const searchOptions = [
|
|
|
|
|
{ searchType: "전체", searchText: "" },
|
|
|
|
|
{ searchType: "디바이스 별칭", searchText: "deviceAlias" },
|
|
|
|
|
{ searchType: "디바이스 키", searchText: "deviceKey" },
|
|
|
|
|
{ searchType: "사용자", searchText: "userId" },
|
|
|
|
|
{ searchType: "디바이스 이름", searchText: "deviceName" },
|
|
|
|
|
{ searchType: "디바이스 모델", searchText: "deviceModel" },
|
|
|
|
|
{ searchType: "디바이스 OS", searchText: "deviceOs" },
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
const pageSizeOptions = [
|
|
|
|
|
{ text: "10 페이지", value: 10 },
|
|
|
|
|
{ text: "50 페이지", value: 50 },
|
|
|
|
|
{ text: "100 페이지", value: 100 },
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
const workflowList = ["pipeline-a", "pipeline-b", "pipeline-c"];
|
|
|
|
|
|
|
|
|
|
const data = ref({
|
|
|
|
|
params: {
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
searchType: "",
|
|
|
|
|
searchText: "",
|
|
|
|
|
},
|
|
|
|
|
results: [],
|
|
|
|
|
totalDataLength: 0,
|
|
|
|
|
pageLength: 0,
|
|
|
|
|
modalMode: "",
|
|
|
|
|
selectedData: null,
|
|
|
|
|
allSelected: false,
|
|
|
|
|
selected: [],
|
|
|
|
|
isModalVisible: false,
|
|
|
|
|
isConfirmDialogVisible: false,
|
|
|
|
|
userOption: [],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const getCodeList = () => {
|
|
|
|
|
// UserService.search(data.value.params).then((d) => {
|
|
|
|
|
// if (d.status === 200) {
|
|
|
|
|
// data.value.userOption = d.data.userList;
|
|
|
|
|
// }
|
|
|
|
|
// });
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const getData = () => {
|
|
|
|
|
// 더미 데이터: No 7 → 1
|
|
|
|
|
data.value.results = [
|
|
|
|
|
{
|
|
|
|
|
no: 7,
|
|
|
|
|
stepName: "Data Ingest",
|
|
|
|
|
type: "Preprocessing",
|
|
|
|
|
dataset: "raw_data",
|
|
|
|
|
script: "ingest.py",
|
|
|
|
|
hyperParameters: "-",
|
|
|
|
|
resource: "CPU:1, MEM:2Gi",
|
|
|
|
|
status: "success",
|
|
|
|
|
workflow: "pipeline-a",
|
|
|
|
|
deviceKey: 7,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
no: 6,
|
|
|
|
|
stepName: "Data Preprocess",
|
|
|
|
|
type: "Preprocessing",
|
|
|
|
|
dataset: "raw_data",
|
|
|
|
|
script: "preprocess.py",
|
|
|
|
|
hyperParameters: "normalize=True",
|
|
|
|
|
resource: "CPU:2, MEM:4Gi",
|
|
|
|
|
status: "success",
|
|
|
|
|
workflow: "pipeline-a",
|
|
|
|
|
deviceKey: 6,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
no: 5,
|
|
|
|
|
stepName: "Model Training",
|
|
|
|
|
type: "Training",
|
|
|
|
|
dataset: "processed_data",
|
|
|
|
|
script: "train.py",
|
|
|
|
|
hyperParameters: "lr=0.01, epochs=10",
|
|
|
|
|
resource: "GPU:1, MEM:8Gi",
|
|
|
|
|
status: "warning",
|
|
|
|
|
workflow: "pipeline-a",
|
|
|
|
|
deviceKey: 5,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
no: 4,
|
|
|
|
|
stepName: "Model Evaluation",
|
|
|
|
|
type: "Evaluation",
|
|
|
|
|
dataset: "test_data",
|
|
|
|
|
script: "evaluate.py",
|
|
|
|
|
hyperParameters: "-",
|
|
|
|
|
resource: "CPU:1, MEM:4Gi",
|
|
|
|
|
status: "success",
|
|
|
|
|
workflow: "pipeline-a",
|
|
|
|
|
deviceKey: 4,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
no: 3,
|
|
|
|
|
stepName: "Model Validation",
|
|
|
|
|
type: "Validation",
|
|
|
|
|
dataset: "test_data",
|
|
|
|
|
script: "validate.py",
|
|
|
|
|
hyperParameters: "metrics=['accuracy']",
|
|
|
|
|
resource: "CPU:1, MEM:4Gi",
|
|
|
|
|
status: "success",
|
|
|
|
|
workflow: "pipeline-a",
|
|
|
|
|
deviceKey: 3,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
no: 2,
|
|
|
|
|
stepName: "Package Model",
|
|
|
|
|
type: "Packaging",
|
|
|
|
|
dataset: "trained_model",
|
|
|
|
|
script: "package.py",
|
|
|
|
|
hyperParameters: "format='tar.gz'",
|
|
|
|
|
resource: "CPU:1, MEM:2Gi",
|
|
|
|
|
status: "success",
|
|
|
|
|
workflow: "pipeline-a",
|
|
|
|
|
deviceKey: 2,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
no: 1,
|
|
|
|
|
stepName: "Deploy",
|
|
|
|
|
type: "Deployment",
|
|
|
|
|
dataset: "package",
|
|
|
|
|
script: "deploy.py",
|
|
|
|
|
hyperParameters: "env='prod'",
|
|
|
|
|
resource: "CPU:1, MEM:2Gi",
|
|
|
|
|
status: "success",
|
|
|
|
|
workflow: "pipeline-a",
|
|
|
|
|
deviceKey: 1,
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
data.value.totalDataLength = data.value.results.length;
|
|
|
|
|
// 페이지 길이 재계산
|
|
|
|
|
if (data.value.totalDataLength % data.value.params.pageSize === 0) {
|
|
|
|
|
data.value.pageLength =
|
|
|
|
|
data.value.totalDataLength / data.value.params.pageSize;
|
|
|
|
|
} else {
|
|
|
|
|
data.value.pageLength = Math.ceil(
|
|
|
|
|
data.value.totalDataLength / data.value.params.pageSize,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const setPaginationLength = () => {
|
|
|
|
|
if (data.value.totalDataLength % data.value.params.pageSize === 0) {
|
|
|
|
|
data.value.pageLength =
|
|
|
|
|
data.value.totalDataLength / data.value.params.pageSize;
|
|
|
|
|
} else {
|
|
|
|
|
data.value.pageLength = Math.ceil(
|
|
|
|
|
data.value.totalDataLength / data.value.params.pageSize,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const saveData = (formData) => {
|
|
|
|
|
if (data.value.modalMode === "create") {
|
|
|
|
|
// DeviceService.add(formData).then((d) => {
|
|
|
|
|
// if (d.status === 200) {
|
|
|
|
|
// data.value.isModalVisible = false;
|
|
|
|
|
// store.setSnackbarMsg({
|
|
|
|
|
// text: "등록 되었습니다.",
|
|
|
|
|
// result: 200,
|
|
|
|
|
// });
|
|
|
|
|
// changePageNum(1);
|
|
|
|
|
// } else {
|
|
|
|
|
// store.setSnackbarMsg({
|
|
|
|
|
// text: d,
|
|
|
|
|
// result: 500,
|
|
|
|
|
// });
|
|
|
|
|
// }
|
|
|
|
|
// });
|
|
|
|
|
} else {
|
|
|
|
|
// DeviceService.update(formData.deviceKey, formData).then((d) => {
|
|
|
|
|
// if (d.status === 200) {
|
|
|
|
|
// data.value.isModalVisible = false;
|
|
|
|
|
// store.setSnackbarMsg({
|
|
|
|
|
// text: "수정 되었습니다.",
|
|
|
|
|
// result: 200,
|
|
|
|
|
// });
|
|
|
|
|
// changePageNum();
|
|
|
|
|
// } else {
|
|
|
|
|
// store.setSnackbarMsg({
|
|
|
|
|
// text: d,
|
|
|
|
|
// result: 500,
|
|
|
|
|
// });
|
|
|
|
|
// }
|
|
|
|
|
// });
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const removeData = (value) => {
|
|
|
|
|
let removeList = value ? value : data.value.selected;
|
|
|
|
|
const remove = (code) => {
|
|
|
|
|
// return DeviceService.delete(code).then((d) => {
|
|
|
|
|
// if (d.status !== 200) {
|
|
|
|
|
// store.setSnackbarMsg({
|
|
|
|
|
// text: d,
|
|
|
|
|
// result: 500,
|
|
|
|
|
// });
|
|
|
|
|
// }
|
|
|
|
|
// });
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (removeList.length === 1) {
|
|
|
|
|
remove(removeList[0].deviceKey).then(() => {
|
|
|
|
|
// store.setSnackbarMsg({
|
|
|
|
|
// text: "삭제되었습니다.",
|
|
|
|
|
// result: 200,
|
|
|
|
|
// });
|
|
|
|
|
changePageNum();
|
|
|
|
|
data.value.isConfirmDialogVisible = false;
|
|
|
|
|
data.value.selected = [];
|
|
|
|
|
data.value.allSelected = false;
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
Promise.all(removeList.map((item) => remove(item.deviceKey))).finally(
|
|
|
|
|
() => {
|
|
|
|
|
// store.setSnackbarMsg({
|
|
|
|
|
// text: "모두 삭제되었습니다.",
|
|
|
|
|
// result: 200,
|
|
|
|
|
// });
|
|
|
|
|
changePageNum();
|
|
|
|
|
data.value.isConfirmDialogVisible = false;
|
|
|
|
|
data.value.selected = [];
|
|
|
|
|
data.value.allSelected = false;
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleRemoveData = () => {
|
|
|
|
|
if (data.value.selected.length === 0) {
|
|
|
|
|
// store.setSnackbarMsg({
|
|
|
|
|
// text: "삭제 할 데이터를 선택해주세요. ",
|
|
|
|
|
// result: 500,
|
|
|
|
|
// });
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (data.value.allSelected || data.value.selected.length !== 1) {
|
|
|
|
|
data.value.isConfirmDialogVisible = true;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
//리스트로 삭제 할때
|
|
|
|
|
removeData(undefined);
|
|
|
|
|
};
|
|
|
|
|
const closeDetail = () => {
|
|
|
|
|
openView.value = false;
|
|
|
|
|
};
|
|
|
|
|
const changePageNum = (page) => {
|
|
|
|
|
data.value.params.pageNum = page;
|
|
|
|
|
getData();
|
|
|
|
|
};
|
|
|
|
|
const openDetailModal = (selectedItem) => {
|
|
|
|
|
data.value.selectedData = selectedItem;
|
|
|
|
|
openView.value = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleSave = ({
|
|
|
|
|
workflow,
|
|
|
|
|
stepName,
|
|
|
|
|
}: {
|
|
|
|
|
workflow: string;
|
|
|
|
|
stepName: string;
|
|
|
|
|
}) => {
|
|
|
|
|
if (data.value.selectedData) {
|
|
|
|
|
data.value.selectedData.workflow = workflow;
|
|
|
|
|
data.value.selectedData.stepName = stepName;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
const openModifyModal = (item: { workflow: string; stepName: string }) => {
|
|
|
|
|
data.value.selectedData = {
|
|
|
|
|
workflow: item.workflow,
|
|
|
|
|
stepName: item.stepName,
|
|
|
|
|
};
|
|
|
|
|
openModify.value = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const openCreateModal = () => {
|
|
|
|
|
data.value.selectedData = null;
|
|
|
|
|
data.value.modalMode = "create";
|
|
|
|
|
data.value.isModalVisible = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const closeModal = () => {
|
|
|
|
|
data.value.isModalVisible = false;
|
|
|
|
|
data.value.selectedData = null;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const getSelectedAllData = () => {
|
|
|
|
|
data.value.selected = data.value.allSelected
|
|
|
|
|
? data.value.results.map((item) => {
|
|
|
|
|
return {
|
|
|
|
|
deviceKey: item.deviceKey,
|
|
|
|
|
};
|
|
|
|
|
})
|
|
|
|
|
: [];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
getData();
|
|
|
|
|
getCodeList();
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<div class="w-100" v-if="!openView">
|
|
|
|
|
<v-container fluid class="h-100 pa-5 d-flex flex-column align-center">
|
|
|
|
|
<v-card
|
|
|
|
|
flat
|
|
|
|
|
class="bg-shades-transparent d-flex flex-column align-center justify-center w-100"
|
|
|
|
|
>
|
|
|
|
|
<v-card flat class="bg-shades-transparent w-100">
|
|
|
|
|
<v-card-item class="text-h5 font-weight-bold pt-0 pa-5 pl-0">
|
|
|
|
|
<div class="d-flex flex-row justify-start align-center">
|
|
|
|
|
<div class="text-primary">Workflows Step Config</div>
|
|
|
|
|
</div>
|
|
|
|
|
</v-card-item>
|
|
|
|
|
</v-card>
|
|
|
|
|
<v-card flat class="bg-shades-transparent w-100">
|
|
|
|
|
<v-card flat class="bg-shades-transparent mb-4">
|
|
|
|
|
<div class="d-flex justify-center flex-wrap align-center">
|
|
|
|
|
<v-responsive
|
|
|
|
|
max-width="180"
|
|
|
|
|
min-width="180"
|
|
|
|
|
class="mr-3 mt-3 mb-3"
|
|
|
|
|
>
|
|
|
|
|
<v-select
|
|
|
|
|
v-model="data.params.searchType"
|
|
|
|
|
label="검색조건"
|
|
|
|
|
density="compact"
|
|
|
|
|
:items="searchOptions"
|
|
|
|
|
item-title="searchType"
|
|
|
|
|
item-value="searchText"
|
|
|
|
|
hide-details
|
|
|
|
|
></v-select>
|
|
|
|
|
</v-responsive>
|
|
|
|
|
<v-responsive min-width="540" max-width="540">
|
|
|
|
|
<v-text-field
|
|
|
|
|
v-model="data.params.searchText"
|
|
|
|
|
label="검색어"
|
|
|
|
|
density="compact"
|
|
|
|
|
clearable
|
|
|
|
|
required
|
|
|
|
|
class="mt-3 mb-3"
|
|
|
|
|
hide-details
|
|
|
|
|
@keyup.enter="changePageNum(1)"
|
|
|
|
|
></v-text-field>
|
|
|
|
|
</v-responsive>
|
|
|
|
|
|
|
|
|
|
<div class="ml-3">
|
|
|
|
|
<v-btn
|
|
|
|
|
size="large"
|
|
|
|
|
color="primary"
|
|
|
|
|
:rounded="5"
|
|
|
|
|
@click="changePageNum(1)"
|
|
|
|
|
>
|
|
|
|
|
<v-icon> mdi-magnify</v-icon>
|
|
|
|
|
</v-btn>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</v-card>
|
|
|
|
|
|
|
|
|
|
<v-sheet
|
|
|
|
|
class="bg-shades-transparent d-flex flex-wrap align-center mb-2"
|
|
|
|
|
>
|
|
|
|
|
<v-sheet class="d-flex flex-wrap me-auto bg-shades-transparent">
|
|
|
|
|
<v-sheet
|
|
|
|
|
class="d-flex align-center mr-3 mb-2 bg-shades-transparent"
|
|
|
|
|
>
|
|
|
|
|
<v-chip color="primary"
|
|
|
|
|
>총 {{ data.totalDataLength.toLocaleString() }}개
|
|
|
|
|
</v-chip>
|
|
|
|
|
</v-sheet>
|
|
|
|
|
<v-sheet class="bg-shades-transparent">
|
|
|
|
|
<v-responsive max-width="140" min-width="140" class="mb-2">
|
|
|
|
|
<v-select
|
|
|
|
|
v-model="data.params.pageSize"
|
|
|
|
|
density="compact"
|
|
|
|
|
:items="pageSizeOptions"
|
|
|
|
|
item-title="text"
|
|
|
|
|
item-value="value"
|
|
|
|
|
variant="outlined"
|
|
|
|
|
color="primary"
|
|
|
|
|
hide-details
|
|
|
|
|
@update:model-value="changePageNum(1)"
|
|
|
|
|
></v-select>
|
|
|
|
|
</v-responsive>
|
|
|
|
|
</v-sheet>
|
|
|
|
|
</v-sheet>
|
|
|
|
|
</v-sheet>
|
|
|
|
|
|
|
|
|
|
<v-card class="rounded-lg pa-8">
|
|
|
|
|
<v-col cols="12">
|
|
|
|
|
<v-sheet>
|
|
|
|
|
<v-table
|
|
|
|
|
density="comfortable"
|
|
|
|
|
fixed-header
|
|
|
|
|
height="625"
|
|
|
|
|
col-md-12
|
|
|
|
|
col-12
|
|
|
|
|
overflow-x-auto
|
|
|
|
|
>
|
|
|
|
|
<colgroup>
|
|
|
|
|
<col style="width: 5%" />
|
|
|
|
|
<col
|
|
|
|
|
v-for="(item, i) in tableHeader"
|
|
|
|
|
:key="i"
|
|
|
|
|
:style="`width:${item.width}`"
|
|
|
|
|
/>
|
|
|
|
|
</colgroup>
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>
|
|
|
|
|
<v-checkbox
|
|
|
|
|
v-model="data.allSelected"
|
|
|
|
|
style="min-width: 36px"
|
|
|
|
|
:indeterminate="data.allSelected === true"
|
|
|
|
|
hide-details
|
|
|
|
|
@change="getSelectedAllData"
|
|
|
|
|
></v-checkbox>
|
|
|
|
|
</th>
|
|
|
|
|
<th
|
|
|
|
|
v-for="(item, i) in tableHeader"
|
|
|
|
|
:key="i"
|
|
|
|
|
class="text-center font-weight-bold"
|
|
|
|
|
:style="`${item.style}`"
|
|
|
|
|
>
|
|
|
|
|
{{ item.label }}
|
|
|
|
|
</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody class="text-body-2">
|
|
|
|
|
<tr
|
|
|
|
|
v-for="item in data.results"
|
|
|
|
|
:key="item.no"
|
|
|
|
|
class="text-center"
|
|
|
|
|
>
|
|
|
|
|
<td>
|
|
|
|
|
<v-checkbox
|
|
|
|
|
v-model="data.selected"
|
|
|
|
|
:value="{ deviceKey: item.deviceKey }"
|
|
|
|
|
hide-details
|
|
|
|
|
style="min-width: 36px"
|
|
|
|
|
/>
|
|
|
|
|
</td>
|
|
|
|
|
<td>{{ item.no }}</td>
|
|
|
|
|
<td>{{ item.stepName }}</td>
|
|
|
|
|
<td>{{ item.type }}</td>
|
|
|
|
|
<td>{{ item.dataset }}</td>
|
|
|
|
|
<td>{{ item.script }}</td>
|
|
|
|
|
<td>{{ item.hyperParameters }}</td>
|
|
|
|
|
<td>{{ item.resource }}</td>
|
|
|
|
|
<td>
|
|
|
|
|
<v-icon
|
|
|
|
|
v-if="item.status === 'success'"
|
|
|
|
|
color="success"
|
|
|
|
|
>
|
|
|
|
|
mdi-checkbox-marked-circle
|
|
|
|
|
</v-icon>
|
|
|
|
|
<v-icon v-else color="warning">
|
|
|
|
|
mdi-alert-circle
|
|
|
|
|
</v-icon>
|
|
|
|
|
</td>
|
|
|
|
|
<td>{{ item.workflow }}</td>
|
|
|
|
|
<td style="white-space: nowrap">
|
|
|
|
|
<IconInfoBtn @on-click="openDetailModal(item)" />
|
|
|
|
|
<IconModifyBtn @on-click="openModifyModal(item)" />
|
|
|
|
|
|
|
|
|
|
<!-- <IconModifyBtn @on-click="openModify = true" /> -->
|
|
|
|
|
<IconDeleteBtn
|
|
|
|
|
@on-click="
|
|
|
|
|
removeData([{ deviceKey: item.deviceKey }])
|
|
|
|
|
"
|
|
|
|
|
/>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</v-table>
|
|
|
|
|
</v-sheet>
|
|
|
|
|
<v-card-actions class="text-center mt-8 justify-center">
|
|
|
|
|
<v-pagination
|
|
|
|
|
v-model="data.params.pageNum"
|
|
|
|
|
:length="data.pageLength"
|
|
|
|
|
:total-visible="10"
|
|
|
|
|
color="primary"
|
|
|
|
|
rounded="circle"
|
|
|
|
|
@update:model-value="getData"
|
|
|
|
|
></v-pagination>
|
|
|
|
|
</v-card-actions>
|
|
|
|
|
</v-col>
|
|
|
|
|
</v-card>
|
|
|
|
|
</v-card>
|
|
|
|
|
</v-card>
|
|
|
|
|
</v-container>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="w-100" v-else>
|
|
|
|
|
<ViewComponent @close="closeDetail" />
|
|
|
|
|
</div>
|
|
|
|
|
<v-dialog v-model="openModify" max-width="600px">
|
|
|
|
|
<StapComfigDialog
|
|
|
|
|
v-model="openModify"
|
|
|
|
|
:selectedData="data.selectedData"
|
|
|
|
|
:workflowList="workflowList"
|
|
|
|
|
@save="handleSave"
|
|
|
|
|
/>
|
|
|
|
|
</v-dialog>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style scoped></style>
|