This commit is contained in:
ljx
2025-08-29 22:10:42 +08:00
parent 06d111b9e6
commit a2ea5e5979
3 changed files with 11 additions and 3 deletions

View File

@ -6,7 +6,7 @@ VITE_APP_ENV = 'development'
# 开发环境 # 开发环境
# 李陈杰 209 # 李陈杰 209
VITE_APP_BASE_API = 'http://192.168.110.188:8899' VITE_APP_BASE_API = 'http://192.168.110.180:8899'
# 曾涛 # 曾涛
# VITE_APP_BASE_API = 'http://192.168.110.180:8899' # VITE_APP_BASE_API = 'http://192.168.110.180:8899'
# 罗成 # 罗成

View File

@ -37,7 +37,15 @@
</el-table-column> </el-table-column>
<el-table-column label="操作" align="center"> <el-table-column label="操作" align="center">
<template #default="scope"> <template #default="scope">
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['design:extract:query']">审核</el-button> <el-button
link
type="primary"
v-if="scope.row.status == 'draft'"
icon="Edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['design:extract:query']"
>审核</el-button
>
<el-button <el-button
link link
type="primary" type="primary"

View File

@ -159,7 +159,7 @@ const histroyList = ref([]);
const getList = async () => { const getList = async () => {
loading.value = true; loading.value = true;
try { try {
const res = await joinList({ type: catalogueId.value, ...queryParams.value }); const res = await joinList({ type: catalogueId.value, ...queryParams.value, auditStatus: 'finish' });
volumeCatalogList.value = res.rows; volumeCatalogList.value = res.rows;
total.value = res.total; total.value = res.total;
} finally { } finally {