完善功能

This commit is contained in:
wangxiaowei
2026-04-16 17:34:37 +08:00
parent 8be96e4ea5
commit 2c3eae47ac
4 changed files with 86 additions and 81 deletions

1
.env.test Normal file
View File

@ -0,0 +1 @@
VITE_APP_BASE_URL=https://test1.stnav.com

View File

@ -5,8 +5,7 @@ const config = {
// 开发环境使用相对路径通过代理生产环境使用完整URL
baseUrl: import.meta.env.DEV
? '/'
: `${import.meta.env.VITE_APP_BASE_URL || 'https://test1.stnav.com'}/`, //请求接口域名
// : `${import.meta.env.VITE_APP_BASE_URL || 'https://76458.com'}/`, //请求接口域名
: `${import.meta.env.VITE_APP_BASE_URL}/`, //请求接口域名
urlPrefix: 'adminapi', //请求默认前缀
timeout: 10 * 1000 //请求超时时长
}

View File

@ -91,15 +91,20 @@
</div>
</template>
</el-table-column>
<el-table-column label="姓名" prop="nickname" show-overflow-tooltip width="100" />
<el-table-column label="昵称" prop="name" show-overflow-tooltip width="100" />
<el-table-column label="茶艺师等级" prop="level">
<el-table-column label="姓名" prop="nickname" show-overflow-tooltip />
<el-table-column label="昵称" prop="name" show-overflow-tooltip />
<el-table-column label="状态" prop="state">
<template #default="{ row }">
<dict-value :options="dictData.state" :value="row.state" />
</template>
</el-table-column>
<el-table-column label="茶艺师等级" prop="level" width="140">
<template #default="{ row }">
<dict-value :options="dictData.level" :value="row.level" />
</template>
</el-table-column>
<el-table-column label="所属城市" prop="city_name" show-overflow-tooltip />
<el-table-column label="服务" prop="server_type" width="200">
<el-table-column label="所属城市" prop="city_name" show-overflow-tooltip width="120" />
<el-table-column label="服务" prop="server_type" width="260">
<template #default="{ row }">
<div class="flex flex-col gap-1.5 text-sm">
<div class="flex justify-between items-center">
@ -121,7 +126,7 @@
</div>
</template>
</el-table-column>
<el-table-column label="账户" prop="user_money" width="200">
<el-table-column label="账户" prop="user_money" width="260">
<template #default="{ row }">
<div class="flex flex-col gap-1.5 text-sm">
<div class="flex justify-between items-center">
@ -143,12 +148,7 @@
</div>
</template>
</el-table-column>
<el-table-column label="状态" prop="state">
<template #default="{ row }">
<dict-value :options="dictData.state" :value="row.state" />
</template>
</el-table-column>
<el-table-column label="操作" width="120" fixed="right">
<el-table-column label="操作" width="160" fixed="right">
<template #default="{ row }">
<el-button v-perms="['teamaster_user/edit']" type="primary" link @click="handleEdit(row)">
编辑

View File

@ -6,7 +6,7 @@ import AutoImport from 'unplugin-auto-import/vite'
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
import Components from 'unplugin-vue-components/vite'
import { fileURLToPath, URL } from 'url'
import { defineConfig } from 'vite'
import { defineConfig, loadEnv } from 'vite'
import { createStyleImportPlugin, ElementPlusResolve } from 'vite-plugin-style-import'
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
import vueSetupExtend from 'vite-plugin-vue-setup-extend'
@ -36,78 +36,83 @@ function getElementPlusStylePaths() {
return stylePaths
}
export default defineConfig({
base: '/admin/',
server: {
host: '0.0.0.0',
port: 5174, // 修改端口号,如有需要可调整
hmr: true,
open: true,
proxy: {
'/adminapi': {
target: 'https://test1.stnav.com',
// target: 'https://76458.com',
changeOrigin: true,
secure: true,
rewrite: (path) => path
export default defineConfig(({ mode }) => {
const env = loadEnv(mode, process.cwd())
const targetUrl = env.VITE_APP_BASE_URL || 'https://test1.stnav.com'
return {
base: '/parten/',
server: {
host: '0.0.0.0',
port: 5175, // 修改端口号,如有需要可调整
hmr: true,
open: true,
proxy: {
'/adminapi/': {
target: targetUrl,
// target: 'https://76458.com',
changeOrigin: true,
secure: true,
rewrite: (path) => path
}
}
}
},
plugins: [
vue(),
vueJsx(),
AutoImport({
imports: ['vue', 'vue-router'],
resolvers: [ElementPlusResolver()],
eslintrc: {
enabled: true
},
plugins: [
vue(),
vueJsx(),
AutoImport({
imports: ['vue', 'vue-router'],
resolvers: [ElementPlusResolver()],
eslintrc: {
enabled: true
}
}),
Components({
directoryAsNamespace: true,
resolvers: [ElementPlusResolver()]
}),
createStyleImportPlugin({
resolves: [ElementPlusResolve()]
}),
createSvgIconsPlugin({
// 配置路劲在你的src里的svg存放文件
iconDirs: [fileURLToPath(new URL('./src/assets/icons', import.meta.url))],
symbolId: 'local-icon-[dir]-[name]'
}),
vueSetupExtend()
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}),
Components({
directoryAsNamespace: true,
resolvers: [ElementPlusResolver()]
}),
createStyleImportPlugin({
resolves: [ElementPlusResolve()]
}),
createSvgIconsPlugin({
// 配置路劲在你的src里的svg存放文件
iconDirs: [fileURLToPath(new URL('./src/assets/icons', import.meta.url))],
symbolId: 'local-icon-[dir]-[name]'
}),
vueSetupExtend()
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
css: {
preprocessorOptions: {
scss: {
api: 'modern-compiler'
},
css: {
preprocessorOptions: {
scss: {
api: 'modern-compiler'
}
}
}
},
optimizeDeps: {
// 确保不重复包含这些依赖
include: ['@wangeditor/editor-for-vue', 'vue-echarts', ...getElementPlusStylePaths()]
},
build: {
rollupOptions: {
output: {
manualChunks(id) {
if (id.includes('node_modules')) {
return id.toString().split('node_modules/')[1].split('/')[0].toString()
},
optimizeDeps: {
// 确保不重复包含这些依赖
include: ['@wangeditor/editor-for-vue', 'vue-echarts', ...getElementPlusStylePaths()]
},
build: {
rollupOptions: {
output: {
manualChunks(id) {
if (id.includes('node_modules')) {
return id.toString().split('node_modules/')[1].split('/')[0].toString()
}
}
}
}
},
define: {
__VUE_PROD_DEVTOOLS__: false,
__VUE_OPTIONS_API__: true,
__VUE_PROD_HYDRATION__: true,
__VUE_PROD_HYDRATION_MISMATCH_DETAILS__: false
}
},
define: {
__VUE_PROD_DEVTOOLS__: false,
__VUE_OPTIONS_API__: true,
__VUE_PROD_HYDRATION__: true,
__VUE_PROD_HYDRATION_MISMATCH_DETAILS__: false
}
})