- 创建信息记录文档,包含项目管理要求、产物范围、Git仓库、制品仓库信息 - 添加服务器部署信息,包括应用服务器、MySQL/Redis服务器、Jenkins服务配置 - 记录邮件服务、DNS/HTTPS证书配置及安全备注 - 创建API联调文档,包含线上入口、ID约定、初始化管理员账号信息 - 添加统一响应格式、常见错误码、鉴权规则说明 - 提供核心接口清单,涵盖tenant-service、im-service、push-service等服务 - 补充curl示例,包含运营平台登录、IM登录、会话管理等操作示例 - 实现会话控制器,支持置顶、免打扰、标记已读、草稿等功能 - 添加全局异常处理器,统一处理业务异常和参数校验错误 - 创建IM管理控制器,提供用户管理、好友请求、黑名单等管理功能
303 行
12 KiB
Vue
303 行
12 KiB
Vue
<template>
|
|
<div v-if="app">
|
|
<el-page-header @back="$router.back()" :content="app.name" style="margin-bottom:24px" />
|
|
|
|
<el-card style="margin-bottom:16px">
|
|
<el-descriptions :column="2" border>
|
|
<el-descriptions-item label="应用名称">{{ app.name }}</el-descriptions-item>
|
|
<el-descriptions-item label="包名">{{ app.packageName }}</el-descriptions-item>
|
|
<el-descriptions-item label="AppKey">
|
|
<el-text class="mono">{{ app.appKey }}</el-text>
|
|
<el-button link @click="copy(app.appKey)"><el-icon><CopyDocument /></el-icon></el-button>
|
|
</el-descriptions-item>
|
|
<el-descriptions-item label="AppSecret">
|
|
<el-text class="mono">{{ revealedSecret ?? '••••••••••••••••' }}</el-text>
|
|
<el-button link @click="openVerifyDialog('REVEAL_SECRET')" title="查看">
|
|
<el-icon><View /></el-icon>
|
|
</el-button>
|
|
<el-button v-if="revealedSecret" link @click="copy(revealedSecret!)">
|
|
<el-icon><CopyDocument /></el-icon>
|
|
</el-button>
|
|
<el-button link type="warning" @click="openVerifyDialog('RESET_SECRET')">重置</el-button>
|
|
</el-descriptions-item>
|
|
<el-descriptions-item label="简述" :span="2">{{ app.description ?? '-' }}</el-descriptions-item>
|
|
</el-descriptions>
|
|
</el-card>
|
|
|
|
<el-card style="margin-bottom:16px">
|
|
<template #header>即时通讯服务</template>
|
|
<div class="service-grid">
|
|
<el-card class="service-card">
|
|
<div class="service-header">
|
|
<span class="service-name">{{ serviceLabel('IM') }}</span>
|
|
<el-switch :model-value="imEnabled" @change="(val: boolean) => onToggleImService(val)" />
|
|
</div>
|
|
<template v-if="imService">
|
|
<div style="margin-top:10px;display:flex;gap:8px;flex-wrap:wrap">
|
|
<!-- IM 管理页按 appKey 作用域查询,不能把租户 app.id 直接传进去。 -->
|
|
<el-button size="small" @click="$router.push({ path: `/apps/${route.params.id}/im`, query: { appKey: app.appKey } })">
|
|
即时通讯管理 →
|
|
</el-button>
|
|
<el-button size="small" type="primary" plain @click="$router.push(`/apps/${route.params.id}/im-config`)">
|
|
服务配置 →
|
|
</el-button>
|
|
</div>
|
|
</template>
|
|
<template v-else>
|
|
<div style="margin-top:10px">
|
|
<el-button size="small" type="primary" plain @click="openActivationRequest('ANDROID', 'IM')">
|
|
申请开通
|
|
</el-button>
|
|
</div>
|
|
</template>
|
|
</el-card>
|
|
</div>
|
|
</el-card>
|
|
|
|
<el-card>
|
|
<template #header>离线推送与版本管理</template>
|
|
<el-tabs v-model="activePlatform">
|
|
<el-tab-pane label="Android" name="ANDROID" />
|
|
<el-tab-pane label="iOS" name="IOS" />
|
|
<el-tab-pane label="鸿蒙" name="HARMONY" />
|
|
</el-tabs>
|
|
|
|
<div class="service-grid">
|
|
<el-card v-for="svcType in ['PUSH', 'UPDATE']" :key="svcType" class="service-card">
|
|
<div class="service-header">
|
|
<span class="service-name">{{ serviceLabel(svcType) }}</span>
|
|
<el-switch
|
|
:model-value="isEnabled(activePlatform, svcType)"
|
|
@change="(val: boolean) => onToggleService(activePlatform, svcType, val)"
|
|
/>
|
|
</div>
|
|
<template v-if="isEnabled(activePlatform, svcType)">
|
|
<div style="margin-top:10px">
|
|
<el-button
|
|
v-if="svcType === 'UPDATE'"
|
|
size="small"
|
|
@click="$router.push(`/apps/${route.params.id}/update`)">
|
|
版本管理 →
|
|
</el-button>
|
|
</div>
|
|
</template>
|
|
<template v-else>
|
|
<div style="margin-top:10px">
|
|
<el-button size="small" type="primary" plain @click="openActivationRequest(activePlatform, svcType)">
|
|
申请开通
|
|
</el-button>
|
|
</div>
|
|
</template>
|
|
</el-card>
|
|
</div>
|
|
</el-card>
|
|
|
|
<!-- Email Verify Dialog (reveal or reset) -->
|
|
<el-dialog v-model="showVerifyDialog" :title="verifyPurpose === 'REVEAL_SECRET' ? '查看 AppSecret' : '重置 AppSecret'" width="420px">
|
|
<div v-if="!codeSent">
|
|
<p style="color:#555;margin-bottom:16px">
|
|
{{ verifyPurpose === 'REVEAL_SECRET'
|
|
? '为保护账号安全,查看 AppSecret 需要通过邮箱验证。'
|
|
: '重置后旧 AppSecret 立即失效,请确认后继续。' }}
|
|
</p>
|
|
<el-button type="primary" :loading="sendingCode" @click="sendVerifyCode">
|
|
发送验证码到邮箱
|
|
</el-button>
|
|
</div>
|
|
<div v-else>
|
|
<p style="color:#555;margin-bottom:16px">验证码已发送至您的注册邮箱,请查收并输入:</p>
|
|
<el-input v-model="verifyCode" placeholder="6位验证码" maxlength="6" style="margin-bottom:12px" />
|
|
<div style="display:flex;gap:8px">
|
|
<el-button @click="sendVerifyCode" :loading="sendingCode" size="small">重新发送</el-button>
|
|
</div>
|
|
</div>
|
|
<template #footer>
|
|
<el-button @click="showVerifyDialog = false">取消</el-button>
|
|
<el-button v-if="codeSent" type="primary" :loading="submittingVerify" @click="submitVerify">
|
|
{{ verifyPurpose === 'REVEAL_SECRET' ? '查看' : '确认重置' }}
|
|
</el-button>
|
|
</template>
|
|
</el-dialog>
|
|
|
|
<!-- Activation Request Dialog -->
|
|
<el-dialog v-model="showActivationDialog" title="申请开通服务" width="420px">
|
|
<el-form label-width="80px">
|
|
<el-form-item label="服务">{{ serviceLabel(activationForm.serviceType) }}</el-form-item>
|
|
<el-form-item v-if="activationForm.serviceType !== 'IM'" label="平台">{{ activationForm.platform }}</el-form-item>
|
|
<el-form-item label="申请理由">
|
|
<el-input v-model="activationForm.reason" type="textarea" :rows="3" placeholder="请描述您的业务场景" />
|
|
</el-form-item>
|
|
</el-form>
|
|
<template #footer>
|
|
<el-button @click="showActivationDialog = false">取消</el-button>
|
|
<el-button type="primary" :loading="submittingActivation" @click="submitActivationRequest">提交申请</el-button>
|
|
</template>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed, ref, onMounted } from 'vue'
|
|
import { useRoute } from 'vue-router'
|
|
import { ElMessage, ElMessageBox } from 'element-plus'
|
|
import { View } from '@element-plus/icons-vue'
|
|
import { appApi, type App, type FeatureService } from '@/api/app'
|
|
import client from '@/api/client'
|
|
|
|
const route = useRoute()
|
|
const app = ref<App | null>(null)
|
|
const services = ref<FeatureService[]>([])
|
|
const activePlatform = ref<'ANDROID' | 'IOS' | 'HARMONY'>('ANDROID')
|
|
const imService = computed(() => services.value.find(s => s.serviceType === 'IM') ?? null)
|
|
const imEnabled = computed(() => imService.value?.enabled ?? false)
|
|
|
|
const revealedSecret = ref<string | null>(null)
|
|
|
|
const showVerifyDialog = ref(false)
|
|
const verifyPurpose = ref<'REVEAL_SECRET' | 'RESET_SECRET'>('REVEAL_SECRET')
|
|
const codeSent = ref(false)
|
|
const sendingCode = ref(false)
|
|
const verifyCode = ref('')
|
|
const submittingVerify = ref(false)
|
|
|
|
const showActivationDialog = ref(false)
|
|
const submittingActivation = ref(false)
|
|
const activationForm = ref({ platform: '', serviceType: '', reason: '' })
|
|
|
|
function isEnabled(platform: string, svcType: string) {
|
|
return services.value.some(
|
|
s => s.platform === platform && s.serviceType === svcType && s.enabled
|
|
)
|
|
}
|
|
|
|
function getService(platform: string, svcType: string) {
|
|
return services.value.find(s => s.platform === platform && s.serviceType === svcType) ?? null
|
|
}
|
|
|
|
function serviceLabel(type: string) {
|
|
return { IM: '即时通讯 (IM)', PUSH: '离线推送', UPDATE: '版本管理' }[type] ?? type
|
|
}
|
|
|
|
function imServicePlatform() {
|
|
return imService.value?.platform ?? 'ANDROID'
|
|
}
|
|
|
|
async function loadData() {
|
|
const id = route.params.id as string
|
|
const [appRes, svcRes] = await Promise.all([
|
|
appApi.get(id), appApi.getServices(id),
|
|
])
|
|
app.value = appRes.data.data
|
|
services.value = svcRes.data.data
|
|
revealedSecret.value = null
|
|
}
|
|
|
|
async function onToggleService(platform: string, svcType: string, enable: boolean) {
|
|
if (enable) {
|
|
openActivationRequest(platform, svcType)
|
|
} else {
|
|
await ElMessageBox.confirm(`确认关闭 ${platform} 平台的 ${serviceLabel(svcType)} 服务?`, '关闭服务', {
|
|
type: 'warning', confirmButtonText: '确认关闭', cancelButtonText: '取消',
|
|
})
|
|
await appApi.toggleService(route.params.id as string, platform, svcType, false)
|
|
ElMessage.success('已关闭')
|
|
loadData()
|
|
}
|
|
}
|
|
|
|
async function onToggleImService(enable: boolean) {
|
|
if (enable) {
|
|
openActivationRequest(imServicePlatform(), 'IM')
|
|
return
|
|
}
|
|
await ElMessageBox.confirm('确认关闭 即时通讯 服务?', '关闭服务', {
|
|
type: 'warning', confirmButtonText: '确认关闭', cancelButtonText: '取消',
|
|
})
|
|
await appApi.toggleService(route.params.id as string, imServicePlatform(), 'IM', false)
|
|
ElMessage.success('已关闭')
|
|
loadData()
|
|
}
|
|
|
|
function openActivationRequest(platform: string, svcType: string) {
|
|
activationForm.value = { platform, serviceType: svcType, reason: '' }
|
|
showActivationDialog.value = true
|
|
}
|
|
|
|
async function submitActivationRequest() {
|
|
if (!activationForm.value.reason.trim()) {
|
|
return ElMessage.warning('请填写申请理由')
|
|
}
|
|
submittingActivation.value = true
|
|
try {
|
|
await client.post(`/apps/${route.params.id}/services/request-activation`, null, {
|
|
params: {
|
|
platform: activationForm.value.platform,
|
|
serviceType: activationForm.value.serviceType,
|
|
applyReason: activationForm.value.reason,
|
|
},
|
|
})
|
|
ElMessage.success('申请已提交,等待运营审核')
|
|
showActivationDialog.value = false
|
|
} finally {
|
|
submittingActivation.value = false
|
|
}
|
|
}
|
|
|
|
function openVerifyDialog(purpose: 'REVEAL_SECRET' | 'RESET_SECRET') {
|
|
verifyPurpose.value = purpose
|
|
codeSent.value = false
|
|
verifyCode.value = ''
|
|
showVerifyDialog.value = true
|
|
}
|
|
|
|
async function sendVerifyCode() {
|
|
sendingCode.value = true
|
|
try {
|
|
await appApi.requestSecretVerify(route.params.id as string, verifyPurpose.value)
|
|
codeSent.value = true
|
|
ElMessage.success('验证码已发送')
|
|
} catch {
|
|
ElMessage.error('发送失败,请稍后重试')
|
|
} finally {
|
|
sendingCode.value = false
|
|
}
|
|
}
|
|
|
|
async function submitVerify() {
|
|
if (verifyCode.value.length !== 6) return ElMessage.warning('请输入6位验证码')
|
|
submittingVerify.value = true
|
|
try {
|
|
const id = route.params.id as string
|
|
if (verifyPurpose.value === 'REVEAL_SECRET') {
|
|
const res = await appApi.revealSecret(id, verifyCode.value)
|
|
revealedSecret.value = res.data.data.appSecret
|
|
ElMessage.success('AppSecret 已显示,请妥善保管')
|
|
} else {
|
|
const res = await appApi.resetSecret(id, verifyCode.value)
|
|
revealedSecret.value = res.data.data.appSecret
|
|
ElMessage.success('AppSecret 已重置,旧密钥立即失效')
|
|
}
|
|
showVerifyDialog.value = false
|
|
} catch {
|
|
ElMessage.error('验证码错误或已过期')
|
|
} finally {
|
|
submittingVerify.value = false
|
|
}
|
|
}
|
|
|
|
function copy(text: string) {
|
|
navigator.clipboard.writeText(text)
|
|
ElMessage.success('已复制')
|
|
}
|
|
|
|
onMounted(loadData)
|
|
</script>
|
|
|
|
<style scoped>
|
|
.mono { font-family: monospace; font-size: 12px; }
|
|
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
|
|
.service-card { border: 1px solid #e8e8e8; }
|
|
.service-header { display: flex; justify-content: space-between; align-items: center; font-weight: 500; }
|
|
.service-name { font-size: 15px; }
|
|
</style>
|