服务器管理与模型管理页面优化
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
6ad28f9b23
commit
11146d41eb
@ -1,288 +1,299 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="68px">
|
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="68px">
|
||||||
<el-form-item label="模型名" prop="modelName">
|
<el-form-item label="名称" prop="modelName">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="queryParams.modelName"
|
v-model="queryParams.modelName"
|
||||||
placeholder="请输入模型名"
|
placeholder="请输入名称"
|
||||||
clearable
|
clearable
|
||||||
@keyup.enter="handleQuery"
|
@keyup.enter="handleQuery"
|
||||||
/>
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
||||||
|
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
|
||||||
|
<el-row :gutter="10" class="mb8">
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
plain
|
||||||
|
icon="Plus"
|
||||||
|
@click="handleAdd"
|
||||||
|
v-hasPermi="['cert:modelInfo:add']"
|
||||||
|
>新增</el-button>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="success"
|
||||||
|
plain
|
||||||
|
icon="Edit"
|
||||||
|
:disabled="single"
|
||||||
|
@click="handleUpdate"
|
||||||
|
v-hasPermi="['cert:modelInfo:edit']"
|
||||||
|
>修改</el-button>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="danger"
|
||||||
|
plain
|
||||||
|
icon="Delete"
|
||||||
|
:disabled="multiple"
|
||||||
|
@click="handleDelete"
|
||||||
|
v-hasPermi="['cert:modelInfo:remove']"
|
||||||
|
>删除</el-button>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="warning"
|
||||||
|
plain
|
||||||
|
icon="Download"
|
||||||
|
@click="handleExport"
|
||||||
|
v-hasPermi="['cert:modelInfo:export']"
|
||||||
|
>导出</el-button>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
plain
|
||||||
|
icon="Refresh"
|
||||||
|
@click="handleRefresh"
|
||||||
|
v-hasPermi="['cert:serverInfo:refresh']"
|
||||||
|
>刷新缓存</el-button>
|
||||||
|
</el-col>
|
||||||
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
||||||
|
</el-row>
|
||||||
|
|
||||||
|
<el-table v-loading="loading" :data="modelInfoList" @selection-change="handleSelectionChange">
|
||||||
|
<el-table-column type="selection" width="55" align="center" />
|
||||||
|
<el-table-column label="ID" align="center" prop="id" />
|
||||||
|
<el-table-column label="名称" align="center" prop="modelName" />
|
||||||
|
<el-table-column label="价格" align="center" prop="modelPrice" />
|
||||||
|
<el-table-column label="预扣数" align="center" prop="modelPrepayment" />
|
||||||
|
<el-table-column label="状态标志" align="center" prop="status">
|
||||||
|
<template #default="scope">
|
||||||
|
<dict-tag :options="sys_normal_disable" :value="scope.row.status"/>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||||
|
<template #default="scope">
|
||||||
|
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['cert:modelInfo:edit']">修改</el-button>
|
||||||
|
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['cert:modelInfo:remove']">删除</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
|
||||||
|
<pagination
|
||||||
|
v-show="total>0"
|
||||||
|
:total="total"
|
||||||
|
v-model:page="queryParams.pageNum"
|
||||||
|
v-model:limit="queryParams.pageSize"
|
||||||
|
@pagination="getList"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<!-- 添加或修改模型管理对话框 -->
|
||||||
|
<el-dialog :title="title" v-model="open" width="500px" append-to-body>
|
||||||
|
<el-form ref="modelInfoRef" :model="form" :rules="rules" label-width="80px">
|
||||||
|
<el-form-item label="名称" prop="modelName">
|
||||||
|
<el-input v-model="form.modelName" placeholder="请输入名称" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="价格" prop="modelPrice">
|
||||||
|
<el-input v-model="form.modelPrice" placeholder="请输入价格" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="预扣数" prop="modelPrepayment">
|
||||||
|
<el-input v-model="form.modelPrepayment" placeholder="请输入预扣token数" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item label="状态标志" prop="status">
|
||||||
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
<el-radio-group v-model="form.status">
|
||||||
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
<el-radio
|
||||||
|
v-for="dict in sys_normal_disable"
|
||||||
|
:key="dict.value"
|
||||||
|
:label="dict.value"
|
||||||
|
>{{dict.label}}</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="删除标志" prop="delFlag">
|
||||||
|
<el-radio-group v-model="form.delFlag">
|
||||||
|
<el-radio
|
||||||
|
v-for="dict in sys_del_flag"
|
||||||
|
:key="dict.value"
|
||||||
|
:label="dict.value"
|
||||||
|
>{{dict.label}}</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
<template #footer>
|
||||||
<el-row :gutter="10" class="mb8">
|
<div class="dialog-footer">
|
||||||
<el-col :span="1.5">
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||||||
<el-button
|
<el-button @click="cancel">取 消</el-button>
|
||||||
type="primary"
|
</div>
|
||||||
plain
|
</template>
|
||||||
icon="Plus"
|
</el-dialog>
|
||||||
@click="handleAdd"
|
</div>
|
||||||
v-hasPermi="['cert:modelInfo:add']"
|
</template>
|
||||||
>新增</el-button>
|
|
||||||
</el-col>
|
<script setup name="ModelInfo">
|
||||||
<el-col :span="1.5">
|
import { listModelInfo, getModelInfo, delModelInfo, addModelInfo, updateModelInfo, refreshModelInfo } from "@/api/cert/modelInfo";
|
||||||
<el-button
|
|
||||||
type="success"
|
const { proxy } = getCurrentInstance();
|
||||||
plain
|
const { sys_del_flag, sys_normal_disable } = proxy.useDict('sys_del_flag', 'sys_normal_disable');
|
||||||
icon="Edit"
|
|
||||||
:disabled="single"
|
const modelInfoList = ref([]);
|
||||||
@click="handleUpdate"
|
const open = ref(false);
|
||||||
v-hasPermi="['cert:modelInfo:edit']"
|
const loading = ref(true);
|
||||||
>修改</el-button>
|
const showSearch = ref(true);
|
||||||
</el-col>
|
const ids = ref([]);
|
||||||
<el-col :span="1.5">
|
const single = ref(true);
|
||||||
<el-button
|
const multiple = ref(true);
|
||||||
type="danger"
|
const total = ref(0);
|
||||||
plain
|
const title = ref("");
|
||||||
icon="Delete"
|
|
||||||
:disabled="multiple"
|
const data = reactive({
|
||||||
@click="handleDelete"
|
form: {},
|
||||||
v-hasPermi="['cert:modelInfo:remove']"
|
queryParams: {
|
||||||
>删除</el-button>
|
pageNum: 1,
|
||||||
</el-col>
|
pageSize: 10,
|
||||||
<el-col :span="1.5">
|
modelName: null,
|
||||||
<el-button
|
},
|
||||||
type="warning"
|
rules: {
|
||||||
plain
|
modelName: [
|
||||||
icon="Download"
|
{ required: true, message: "名称不能为空", trigger: "blur" }
|
||||||
@click="handleExport"
|
],
|
||||||
v-hasPermi="['cert:modelInfo:export']"
|
modelPrice: [
|
||||||
>导出</el-button>
|
{ required: true, message: "价格不能为空", trigger: "blur" }
|
||||||
</el-col>
|
],
|
||||||
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
modelPrepayment: [
|
||||||
</el-row>
|
{ required: true, message: "预扣token数不能为空", trigger: "blur" }
|
||||||
|
],
|
||||||
<el-table v-loading="loading" :data="modelInfoList" @selection-change="handleSelectionChange">
|
status: [
|
||||||
<el-table-column type="selection" width="55" align="center" />
|
{ required: true, message: "状态标志不能为空", trigger: "change" }
|
||||||
<el-table-column label="序号" align="center" prop="id" />
|
],
|
||||||
<el-table-column label="状态" align="center" prop="status">
|
delFlag: [
|
||||||
<template #default="scope">
|
{ required: true, message: "删除标志不能为空", trigger: "change" }
|
||||||
<dict-tag :options="sys_normal_disable" :value="scope.row.status"/>
|
],
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column label="备注" align="center" prop="remark" />
|
|
||||||
<el-table-column label="模型名" align="center" prop="modelName" />
|
|
||||||
<el-table-column label="模型价格" align="center" prop="modelPrice" />
|
|
||||||
<el-table-column label="模型预支付" align="center" prop="modelPrepayment" />
|
|
||||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
||||||
<template #default="scope">
|
|
||||||
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['cert:modelInfo:edit']">修改</el-button>
|
|
||||||
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['cert:modelInfo:remove']">删除</el-button>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
</el-table>
|
|
||||||
|
|
||||||
<pagination
|
|
||||||
v-show="total>0"
|
|
||||||
:total="total"
|
|
||||||
v-model:page="queryParams.pageNum"
|
|
||||||
v-model:limit="queryParams.pageSize"
|
|
||||||
@pagination="getList"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<!-- 添加或修改模型管理对话框 -->
|
|
||||||
<el-dialog :title="title" v-model="open" width="500px" append-to-body>
|
|
||||||
<el-form ref="modelInfoRef" :model="form" :rules="rules" label-width="80px">
|
|
||||||
<el-form-item label="状态" prop="status">
|
|
||||||
<el-radio-group v-model="form.status">
|
|
||||||
<el-radio
|
|
||||||
v-for="dict in sys_normal_disable"
|
|
||||||
:key="dict.value"
|
|
||||||
:label="dict.value"
|
|
||||||
>{{dict.label}}</el-radio>
|
|
||||||
</el-radio-group>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="删除标志" prop="delFlag">
|
|
||||||
<el-input v-model="form.delFlag" placeholder="请输入删除标志" />
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="备注" prop="remark">
|
|
||||||
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="模型名" prop="modelName">
|
|
||||||
<el-input v-model="form.modelName" placeholder="请输入模型名" />
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="模型价格" prop="modelPrice">
|
|
||||||
<el-input v-model="form.modelPrice" placeholder="请输入模型价格" />
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="模型预支付" prop="modelPrepayment">
|
|
||||||
<el-input v-model="form.modelPrepayment" placeholder="请输入模型预支付" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-form>
|
|
||||||
<template #footer>
|
|
||||||
<div class="dialog-footer">
|
|
||||||
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
||||||
<el-button @click="cancel">取 消</el-button>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
</el-dialog>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script setup name="ModelInfo">
|
|
||||||
import { listModelInfo, getModelInfo, delModelInfo, addModelInfo, updateModelInfo } from "@/api/cert/modelInfo";
|
|
||||||
|
|
||||||
const { proxy } = getCurrentInstance();
|
|
||||||
const { sys_normal_disable } = proxy.useDict('sys_normal_disable');
|
|
||||||
|
|
||||||
const modelInfoList = ref([]);
|
|
||||||
const open = ref(false);
|
|
||||||
const loading = ref(true);
|
|
||||||
const showSearch = ref(true);
|
|
||||||
const ids = ref([]);
|
|
||||||
const single = ref(true);
|
|
||||||
const multiple = ref(true);
|
|
||||||
const total = ref(0);
|
|
||||||
const title = ref("");
|
|
||||||
|
|
||||||
const data = reactive({
|
|
||||||
form: {},
|
|
||||||
queryParams: {
|
|
||||||
pageNum: 1,
|
|
||||||
pageSize: 10,
|
|
||||||
modelName: null,
|
|
||||||
},
|
|
||||||
rules: {
|
|
||||||
status: [
|
|
||||||
{ required: true, message: "状态不能为空", trigger: "change" }
|
|
||||||
],
|
|
||||||
delFlag: [
|
|
||||||
{ required: true, message: "删除标志不能为空", trigger: "blur" }
|
|
||||||
],
|
|
||||||
createBy: [
|
|
||||||
{ required: true, message: "创建者不能为空", trigger: "blur" }
|
|
||||||
],
|
|
||||||
updateBy: [
|
|
||||||
{ required: true, message: "更新者不能为空", trigger: "blur" }
|
|
||||||
],
|
|
||||||
modelName: [
|
|
||||||
{ required: true, message: "模型名不能为空", trigger: "blur" }
|
|
||||||
],
|
|
||||||
modelPrice: [
|
|
||||||
{ required: true, message: "模型价格不能为空", trigger: "blur" }
|
|
||||||
],
|
|
||||||
modelPrepayment: [
|
|
||||||
{ required: true, message: "模型预支付不能为空", trigger: "blur" }
|
|
||||||
]
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
const { queryParams, form, rules } = toRefs(data);
|
|
||||||
|
|
||||||
/** 查询模型管理列表 */
|
|
||||||
function getList() {
|
|
||||||
loading.value = true;
|
|
||||||
listModelInfo(queryParams.value).then(response => {
|
|
||||||
modelInfoList.value = response.rows;
|
|
||||||
total.value = response.total;
|
|
||||||
loading.value = false;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// 取消按钮
|
|
||||||
function cancel() {
|
|
||||||
open.value = false;
|
|
||||||
reset();
|
|
||||||
}
|
|
||||||
|
|
||||||
// 表单重置
|
|
||||||
function reset() {
|
|
||||||
form.value = {
|
|
||||||
id: null,
|
|
||||||
status: null,
|
|
||||||
delFlag: null,
|
|
||||||
createBy: null,
|
|
||||||
createTime: null,
|
|
||||||
updateBy: null,
|
|
||||||
updateTime: null,
|
|
||||||
remark: null,
|
|
||||||
modelName: null,
|
|
||||||
modelPrice: null,
|
|
||||||
modelPrepayment: null
|
|
||||||
};
|
|
||||||
proxy.resetForm("modelInfoRef");
|
|
||||||
}
|
|
||||||
|
|
||||||
/** 搜索按钮操作 */
|
|
||||||
function handleQuery() {
|
|
||||||
queryParams.value.pageNum = 1;
|
|
||||||
getList();
|
|
||||||
}
|
|
||||||
|
|
||||||
/** 重置按钮操作 */
|
|
||||||
function resetQuery() {
|
|
||||||
proxy.resetForm("queryRef");
|
|
||||||
handleQuery();
|
|
||||||
}
|
}
|
||||||
|
});
|
||||||
// 多选框选中数据
|
|
||||||
function handleSelectionChange(selection) {
|
const { queryParams, form, rules } = toRefs(data);
|
||||||
ids.value = selection.map(item => item.id);
|
|
||||||
single.value = selection.length != 1;
|
/** 查询模型管理列表 */
|
||||||
multiple.value = !selection.length;
|
function getList() {
|
||||||
}
|
loading.value = true;
|
||||||
|
listModelInfo(queryParams.value).then(response => {
|
||||||
/** 新增按钮操作 */
|
modelInfoList.value = response.rows;
|
||||||
function handleAdd() {
|
total.value = response.total;
|
||||||
reset();
|
loading.value = false;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 取消按钮
|
||||||
|
function cancel() {
|
||||||
|
open.value = false;
|
||||||
|
reset();
|
||||||
|
}
|
||||||
|
|
||||||
|
// 表单重置
|
||||||
|
function reset() {
|
||||||
|
form.value = {
|
||||||
|
id: null,
|
||||||
|
modelName: null,
|
||||||
|
modelPrice: null,
|
||||||
|
modelPrepayment: null,
|
||||||
|
status: '0',
|
||||||
|
delFlag: '0',
|
||||||
|
remark: null,
|
||||||
|
};
|
||||||
|
proxy.resetForm("modelInfoRef");
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
function handleQuery() {
|
||||||
|
queryParams.value.pageNum = 1;
|
||||||
|
getList();
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
function resetQuery() {
|
||||||
|
proxy.resetForm("queryRef");
|
||||||
|
handleQuery();
|
||||||
|
}
|
||||||
|
|
||||||
|
// 多选框选中数据
|
||||||
|
function handleSelectionChange(selection) {
|
||||||
|
ids.value = selection.map(item => item.id);
|
||||||
|
single.value = selection.length != 1;
|
||||||
|
multiple.value = !selection.length;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 新增按钮操作 */
|
||||||
|
function handleAdd() {
|
||||||
|
reset();
|
||||||
|
open.value = true;
|
||||||
|
title.value = "添加模型管理";
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 修改按钮操作 */
|
||||||
|
function handleUpdate(row) {
|
||||||
|
reset();
|
||||||
|
const _id = row.id || ids.value
|
||||||
|
getModelInfo(_id).then(response => {
|
||||||
|
form.value = response.data;
|
||||||
open.value = true;
|
open.value = true;
|
||||||
title.value = "添加模型管理";
|
title.value = "修改模型管理";
|
||||||
}
|
});
|
||||||
|
}
|
||||||
/** 修改按钮操作 */
|
|
||||||
function handleUpdate(row) {
|
/** 提交按钮 */
|
||||||
reset();
|
function submitForm() {
|
||||||
const _id = row.id || ids.value
|
proxy.$refs["modelInfoRef"].validate(valid => {
|
||||||
getModelInfo(_id).then(response => {
|
if (valid) {
|
||||||
form.value = response.data;
|
if (form.value.id != null) {
|
||||||
open.value = true;
|
updateModelInfo(form.value).then(response => {
|
||||||
title.value = "修改模型管理";
|
proxy.$modal.msgSuccess("修改成功");
|
||||||
});
|
open.value = false;
|
||||||
}
|
getList();
|
||||||
|
});
|
||||||
/** 提交按钮 */
|
} else {
|
||||||
function submitForm() {
|
addModelInfo(form.value).then(response => {
|
||||||
proxy.$refs["modelInfoRef"].validate(valid => {
|
proxy.$modal.msgSuccess("新增成功");
|
||||||
if (valid) {
|
open.value = false;
|
||||||
if (form.value.id != null) {
|
getList();
|
||||||
updateModelInfo(form.value).then(response => {
|
});
|
||||||
proxy.$modal.msgSuccess("修改成功");
|
|
||||||
open.value = false;
|
|
||||||
getList();
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
addModelInfo(form.value).then(response => {
|
|
||||||
proxy.$modal.msgSuccess("新增成功");
|
|
||||||
open.value = false;
|
|
||||||
getList();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
}
|
});
|
||||||
|
}
|
||||||
/** 删除按钮操作 */
|
|
||||||
function handleDelete(row) {
|
/** 删除按钮操作 */
|
||||||
const _ids = row.id || ids.value;
|
function handleDelete(row) {
|
||||||
proxy.$modal.confirm('是否确认删除模型管理编号为"' + _ids + '"的数据项?').then(function() {
|
const _ids = row.id || ids.value;
|
||||||
return delModelInfo(_ids);
|
proxy.$modal.confirm('是否确认删除模型管理编号为"' + _ids + '"的数据项?').then(function() {
|
||||||
}).then(() => {
|
return delModelInfo(_ids);
|
||||||
getList();
|
}).then(() => {
|
||||||
proxy.$modal.msgSuccess("删除成功");
|
getList();
|
||||||
}).catch(() => {});
|
proxy.$modal.msgSuccess("删除成功");
|
||||||
}
|
}).catch(() => {});
|
||||||
|
}
|
||||||
/** 导出按钮操作 */
|
|
||||||
function handleExport() {
|
/** 导出按钮操作 */
|
||||||
proxy.download('cert/modelInfo/export', {
|
function handleExport() {
|
||||||
...queryParams.value
|
proxy.download('cert/modelInfo/export', {
|
||||||
}, `modelInfo_${new Date().getTime()}.xlsx`)
|
...queryParams.value
|
||||||
}
|
}, `modelInfo_${new Date().getTime()}.xlsx`)
|
||||||
|
}
|
||||||
getList();
|
|
||||||
</script>
|
/** 刷新缓存 */
|
||||||
|
function handleRefresh() {
|
||||||
|
proxy.$modal.confirm('是否确认刷新缓存?').then(function() {
|
||||||
|
refreshModelInfo();
|
||||||
|
}).then(() => {
|
||||||
|
proxy.$modal.msgSuccess("刷新成功");
|
||||||
|
}).catch(() => {});
|
||||||
|
}
|
||||||
|
|
||||||
|
getList();
|
||||||
|
</script>
|
||||||
Loading…
Reference in new issue