Some checks failed
continuous-integration/drone/push Build is failing
- Add Vue 3 frontend with Element Plus - Implement login, dashboard, tenant management - Add app configuration, logs viewer, stats pages - Add user management for admins - Update Drone CI to build and deploy frontend - Frontend ports: 3001 (test), 4001 (prod)
295 lines
9.8 KiB
Vue
295 lines
9.8 KiB
Vue
<script setup>
|
||
import { ref, reactive, onMounted } from 'vue'
|
||
import { ElMessage, ElMessageBox } from 'element-plus'
|
||
import api from '@/api'
|
||
import { useAuthStore } from '@/stores/auth'
|
||
|
||
const authStore = useAuthStore()
|
||
|
||
const loading = ref(false)
|
||
const tableData = ref([])
|
||
const total = ref(0)
|
||
const query = reactive({
|
||
page: 1,
|
||
size: 20,
|
||
tenant_id: '',
|
||
app_code: ''
|
||
})
|
||
|
||
// 对话框
|
||
const dialogVisible = ref(false)
|
||
const dialogTitle = ref('')
|
||
const editingId = ref(null)
|
||
const formRef = ref(null)
|
||
const form = reactive({
|
||
tenant_id: '',
|
||
app_code: 'tools',
|
||
app_name: '',
|
||
wechat_corp_id: '',
|
||
wechat_agent_id: '',
|
||
wechat_secret: '',
|
||
token_required: false,
|
||
allowed_tools: []
|
||
})
|
||
|
||
const toolOptions = [
|
||
{ label: '高情商回复', value: 'high-eq' },
|
||
{ label: '头脑风暴', value: 'brainstorm' },
|
||
{ label: '面诊方案', value: 'consultation' },
|
||
{ label: '客户画像', value: 'customer-profile' },
|
||
{ label: '医疗合规', value: 'medical-compliance' }
|
||
]
|
||
|
||
const rules = {
|
||
tenant_id: [{ required: true, message: '请输入租户ID', trigger: 'blur' }],
|
||
app_code: [{ required: true, message: '请输入应用代码', trigger: 'blur' }]
|
||
}
|
||
|
||
async function fetchList() {
|
||
loading.value = true
|
||
try {
|
||
const res = await api.get('/api/tenant-apps', { params: query })
|
||
tableData.value = res.data.items || []
|
||
total.value = res.data.total || 0
|
||
} catch (e) {
|
||
console.error(e)
|
||
} finally {
|
||
loading.value = false
|
||
}
|
||
}
|
||
|
||
function handleSearch() {
|
||
query.page = 1
|
||
fetchList()
|
||
}
|
||
|
||
function handlePageChange(page) {
|
||
query.page = page
|
||
fetchList()
|
||
}
|
||
|
||
function handleCreate() {
|
||
editingId.value = null
|
||
dialogTitle.value = '新建应用配置'
|
||
Object.assign(form, {
|
||
tenant_id: '',
|
||
app_code: 'tools',
|
||
app_name: '',
|
||
wechat_corp_id: '',
|
||
wechat_agent_id: '',
|
||
wechat_secret: '',
|
||
token_required: false,
|
||
allowed_tools: []
|
||
})
|
||
dialogVisible.value = true
|
||
}
|
||
|
||
function handleEdit(row) {
|
||
editingId.value = row.id
|
||
dialogTitle.value = '编辑应用配置'
|
||
Object.assign(form, {
|
||
tenant_id: row.tenant_id,
|
||
app_code: row.app_code,
|
||
app_name: row.app_name || '',
|
||
wechat_corp_id: row.wechat_corp_id || '',
|
||
wechat_agent_id: row.wechat_agent_id || '',
|
||
wechat_secret: '', // 不回显密钥
|
||
token_required: row.token_required,
|
||
allowed_tools: row.allowed_tools || []
|
||
})
|
||
dialogVisible.value = true
|
||
}
|
||
|
||
async function handleSubmit() {
|
||
await formRef.value.validate()
|
||
|
||
const data = { ...form }
|
||
// 如果没有输入新密钥,不传这个字段
|
||
if (!data.wechat_secret) {
|
||
delete data.wechat_secret
|
||
}
|
||
|
||
try {
|
||
if (editingId.value) {
|
||
await api.put(`/api/tenant-apps/${editingId.value}`, data)
|
||
ElMessage.success('更新成功')
|
||
} else {
|
||
const res = await api.post('/api/tenant-apps', data)
|
||
ElMessage.success(`创建成功,Token Secret: ${res.data.token_secret}`)
|
||
}
|
||
dialogVisible.value = false
|
||
fetchList()
|
||
} catch (e) {
|
||
// 错误已在拦截器处理
|
||
}
|
||
}
|
||
|
||
async function handleDelete(row) {
|
||
await ElMessageBox.confirm(`确定删除此配置吗?`, '提示', {
|
||
type: 'warning'
|
||
})
|
||
|
||
try {
|
||
await api.delete(`/api/tenant-apps/${row.id}`)
|
||
ElMessage.success('删除成功')
|
||
fetchList()
|
||
} catch (e) {
|
||
// 错误已在拦截器处理
|
||
}
|
||
}
|
||
|
||
async function handleRegenerateToken(row) {
|
||
await ElMessageBox.confirm('重新生成 Token Secret 将使旧的签名失效,确定继续?', '提示', {
|
||
type: 'warning'
|
||
})
|
||
|
||
try {
|
||
const res = await api.post(`/api/tenant-apps/${row.id}/regenerate-token`)
|
||
ElMessage.success(`新 Token Secret: ${res.data.token_secret}`)
|
||
fetchList()
|
||
} catch (e) {
|
||
// 错误已在拦截器处理
|
||
}
|
||
}
|
||
|
||
async function handleViewSecret(row) {
|
||
try {
|
||
const res = await api.get(`/api/tenant-apps/${row.id}/wechat-secret`)
|
||
if (res.data.wechat_secret) {
|
||
ElMessageBox.alert(res.data.wechat_secret, '微信 Secret', {
|
||
confirmButtonText: '关闭'
|
||
})
|
||
} else {
|
||
ElMessage.info('未配置微信 Secret')
|
||
}
|
||
} catch (e) {
|
||
// 错误已在拦截器处理
|
||
}
|
||
}
|
||
|
||
onMounted(() => {
|
||
fetchList()
|
||
})
|
||
</script>
|
||
|
||
<template>
|
||
<div class="page-container">
|
||
<div class="page-header">
|
||
<div class="title">应用配置</div>
|
||
<el-button v-if="authStore.isOperator" type="primary" @click="handleCreate">
|
||
<el-icon><Plus /></el-icon>
|
||
新建配置
|
||
</el-button>
|
||
</div>
|
||
|
||
<!-- 搜索栏 -->
|
||
<div class="search-bar">
|
||
<el-input
|
||
v-model="query.tenant_id"
|
||
placeholder="租户ID"
|
||
clearable
|
||
style="width: 160px"
|
||
@keyup.enter="handleSearch"
|
||
/>
|
||
<el-select v-model="query.app_code" placeholder="应用" clearable style="width: 120px">
|
||
<el-option label="tools" value="tools" />
|
||
<el-option label="interview" value="interview" />
|
||
</el-select>
|
||
<el-button type="primary" @click="handleSearch">搜索</el-button>
|
||
</div>
|
||
|
||
<!-- 表格 -->
|
||
<el-table v-loading="loading" :data="tableData" style="width: 100%">
|
||
<el-table-column prop="id" label="ID" width="60" />
|
||
<el-table-column prop="tenant_id" label="租户ID" width="120" />
|
||
<el-table-column prop="app_code" label="应用" width="100" />
|
||
<el-table-column prop="app_name" label="应用名称" width="150" />
|
||
<el-table-column prop="wechat_corp_id" label="企业ID" width="150" show-overflow-tooltip />
|
||
<el-table-column prop="wechat_agent_id" label="应用ID" width="100" />
|
||
<el-table-column label="微信密钥" width="100">
|
||
<template #default="{ row }">
|
||
<el-tag v-if="row.has_wechat_secret" type="success" size="small">已配置</el-tag>
|
||
<el-tag v-else type="info" size="small">未配置</el-tag>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="Token 验证" width="100">
|
||
<template #default="{ row }">
|
||
<el-tag :type="row.token_required ? 'warning' : 'info'" size="small">
|
||
{{ row.token_required ? '必须' : '可选' }}
|
||
</el-tag>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column prop="allowed_tools" label="允许工具" min-width="150">
|
||
<template #default="{ row }">
|
||
<el-tag v-for="tool in (row.allowed_tools || []).slice(0, 3)" :key="tool" size="small" style="margin-right: 4px">
|
||
{{ tool }}
|
||
</el-tag>
|
||
<span v-if="(row.allowed_tools || []).length > 3">...</span>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="操作" width="240" fixed="right">
|
||
<template #default="{ row }">
|
||
<el-button v-if="authStore.isOperator" type="primary" link size="small" @click="handleEdit(row)">编辑</el-button>
|
||
<el-button v-if="authStore.isOperator" type="warning" link size="small" @click="handleViewSecret(row)">查看密钥</el-button>
|
||
<el-button v-if="authStore.isOperator" type="info" link size="small" @click="handleRegenerateToken(row)">重置Token</el-button>
|
||
<el-button v-if="authStore.isOperator" type="danger" link size="small" @click="handleDelete(row)">删除</el-button>
|
||
</template>
|
||
</el-table-column>
|
||
</el-table>
|
||
|
||
<!-- 分页 -->
|
||
<div style="margin-top: 20px; display: flex; justify-content: flex-end">
|
||
<el-pagination
|
||
v-model:current-page="query.page"
|
||
:page-size="query.size"
|
||
:total="total"
|
||
layout="total, prev, pager, next"
|
||
@current-change="handlePageChange"
|
||
/>
|
||
</div>
|
||
|
||
<!-- 编辑对话框 -->
|
||
<el-dialog v-model="dialogVisible" :title="dialogTitle" width="600px">
|
||
<el-form ref="formRef" :model="form" :rules="rules" label-width="120px">
|
||
<el-form-item label="租户ID" prop="tenant_id">
|
||
<el-input v-model="form.tenant_id" :disabled="!!editingId" placeholder="如: tenant_001" />
|
||
</el-form-item>
|
||
<el-form-item label="应用代码" prop="app_code">
|
||
<el-input v-model="form.app_code" :disabled="!!editingId" placeholder="如: tools" />
|
||
</el-form-item>
|
||
<el-form-item label="应用名称">
|
||
<el-input v-model="form.app_name" placeholder="显示名称" />
|
||
</el-form-item>
|
||
|
||
<el-divider content-position="left">企业微信配置</el-divider>
|
||
|
||
<el-form-item label="企业 ID">
|
||
<el-input v-model="form.wechat_corp_id" placeholder="ww开头的企业ID" />
|
||
</el-form-item>
|
||
<el-form-item label="应用 ID">
|
||
<el-input v-model="form.wechat_agent_id" placeholder="自建应用的 AgentId" />
|
||
</el-form-item>
|
||
<el-form-item label="应用 Secret">
|
||
<el-input v-model="form.wechat_secret" type="password" show-password :placeholder="editingId ? '留空则不修改' : '应用的 Secret'" />
|
||
</el-form-item>
|
||
|
||
<el-divider content-position="left">鉴权配置</el-divider>
|
||
|
||
<el-form-item label="强制 Token 验证">
|
||
<el-switch v-model="form.token_required" />
|
||
<span style="margin-left: 12px; color: #909399; font-size: 12px">开启后 URL 必须携带有效签名</span>
|
||
</el-form-item>
|
||
<el-form-item label="允许的工具">
|
||
<el-checkbox-group v-model="form.allowed_tools">
|
||
<el-checkbox v-for="opt in toolOptions" :key="opt.value" :label="opt.value">{{ opt.label }}</el-checkbox>
|
||
</el-checkbox-group>
|
||
</el-form-item>
|
||
</el-form>
|
||
<template #footer>
|
||
<el-button @click="dialogVisible = false">取消</el-button>
|
||
<el-button type="primary" @click="handleSubmit">确定</el-button>
|
||
</template>
|
||
</el-dialog>
|
||
</div>
|
||
</template>
|