This commit is contained in:
qiuyuan 2025-08-06 20:16:50 +08:00
commit c8e856d944
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ VITE_ROUTER_BASE=/
VITE_ROUTER_HISTORY=hash VITE_ROUTER_HISTORY=hash
# api # api
# VITE_API_BASIC=http://10.10.1.6:8071 VITE_API_BASIC=http://10.10.1.6:8071
VITE_API_HTTP=/api/v1/ VITE_API_HTTP=/api/v1/
# storage # storage
VITE_STORAGE_NAMESPACE = gin-admin_local_ VITE_STORAGE_NAMESPACE = gin-admin_local_

View File

@ -3,7 +3,7 @@
<a-col flex="auto"> <a-col flex="auto">
<a-card type="flex"> <a-card type="flex">
<a-table :columns="columns" :data-source="listData" bordered="true" :loading="loading" <a-table :columns="columns" :data-source="listData" bordered="true" :loading="loading"
:pagination="paginationState" @change="onTableChange"> :pagination="paginationState" @change="onTableChange" :scroll="{ x: 1000 }">
<template #bodyCell="{ column, record }"> <template #bodyCell="{ column, record }">
<template v-if="'url' === column.dataIndex"> <template v-if="'url' === column.dataIndex">
<a-button type="link" @click="auditHandleEdit(record, 'img')">点击查看</a-button> <a-button type="link" @click="auditHandleEdit(record, 'img')">点击查看</a-button>