feat 初始化商品类目

This commit is contained in:
lwh 2023-06-12 10:55:47 +08:00
parent 2d6ea51e00
commit 72ef192bba
5 changed files with 840 additions and 0 deletions

View File

@ -0,0 +1,49 @@
import request from '@/utils/request'
/**
* @Descripttion: 商品类目Api接口
* @version: (1.0)
* @Author: (黎文豪)
* @Date: (2023-06-12)
* @LastEditors: (黎文豪)
* @LastEditTime: (2023-06-12)
*/
/**
* 商品类目树形查询列表
* @param {查询条件} data
*/
export function goodsCategoryTreeList(query) {
return request({
url: '/business/GoodsCategory/getGoodsCategoryTreeList',
method: 'get',
params: query
})
}
// 商品类目新增或修改
export function addOrUpdateGoodsCategory(data) {
return request({
url: '/business/GoodsCategory/addOrUpdateGoodsCategory',
method: 'post',
data: data,
})
}
// 商品类目删除
export function delGoodsCategory(ids) {
return request({
url: '/business/GoodsCategory/'+ ids,
method: 'delete'
})
}
// 商品类目导出
export function exportGoodsCategory(query) {
return request({
url: 'business/GoodsCategory/exportGoodsCategory',
method: 'get',
params: query
})
}

View File

@ -0,0 +1,179 @@
<!--
* @Descripttion: (商品类目/tb_goods_category 添加弹窗)
* @version: (1.0)
* @Author: (黎文豪)
* @Date: (2023-06-12)
* @LastEditors: (黎文豪)
* @LastEditTime: (2023-06-12)
-->
<template>
<el-dialog v-model="props.modelValue" title="添加商品类目信息" width="700px" @closed="closeDialog" @open="openDialog">
<el-form ref="formRef" :model="formData" :rules="rules">
<el-row>
<el-col :lg="24">
<el-form-item :label-width="labelWidth" label="上级菜单" prop="GoodsCategoryParentGuid">
<el-cascader class="w100" :options="dataList"
:props="{ checkStrictly: true, value: 'goodsCategoryGuid', label: 'goodsCategoryName', emitPath: false }"
placeholder="请选择上级菜单" clearable v-model="formData.goodsCategoryParentGuid">
<template #default="{ node, data }">
<span>{{ data.goodsCategoryName }}</span>
<span v-if="!node.isLeaf"> ({{ data.children.length }}) </span>
</template>
</el-cascader>
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="20">
<el-col :lg="12">
<el-form-item :label-width="labelWidth" label="名称" prop="goodsCategoryName">
<el-input v-model="formData.goodsCategoryName" placeholder="请输入名称" />
</el-form-item>
</el-col>
<el-col :lg="24">
<el-form-item :label-width="labelWidth" label="图片" prop="goodsCategoryImg">
<UploadImage ref="uploadRef" v-model="formData.goodsCategoryImg" :data=imgData :limit="1" :fileSize="5"
:drag="true" />
</el-form-item>
</el-col>
<el-col :lg="12">
<el-form-item :label-width="labelWidth" label="显示状态" prop="goodsCategoryDisplayStatus">
<el-radio-group v-model="formData.goodsCategoryDisplayStatus">
<el-radio v-for="item in display_status " :key="item.dictValue"
:label="parseInt(item.dictValue)">{{ item.dictLabel }}</el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :lg="12">
<el-form-item :label-width="labelWidth" label="是否为热门" prop="goodsCategoryIsPopular">
<el-radio-group v-model="formData.goodsCategoryIsPopular">
<el-radio v-for="item in is_popular " :key="item.dictValue"
:label="parseInt(item.dictValue)">{{ item.dictLabel }}</el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :lg="12">
<el-form-item :label-width="labelWidth" label="排序" prop="productCategorySort">
<el-input-number v-model.number="formData.productCategorySort" controls-position="right" :min="0" />
</el-form-item>
</el-col>
</el-row>
</el-form>
<template #footer>
<div key="dialog-footer">
<el-button type="primary" @click="handleAddClick(formRef)">添加</el-button>
<el-button @click="handleResetClick(formRef)">重置</el-button>
</div>
</template>
</el-dialog>
</template>
<script setup>
import { reactive, ref, watch } from "vue";
import { ElMessage } from 'element-plus'
import modal from '@/plugins/modal.js'
import { goodsCategoryTreeList, addOrUpdateGoodsCategory } from '@/api/business/GoodsManager/GoodsCategorys/goodsCategory.js';
//
const openDialog = async () => {
await getdisplay_status()
await getis_popular()
await getTreeList()
}
// -
const dataList = ref([])
//
const display_status = ref([]);
//
const is_popular = ref([]);
// -
//
async function getdisplay_status() {
await proxy.getDicts('display_status').then((res) => {
display_status.value = res.data
})
}
//
async function getis_popular() {
await proxy.getDicts('is_popular').then((res) => {
is_popular.value = res.data
})
}
// -
const labelWidth = 100;
const formRef = ref();
const { proxy } = getCurrentInstance()
const emits = defineEmits(["update:modelValue"]);
const formData = reactive({
goodsCategoryDisplayStatus: 1,
goodsCategoryIsPopular: 0,
productCategorySort: 100
});
const props = defineProps({
modelValue: Boolean,
done: Function,
});
const imgData = ref({
fileDir: "GoodsCategory"
})
//
const rules = reactive({
goodsCategoryParentGuid: [{ required: true, message: "上级菜单不能为空", trigger: "blur", type: "number" }],
goodsCategoryName: [{ required: true, message: "名称不能为空", trigger: "blur" }],
goodsCategoryDisplayStatus: [{ required: true, message: "显示状态不能为空", trigger: "blur", type: "number" }],
productCategorySort: [{ required: true, message: "排序不能为空", trigger: "blur", type: "number" }],
});
// -
async function getTreeList() {
goodsCategoryTreeList().then((res) => {
if (res.code == 200) {
dataList.value = res.data
}
})
}
watch(props, async (v) => {
});
//
const handleAddClick = async (formEl) => {
if (!formEl) return;
formEl.validate(async (valid) => {
if (!valid) {
return;
}
const { code } = await addOrUpdateGoodsCategory(formData);
if (code == 200) {
modal.msgSuccess('添加成功')
closeDialog();
}
});
};
const closeDialog = () => {
handleResetClick(formRef.value);
props.done();
emits("update:modelValue", false);
};
const handleResetClick = async (formEl) => {
if (!formEl) return;
formEl.resetFields();
};
</script>

View File

@ -0,0 +1,136 @@
<!--
* @Descripttion: (商品类目/tb_goods_category 详情弹窗)
* @version: (1.0)
* @Author: (黎文豪)
* @Date: (2023-06-12)
* @LastEditors: (黎文豪)
* @LastEditTime: (2023-06-12)
-->
<template>
<el-dialog v-model="props.modelValue" title="商品类目信息详情" width="700px" @closed="closeDialog" @open="openDialog">
<el-form ref="formRef" :model="formData" :disabled="true">
<el-row>
<el-col :lg="24">
<el-form-item :label-width="labelWidth" label="上级菜单" prop="GoodsCategoryParentGuid">
<el-cascader class="w100" :options="dataList"
:props="{ checkStrictly: true, value: 'goodsCategoryGuid', label: 'goodsCategoryName', emitPath: false }"
clearable v-model="formData.goodsCategoryParentGuid">
<template #default="{ node, data }">
<span>{{ data.goodsCategoryName }}</span>
<span v-if="!node.isLeaf"> ({{ data.children.length }}) </span>
</template>
</el-cascader>
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="20">
<el-col :lg="12">
<el-form-item :label-width="labelWidth" label="名称" prop="goodsCategoryName">
<el-input v-model="formData.goodsCategoryName" placeholder="请输入名称" />
</el-form-item>
</el-col>
<el-col :lg="24">
<el-form-item :label-width="labelWidth" label="图片" prop="goodsCategoryImg">
<UploadImage ref="uploadRef" v-model="formData.goodsCategoryImg" :data=imgData :limit="1" :fileSize="5"
:drag="true" />
</el-form-item>
</el-col>
<el-col :lg="12">
<el-form-item :label-width="labelWidth" label="显示状态" prop="goodsCategoryDisplayStatus">
<el-radio-group v-model="formData.goodsCategoryDisplayStatus">
<el-radio v-for="item in display_status " :key="item.dictValue" :label="parseInt(item.dictValue)">{{
item.dictLabel }}</el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :lg="12">
<el-form-item :label-width="labelWidth" label="是否为热门" prop="goodsCategoryIsPopular">
<el-radio-group v-model="formData.goodsCategoryIsPopular">
<el-radio v-for="item in is_popular " :key="item.dictValue" :label="parseInt(item.dictValue)">{{
item.dictLabel }}</el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :lg="12">
<el-form-item :label-width="labelWidth" label="排序" prop="productCategorySort">
<el-input-number v-model.number="formData.productCategorySort" controls-position="right" :min="0" />
</el-form-item>
</el-col>
</el-row>
</el-form>
</el-dialog>
</template>
<script setup>
import { ElMessage } from 'element-plus'
import { reactive, ref, watch } from "vue";
import { goodsCategoryTreeList } from "@/api/business/GoodsManager/GoodsCategorys/goodsCategory.js";
//
const openDialog = async () => {
await getdisplay_status()
await getis_popular()
await getTreeList()
}
const formData = ref({
...props.data,
});
watch(props, async (v) => {
formData.value = v.data;
});
// -
const dataList = ref([])
//
const display_status = ref([]);
//
const is_popular = ref([]);
// -
//
async function getdisplay_status() {
await proxy.getDicts('display_status').then((res) => {
display_status.value = res.data
})
}
//
async function getis_popular() {
await proxy.getDicts('is_popular').then((res) => {
is_popular.value = res.data
})
}
//
const formRef = ref();
const labelWidth = 100;
const { proxy } = getCurrentInstance()
const props = defineProps({
modelValue: Boolean,
data: Object,
done: Function,
});
const emits = defineEmits(["update:modelValue"]);
// -
async function getTreeList() {
goodsCategoryTreeList().then((res) => {
if (res.code == 200) {
dataList.value = res.data
}
})
}
const closeDialog = () => {
emits("update:modelValue", false);
};
</script>

View File

@ -0,0 +1,176 @@
<!--
* @Descripttion: (商品类目/tb_goods_category 编辑弹窗)
* @version: (1.0)
* @Author: (黎文豪)
* @Date: (2023-06-12)
* @LastEditors: (黎文豪)
* @LastEditTime: (2023-06-12)
-->
<template>
<el-dialog v-model="props.modelValue" title="修改商品类目信息" width="700px" @closed="closeDialog" @open="openDialog">
<el-form ref="formRef" :model="formData" :rules="rules">
<el-row>
<el-col :lg="24">
<el-form-item :label-width="labelWidth" label="上级菜单" prop="GoodsCategoryParentGuid">
<el-cascader class="w100" :options="dataList"
:props="{ checkStrictly: true, value: 'goodsCategoryGuid', label: 'goodsCategoryName', emitPath: false }"
placeholder="请选择上级菜单" clearable v-model="formData.goodsCategoryParentGuid">
<template #default="{ node, data }">
<span>{{ data.goodsCategoryName }}</span>
<span v-if="!node.isLeaf"> ({{ data.children.length }}) </span>
</template>
</el-cascader>
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="20">
<el-col :lg="12">
<el-form-item :label-width="labelWidth" label="名称" prop="goodsCategoryName">
<el-input v-model="formData.goodsCategoryName" placeholder="请输入名称" />
</el-form-item>
</el-col>
<el-col :lg="24">
<el-form-item :label-width="labelWidth" label="图片" prop="goodsCategoryImg">
<UploadImage ref="uploadRef" v-model="formData.goodsCategoryImg" :data=imgData :limit="1" :fileSize="5"
:drag="true" />
</el-form-item>
</el-col>
<el-col :lg="12">
<el-form-item :label-width="labelWidth" label="显示状态" prop="goodsCategoryDisplayStatus">
<el-radio-group v-model="formData.goodsCategoryDisplayStatus">
<el-radio v-for="item in display_status " :key="item.dictValue" :label="parseInt(item.dictValue)">{{
item.dictLabel }}</el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :lg="12">
<el-form-item :label-width="labelWidth" label="是否为热门" prop="goodsCategoryIsPopular">
<el-radio-group v-model="formData.goodsCategoryIsPopular">
<el-radio v-for="item in is_popular " :key="item.dictValue" :label="parseInt(item.dictValue)">{{
item.dictLabel }}</el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<el-col :lg="12">
<el-form-item :label-width="labelWidth" label="排序" prop="productCategorySort">
<el-input-number v-model.number="formData.productCategorySort" controls-position="right" :min="0" />
</el-form-item>
</el-col>
</el-row>
</el-form>
<template #footer>
<div class="dialog-footer">
<el-button type="primary" @click="handleEditClick(formRef)">编辑</el-button>
<el-button @click="handleResetClick(formRef)">重置</el-button>
</div>
</template>
</el-dialog>
</template>
<script setup>
import { ElMessage } from 'element-plus'
import modal from '@/plugins/modal.js'
import { reactive, ref, watch } from "vue";
import { goodsCategoryTreeList, addOrUpdateGoodsCategory } from "@/api/business/GoodsManager/GoodsCategorys/goodsCategory.js";
//
const openDialog = async () => {
await getdisplay_status()
await getis_popular()
await getTreeList()
}
const formData = ref({
...props.data,
});
watch(props, async (v) => {
formData.value = v.data;
});
//
const dataList = ref([])
//
const display_status = ref([]);
//
const is_popular = ref([]);
// -
//
async function getdisplay_status() {
await proxy.getDicts('display_status').then((res) => {
display_status.value = res.data
})
}
//
async function getis_popular() {
await proxy.getDicts('is_popular').then((res) => {
is_popular.value = res.data
})
}
// -
const props = defineProps({
modelValue: Boolean,
data: Object,
done: Function,
});
const labelWidth = 100;
const formRef = ref();
const { proxy } = getCurrentInstance()
const emits = defineEmits(["update:modelValue"]);
const imgData = ref({
fileDir: "GoodsCategory"
})
//
const rules = reactive({
goodsCategoryParentGuid: [{ required: true, message: "上级菜单不能为空", trigger: "blur", type: "number" }],
goodsCategoryName: [{ required: true, message: "名称不能为空", trigger: "blur" }],
goodsCategoryDisplayStatus: [{ required: true, message: "显示状态不能为空", trigger: "blur", type: "number" }],
productCategorySort: [{ required: true, message: "排序不能为空", trigger: "blur", type: "number" }],
});
// -
async function getTreeList() {
goodsCategoryTreeList().then((res) => {
if (res.code == 200) {
dataList.value = res.data
}
})
}
//
const handleEditClick = async (formEl) => {
if (!formEl) return;
formEl.validate(async (valid) => {
if (!valid) {
return;
}
const { code } = await addOrUpdateGoodsCategory(formData.value);
if (code == 200) {
modal.msgSuccess('修改成功')
closeDialog();
}
});
}
const handleResetClick = async (formEl) => {
if (!formEl) return;
formEl.resetFields();
}
const closeDialog = () => {
props.done();
emits("update:modelValue", false);
};
</script>

View File

@ -0,0 +1,300 @@
<!--
* @Descripttion: (商品类目/tb_goods_category)
* @version: (1.0)
* @Author: (黎文豪)
* @Date: (2023-06-12)
* @LastEditors: (黎文豪)
* @LastEditTime: (2023-06-12)
-->
<template>
<div class="app-container">
<el-row :gutter="24">
<!-- 搜索框 queryParams.需要搜索的字段 -->
<el-form :model="queryParams" label-position="left" style="margin:15px;" inline ref="queryForm" v-show="showSearch"
@submit.prevent>
<el-form-item label="名称" prop="goodsCategoryName">
<el-input v-model="queryParams.goodsCategoryName" placeholder="请输入名称" clearable @keyup.enter="handleQuery"/>
</el-form-item>
<el-form-item label="显示状态" prop="goodsCategoryDisplayStatus">
<el-radio-group v-model="queryParams.goodsCategoryDisplayStatus">
<el-radio v-for="item in display_status " :key="item.dictValue" :label="item.dictValue">{{item.dictLabel}}</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item label="是否为热门" prop="goodsCategoryIsPopular">
<el-radio-group v-model="queryParams.goodsCategoryIsPopular">
<el-radio v-for="item in is_popular " :key="item.dictValue" :label="item.dictValue">{{item.dictLabel}}</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item>
<el-button icon="search" type="primary" @click="handleQuery">{{ $t('btn.search') }}</el-button>
<el-button icon="refresh" @click="resetQuery">{{ $t('btn.reset') }}</el-button>
</el-form-item>
</el-form>
</el-row>
<!-- 工具按钮 -->
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button type="info" plain icon="sort" @click="toggleExpandAll">展开/折叠</el-button>
</el-col>
<el-col :span="1.5">
<el-button type="primary" v-hasPermi="['business:goodscategory:addOrUpdateKey']" plain icon="plus" @click="AddDialogVisible = true">
{{ $t('btn.add') }}
</el-button>
</el-col>
<el-col :span="1.5">
<el-button type="danger" :disabled="multiple" v-hasPermi="['business:goodscategory:delete']" plain icon="delete" @click="handleDelete">
{{ $t('btn.delete') }}
</el-button>
</el-col>
<el-col :span="1.5">
<el-button type="warning" plain icon="download" @click="handleExport" v-hasPermi="['business:goodscategory:export']">
{{ $t('btn.export') }}
</el-button>
</el-col>
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<!-- 表格渲染 prop="对应的字段"-->
<el-table v-loading="loading" :data="dataList" ref="tableRef" highlight-current-row @selection-change="handleSelectionChange" v-if="refreshTable" :default-expand-all="isExpandAll" row-key="goodsCategoryGuid" :tree-props="{ children: 'children', hasChildren: 'hasChildren' }">
<el-table-column type="selection" width="50" align="center" />
<el-table-column prop="goodsCategoryName" label="名称" align="center" :show-overflow-tooltip="true" />
<el-table-column prop="goodsCategoryImg" label="图片" align="center">
<template #default="scope">
<el-image preview-teleported :hide-on-click-modal="true" lazy class="table-td-thumb" fit="contain" :src="scope.row.goodsCategoryImg.split(',')[0]" :preview-src-list="scope.row.goodsCategoryImg.split(',')">
<div><el-icon :size="15"><document /></el-icon></div>
</el-image>
</template>
</el-table-column>
<el-table-column prop="goodsCategoryDisplayStatus" label="显示状态" align="center">
<template #default="scope">
<dict-tag :options=" display_status " :value="scope.row.goodsCategoryDisplayStatus" />
</template>
</el-table-column>
<el-table-column prop="goodsCategoryIsPopular" label="是否为热门" align="center">
<template #default="scope">
<dict-tag :options=" is_popular " :value="scope.row.goodsCategoryIsPopular" />
</template>
</el-table-column>
<el-table-column prop="productCategorySort" label="排序" align="center" sortable />
<el-table-column label="操作" width="350" fixed="right">
<template #default="scope">
<el-button type="primary" size="small" icon="edit" @click="handleUpdate(scope.row)"
v-hasPermi="['business:goodscategory:addOrUpdateKey']">编辑</el-button>
<el-button type="danger" size="small" icon="delete" @click="handleDelete(scope.row)"
v-hasPermi="['business:goodscategory:delete']">删除</el-button>
<el-button size="small" icon="view" @click="handleDetail(scope.row)">查看</el-button>
</template>
</el-table-column>
</el-table>
</div>
<!-- 添加 -->
<AddDialog v-model="AddDialogVisible" :done="() => resetQuery()"></AddDialog>
<!-- 编辑 -->
<EditDialog v-model="EditDialogVisible" :data="EditDialogRow" :done="() => resetQuery()"></EditDialog>
<!-- 详情 -->
<DetailDialog v-model="DetailDialogVisible" :data="DetailDialogRow" :done="() => resetQuery()"></DetailDialog>
</template>
<script setup name="goodscategory">
import { ElMessageBox } from 'element-plus'
import modal from '@/plugins/modal.js'
import { exportGoodsCategory, goodsCategoryTreeList , delGoodsCategory } from '@/api/business/GoodsManager/GoodsCategorys/goodsCategory.js'
import AddDialog from "./components/AddDialog.vue";
import EditDialog from "./components/EditDialog.vue";
import DetailDialog from "./components/DetailDialog.vue";
const AddDialogVisible = ref(false);
const EditDialogVisible = ref(false);
const EditDialogRow = ref({});
const DetailDialogVisible = ref(false);
const DetailDialogRow = ref({});
const { proxy } = getCurrentInstance()
// categoryId
const ids = ref([])
//
const single = ref(true)
//
const multiple = ref(true)
//
const showSearch = ref(true)
//
const dataList = ref([])
//
const total = ref(0)
//
const loading = ref(true)
//
const isExpandAll = ref(false)
const refreshTable = ref(true)
const data = reactive({
form: {},
queryParams: {
},
})
const { queryParams } = toRefs(data)
//
//
//
const display_status = ref([]);
async function getdisplay_status() {
await proxy.getDicts('display_status').then((res) => {
display_status.value = res.data
})
}
getdisplay_status()
//
const is_popular = ref([]);
async function getis_popular() {
await proxy.getDicts('is_popular').then((res) => {
is_popular.value = res.data
})
}
getis_popular()
//
//
function selectChild(str, tag, res, parent) {
isExpandAll.value = true
for (let item of tag) {
if (item.goodsCategoryName.indexOf(str) !== -1) {
if (parent) {
res.push(parent)
} else {
res.push(item)
}
} else if (item.children && item.children.length) {
selectChild(str, item.children, res, parent || item)
}
}
}
//
function getList() {
loading.value = true
goodsCategoryTreeList(queryParams.value).then((res) => {
if (res.code == 200) {
loading.value = false
if (queryParams.value.goodsCategoryName == undefined) {
isExpandAll.value = false
dataList.value = res.data
} else {
dataList.value = []
selectChild(queryParams.value.goodsCategoryName, res.data, dataList.value)
}
total.value = res.data.totalNum
}
})
}
// /
function toggleExpandAll() {
refreshTable.value = false
isExpandAll.value = !isExpandAll.value
nextTick(() => {
refreshTable.value = true
})
}
// goodsCategoryList(queryParams.value).then((res) => {
// if (res.code == 200) {
// loading.value = false;
// dataList.value = res.data.result;
// total.value = res.data.totalNum;
// }
// });
//
function handleSelectionChange(selection) {
ids.value = selection.map((item) => item.goodsCategoryId)
single.value = selection.length != 1
multiple.value = !selection.length
}
/** 重置查询操作 */
function resetQuery() {
proxy.resetForm('queryForm')
handleQuery()
}
/** 搜索按钮操作 */
function handleQuery() {
getList()
}
/** 删除按钮操作 */
function handleDelete(row) {
const Ids = row.goodsCategoryId || ids.value
ElMessageBox.confirm("是否确认删除?", "系统提示", {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: "warning",
})
.then(function () {
return delGoodsCategory(Ids)
})
.then(() => {
handleQuery()
modal.msgSuccess("删除成功")
})
.catch(() => { })
}
/** 导出按钮操作 */
function handleExport(row) {
const Ids = row.goodsCategoryId || ids.value
const name = ref("所有")
if (Ids.length != 0) {
let str = ''
for (const key in Ids) {
str += Ids[key] + ','
}
str = str.slice(0, str.length - 1)
queryParams.value.ids = str
name.value = "选中"
}
ElMessageBox.confirm('是否确认导出' + name.value + '数据?', '警告', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
})
.then(function () {
return exportGoodsCategory(queryParams.value)
})
.then((response) => {
proxy.download(response.data.path)
})
}
//
function handleUpdate(row) {
EditDialogVisible.value = true
EditDialogRow.value = row
}
//
function handleDetail(row) {
DetailDialogVisible.value = true
DetailDialogRow.value = row
}
handleQuery()
</script>