|
|
|
|
@ -1,10 +1,10 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div class="app-container">
|
|
|
|
|
<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
|
|
|
|
|
v-model="queryParams.modelName"
|
|
|
|
|
placeholder="请输入模型名"
|
|
|
|
|
placeholder="请输入名称"
|
|
|
|
|
clearable
|
|
|
|
|
@keyup.enter="handleQuery"
|
|
|
|
|
/>
|
|
|
|
|
@ -54,21 +54,28 @@
|
|
|
|
|
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="序号" align="center" prop="id" />
|
|
|
|
|
<el-table-column label="状态" align="center" prop="status">
|
|
|
|
|
<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" 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>
|
|
|
|
|
@ -88,7 +95,16 @@
|
|
|
|
|
<!-- 添加或修改模型管理对话框 -->
|
|
|
|
|
<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-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 label="状态标志" prop="status">
|
|
|
|
|
<el-radio-group v-model="form.status">
|
|
|
|
|
<el-radio
|
|
|
|
|
v-for="dict in sys_normal_disable"
|
|
|
|
|
@ -98,20 +114,17 @@
|
|
|
|
|
</el-radio-group>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="删除标志" prop="delFlag">
|
|
|
|
|
<el-input v-model="form.delFlag" placeholder="请输入删除标志" />
|
|
|
|
|
<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 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">
|
|
|
|
|
@ -121,25 +134,25 @@
|
|
|
|
|
</template>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup name="ModelInfo">
|
|
|
|
|
import { listModelInfo, getModelInfo, delModelInfo, addModelInfo, updateModelInfo } from "@/api/cert/modelInfo";
|
|
|
|
|
<script setup name="ModelInfo">
|
|
|
|
|
import { listModelInfo, getModelInfo, delModelInfo, addModelInfo, updateModelInfo, refreshModelInfo } from "@/api/cert/modelInfo";
|
|
|
|
|
|
|
|
|
|
const { proxy } = getCurrentInstance();
|
|
|
|
|
const { sys_normal_disable } = proxy.useDict('sys_normal_disable');
|
|
|
|
|
const { proxy } = getCurrentInstance();
|
|
|
|
|
const { sys_del_flag, sys_normal_disable } = proxy.useDict('sys_del_flag', '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 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({
|
|
|
|
|
const data = reactive({
|
|
|
|
|
form: {},
|
|
|
|
|
queryParams: {
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
@ -147,94 +160,84 @@
|
|
|
|
|
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" }
|
|
|
|
|
{ required: true, message: "名称不能为空", trigger: "blur" }
|
|
|
|
|
],
|
|
|
|
|
modelPrice: [
|
|
|
|
|
{ required: true, message: "模型价格不能为空", trigger: "blur" }
|
|
|
|
|
{ required: true, message: "价格不能为空", trigger: "blur" }
|
|
|
|
|
],
|
|
|
|
|
modelPrepayment: [
|
|
|
|
|
{ required: true, message: "模型预支付不能为空", trigger: "blur" }
|
|
|
|
|
]
|
|
|
|
|
{ required: true, message: "预扣token数不能为空", trigger: "blur" }
|
|
|
|
|
],
|
|
|
|
|
status: [
|
|
|
|
|
{ required: true, message: "状态标志不能为空", trigger: "change" }
|
|
|
|
|
],
|
|
|
|
|
delFlag: [
|
|
|
|
|
{ required: true, message: "删除标志不能为空", trigger: "change" }
|
|
|
|
|
],
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const { queryParams, form, rules } = toRefs(data);
|
|
|
|
|
const { queryParams, form, rules } = toRefs(data);
|
|
|
|
|
|
|
|
|
|
/** 查询模型管理列表 */
|
|
|
|
|
function getList() {
|
|
|
|
|
/** 查询模型管理列表 */
|
|
|
|
|
function getList() {
|
|
|
|
|
loading.value = true;
|
|
|
|
|
listModelInfo(queryParams.value).then(response => {
|
|
|
|
|
modelInfoList.value = response.rows;
|
|
|
|
|
total.value = response.total;
|
|
|
|
|
loading.value = false;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 取消按钮
|
|
|
|
|
function cancel() {
|
|
|
|
|
// 取消按钮
|
|
|
|
|
function cancel() {
|
|
|
|
|
open.value = false;
|
|
|
|
|
reset();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 表单重置
|
|
|
|
|
function 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
|
|
|
|
|
modelPrepayment: null,
|
|
|
|
|
status: '0',
|
|
|
|
|
delFlag: '0',
|
|
|
|
|
remark: null,
|
|
|
|
|
};
|
|
|
|
|
proxy.resetForm("modelInfoRef");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
function handleQuery() {
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
function handleQuery() {
|
|
|
|
|
queryParams.value.pageNum = 1;
|
|
|
|
|
getList();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
|
function resetQuery() {
|
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
|
function resetQuery() {
|
|
|
|
|
proxy.resetForm("queryRef");
|
|
|
|
|
handleQuery();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 多选框选中数据
|
|
|
|
|
function handleSelectionChange(selection) {
|
|
|
|
|
// 多选框选中数据
|
|
|
|
|
function handleSelectionChange(selection) {
|
|
|
|
|
ids.value = selection.map(item => item.id);
|
|
|
|
|
single.value = selection.length != 1;
|
|
|
|
|
multiple.value = !selection.length;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 新增按钮操作 */
|
|
|
|
|
function handleAdd() {
|
|
|
|
|
/** 新增按钮操作 */
|
|
|
|
|
function handleAdd() {
|
|
|
|
|
reset();
|
|
|
|
|
open.value = true;
|
|
|
|
|
title.value = "添加模型管理";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
|
function handleUpdate(row) {
|
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
|
function handleUpdate(row) {
|
|
|
|
|
reset();
|
|
|
|
|
const _id = row.id || ids.value
|
|
|
|
|
getModelInfo(_id).then(response => {
|
|
|
|
|
@ -242,10 +245,10 @@
|
|
|
|
|
open.value = true;
|
|
|
|
|
title.value = "修改模型管理";
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 提交按钮 */
|
|
|
|
|
function submitForm() {
|
|
|
|
|
/** 提交按钮 */
|
|
|
|
|
function submitForm() {
|
|
|
|
|
proxy.$refs["modelInfoRef"].validate(valid => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
if (form.value.id != null) {
|
|
|
|
|
@ -263,10 +266,10 @@
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
|
function handleDelete(row) {
|
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
|
function handleDelete(row) {
|
|
|
|
|
const _ids = row.id || ids.value;
|
|
|
|
|
proxy.$modal.confirm('是否确认删除模型管理编号为"' + _ids + '"的数据项?').then(function() {
|
|
|
|
|
return delModelInfo(_ids);
|
|
|
|
|
@ -274,15 +277,23 @@
|
|
|
|
|
getList();
|
|
|
|
|
proxy.$modal.msgSuccess("删除成功");
|
|
|
|
|
}).catch(() => {});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
|
function handleExport() {
|
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
|
function handleExport() {
|
|
|
|
|
proxy.download('cert/modelInfo/export', {
|
|
|
|
|
...queryParams.value
|
|
|
|
|
}, `modelInfo_${new Date().getTime()}.xlsx`)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
getList();
|
|
|
|
|
</script>
|
|
|
|
|
/** 刷新缓存 */
|
|
|
|
|
function handleRefresh() {
|
|
|
|
|
proxy.$modal.confirm('是否确认刷新缓存?').then(function() {
|
|
|
|
|
refreshModelInfo();
|
|
|
|
|
}).then(() => {
|
|
|
|
|
proxy.$modal.msgSuccess("刷新成功");
|
|
|
|
|
}).catch(() => {});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
getList();
|
|
|
|
|
</script>
|