半自动+人工”链路已经落下第一版

This commit is contained in:
yml
2026-04-12 19:07:51 +08:00
parent 4c98b78267
commit 75647e9eed
24 changed files with 711 additions and 93 deletions
@@ -12,7 +12,7 @@ function resolveTone(status: string) {
return 'success'
}
if (['claimed', 'role_confirmed', 'redeeming', 'reserved', 'processing', 'admin', 'waiting_user_claim', 'link_opened', 'binding_confirmed', 'binding_in_progress', 'user_binding'].includes(normalized)) {
if (['claimed', 'role_confirmed', 'redeeming', 'reserved', 'processing', 'admin', 'support', 'waiting_user_claim', 'link_opened', 'binding_confirmed', 'binding_in_progress', 'user_binding'].includes(normalized)) {
return 'primary'
}
@@ -61,6 +61,7 @@ function resolveLabel(status: string) {
active: '生效中',
admin: '管理员',
operator: '普通运营',
support: '客服',
revoked: '已撤销',
disabled: '已停用',
success: '成功',
@@ -80,6 +80,10 @@ const emit = defineEmits<{
</el-button>
</div>
<div v-else-if="props.confirmReadonly && !props.roleConfirmed" class="confirm-box">
当前商品需要客服复核完成扫码登录后请联系人工继续
</div>
<div v-else class="confirm-box">
<el-checkbox
:model-value="props.roleConfirmed"
+24 -5
View File
@@ -99,12 +99,23 @@ export function useClaimPage(token: string) {
},
])
const canConfirmRole = computed(() =>
Boolean(task.value && hasSession.value && roleReady.value && task.value.status === 'claimed'),
Boolean(
task.value
&& !task.value.requiresSupportReview
&& hasSession.value
&& roleReady.value
&& task.value.status === 'claimed',
),
)
const canRedeem = computed(() =>
Boolean(task.value && hasSession.value && roleConfirmed.value && !redeemLoading.value && (
task.value.status === 'role_confirmed' || task.value.status === 'redeeming'
)),
Boolean(
task.value
&& !task.value.requiresSupportReview
&& hasSession.value
&& roleConfirmed.value
&& !redeemLoading.value
&& (task.value.status === 'role_confirmed' || task.value.status === 'redeeming'),
),
)
const redeemBlockedReason = computed(() => {
if (!detail.value) {
@@ -119,6 +130,14 @@ export function useClaimPage(token: string) {
return `请先选择${loginTypeLabel.value}并初始化登录会话`
}
if (task.value?.requiresSupportReview) {
if (!roleReady.value) {
return '扫码成功后,系统会自动同步登录信息,准备发给客服复核'
}
return '当前商品需要客服复核角色并代你发起兑换,请联系人工继续'
}
if (redeemLoading.value) {
return '兑换任务正在执行中'
}
@@ -133,7 +152,7 @@ export function useClaimPage(token: string) {
return ''
})
const redeemButtonLabel = computed(() => '开始兑换')
const redeemButtonLabel = computed(() => (task.value?.requiresSupportReview ? '等待客服兑换' : '开始兑换'))
const screenshotEmptyTitle = computed(() =>
task.value?.status === 'redeemed' ? '本次没有可展示的截图' : '等待截图',
)
+16 -1
View File
@@ -1,5 +1,5 @@
import { createRouter, createWebHashHistory } from 'vue-router'
import { hasAdminSession } from '@/utils/admin-auth'
import { getAdminRole, hasAdminSession } from '@/utils/admin-auth'
const router = createRouter({
history: createWebHashHistory(),
@@ -42,6 +42,7 @@ const router = createRouter({
},
{
path: 'users',
meta: { allowedRoles: ['admin'] },
component: () => import('@/views/admin/AdminUsersView.vue'),
},
{
@@ -66,6 +67,7 @@ const router = createRouter({
},
{
path: 'inventory',
meta: { allowedRoles: ['admin', 'operator'] },
component: () => import('@/views/admin/AdminInventoryView.vue'),
},
{
@@ -74,22 +76,27 @@ const router = createRouter({
},
{
path: 'webhook-events',
meta: { allowedRoles: ['admin', 'operator'] },
component: () => import('@/views/admin/AdminWebhookEventsView.vue'),
},
{
path: 'platform-shops',
meta: { allowedRoles: ['admin'] },
component: () => import('@/views/admin/AdminPlatformShopsView.vue'),
},
{
path: 'platform-fulfillment',
meta: { allowedRoles: ['admin'] },
component: () => import('@/views/admin/AdminFulfillmentBindingsView.vue'),
},
{
path: 'webhook-events/:eventId',
meta: { allowedRoles: ['admin', 'operator'] },
component: () => import('@/views/admin/AdminWebhookEventDetailView.vue'),
},
{
path: 'audit-logs',
meta: { allowedRoles: ['admin'] },
component: () => import('@/views/admin/AdminAuditLogsView.vue'),
},
],
@@ -118,6 +125,14 @@ router.beforeEach((to) => {
return '/admin/login'
}
const allowedRoles = to.matched
.map((record) => (record.meta?.allowedRoles as string[] | undefined) || [])
.find((roles) => Array.isArray(roles) && roles.length > 0)
if (allowedRoles && !allowedRoles.includes(getAdminRole())) {
return '/admin/dashboard'
}
return true
})
+8
View File
@@ -131,6 +131,14 @@ export function regenerateAdminTaskClaimLink(taskId: number | string) {
)
}
export function confirmAdminTaskAssistedRole(taskId: number | string) {
return apiPost<AdminTaskActionResponse>(`/api/v1/admin/tasks/${taskId}/support-confirm-role`, {})
}
export function redeemAdminTaskAssisted(taskId: number | string) {
return apiPost<AdminTaskActionResponse>(`/api/v1/admin/tasks/${taskId}/support-redeem`, {})
}
export function closeAdminTask(taskId: number | string) {
return apiPost<AdminTaskActionResponse>(`/api/v1/admin/tasks/${taskId}/close`, {})
}
+11 -1
View File
@@ -4,7 +4,7 @@ export interface AdminPagination {
total: number
}
export type AdminRole = 'admin' | 'operator'
export type AdminRole = 'admin' | 'operator' | 'support'
export type AdminUserStatus = 'active' | 'disabled'
export interface AdminLoginResponse {
@@ -199,6 +199,9 @@ export interface AdminTaskOperations {
canClose: boolean
canMarkManualReview: boolean
canCompleteManualDispatch: boolean
canSupportConfirmRole: boolean
canSupportRedeem: boolean
canViewSensitiveTaskData: boolean
}
export interface AdminTaskActionResponse {
@@ -301,6 +304,7 @@ export interface AdminTaskDetail {
token: string
status: string
expiredAt: string
claimUrl: string
}
inventory: null | {
inventoryItemId: number
@@ -332,6 +336,12 @@ export interface AdminTaskDetail {
}>
artifacts: Record<string, unknown>
screenshotUrl: string
review: {
required: boolean
screenshotCapturedAt: string | null
roleId: string
roleName: string
}
manualDispatch: null | {
outcome: string
deliveryReference: string
+2
View File
@@ -22,6 +22,8 @@ export interface ClaimTaskInfo {
taskId: number
taskNo: string
status: ClaimTaskStatus
executorKey: string
requiresSupportReview: boolean
expiresAt: string | null
claimedAt: string | null
roleConfirmedAt: string | null
+18 -8
View File
@@ -4,6 +4,12 @@ const ADMIN_USER_ID_KEY = 'order-site-admin-user-id'
const ADMIN_USERNAME_KEY = 'order-site-admin-username'
const ADMIN_ROLE_KEY = 'order-site-admin-role'
const ADMIN_ROLE_LEVEL: Record<'support' | 'operator' | 'admin', number> = {
support: 1,
operator: 2,
admin: 3,
}
export function getAdminToken() {
return localStorage.getItem(ADMIN_TOKEN_KEY) || ''
}
@@ -23,21 +29,25 @@ export function getAdminUsername() {
export function getAdminRole() {
const role = localStorage.getItem(ADMIN_ROLE_KEY)
return role === 'admin' ? 'admin' : 'operator'
}
export function hasAdminRole(role: 'admin' | 'operator') {
if (role === 'operator') {
return Boolean(getAdminToken())
if (role === 'admin' || role === 'operator' || role === 'support') {
return role
}
return getAdminRole() === 'admin'
return 'operator'
}
export function hasAdminRole(role: 'admin' | 'operator' | 'support') {
if (!getAdminToken()) {
return false
}
return ADMIN_ROLE_LEVEL[getAdminRole()] >= ADMIN_ROLE_LEVEL[role]
}
export function setAdminSession(
token: string,
expiresAt: string,
user?: { userId: number; username: string; role: 'admin' | 'operator' },
user?: { userId: number; username: string; role: 'admin' | 'operator' | 'support' },
) {
localStorage.setItem(ADMIN_TOKEN_KEY, token)
localStorage.setItem(ADMIN_EXPIRES_AT_KEY, expiresAt)
+1
View File
@@ -57,6 +57,7 @@ export const adminUserRoleOptions = [
{ label: '全部', value: '' },
{ label: '管理员', value: 'admin' },
{ label: '普通运营', value: 'operator' },
{ label: '客服', value: 'support' },
]
export const adminUserStatusOptions = [
@@ -55,6 +55,7 @@ type ValidationState = {
const PROFILE_OPTIONS = [
{ label: '腾讯领取兑换', value: 'tencent_claim_redeem' },
{ label: '腾讯领取兑换(半自动+人工)', value: 'tencent_claim_assisted' },
{ label: '人工发货', value: 'manual_review' },
]
@@ -405,7 +406,7 @@ onMounted(loadConfigs)
</div>
<div class="meta-line">
<span class="meta-label">说明</span>
<span>每条规则同时定义外部商品匹配条件内部履约 SKU / 履约方式未命中的商品会进入人工处理</span>
<span>每条规则同时定义外部商品匹配条件内部履约 SKU / 履约方式未命中的商品会直接忽略不再继续走后续履约动作</span>
</div>
<div class="meta-line">
<span class="meta-label">字段怎么理解</span>
@@ -424,7 +425,7 @@ onMounted(loadConfigs)
</div>
<div class="hint-item">
<strong>履约方式</strong>
<span>`腾讯领取兑换` 表示走自动库存链路`人工发货` 表示落到人工处理</span>
<span>`腾讯领取兑换` 表示用户确认后自动兑换`腾讯领取兑换(半自动+人工)` 表示用户先登录客服确认角色后再自动兑换`人工发货` 表示直接落到人工处理</span>
</div>
</div>
</div>
@@ -423,12 +423,12 @@ onMounted(loadInventoryItems)
<article class="guide-item">
<span class="guide-label">2. 库存预占</span>
<h2>再按凭据类型找库存项</h2>
<p>`tencent_claim_redeem` 当前会优先查找 `tencent_code`适合三角洲行动这类腾讯兑换码自动领取场景以后扩展别的履约档案时也会按各自 requirement 匹配</p>
<p>`tencent_claim_redeem` `tencent_claim_assisted` 当前会优先查找 `tencent_code`适合三角洲行动这类腾讯兑换码领取场景以后扩展别的履约档案时也会按各自 requirement 匹配</p>
</article>
<article class="guide-item">
<span class="guide-label">3. 履约结果</span>
<h2>自动绑定或转人工</h2>
<p>命中库存后任务会进入预占 / 发放链路没命中库存配置走 `manual_review` 会落到人工处理</p>
<p>命中库存后任务会进入预占 / 发放链路配置为 `tencent_claim_assisted` 时会进入用户登录 + 客服确认 + 后端自动兑换配置走 `manual_review` 会落到人工处理</p>
</article>
</section>
+20 -4
View File
@@ -8,17 +8,33 @@ import { clearAdminSession, getAdminRole, getAdminTokenExpiresAt, getAdminUserna
import { formatAdminDateTime } from '@/utils/admin-time'
const router = useRouter()
const isAdmin = computed(() => getAdminRole() === 'admin')
const currentRole = computed(() => getAdminRole())
const isAdmin = computed(() => currentRole.value === 'admin')
const isOperator = computed(() => currentRole.value === 'operator')
const roleLabel = computed(() => {
if (currentRole.value === 'admin') {
return '管理员'
}
if (currentRole.value === 'support') {
return '客服'
}
return '普通运营'
})
const navItems = computed(() => {
const baseItems = [
{ to: '/admin/dashboard', label: '概览' },
{ to: '/admin/orders', label: '订单' },
{ to: '/admin/tasks', label: '任务' },
{ to: '/admin/inventory', label: '库存' },
{ to: '/admin/message-deliveries', label: '消息发送' },
{ to: '/admin/webhook-events', label: 'Webhook' },
]
if (isAdmin.value || isOperator.value) {
baseItems.splice(3, 0, { to: '/admin/inventory', label: '库存' })
baseItems.push({ to: '/admin/webhook-events', label: 'Webhook' })
}
if (isAdmin.value) {
baseItems.splice(1, 0, { to: '/admin/users', label: '用户' })
baseItems.push({ to: '/admin/platform-shops', label: 'Agiso店铺' })
@@ -54,7 +70,7 @@ async function submitLogout() {
<span>当前账号</span>
<strong>{{ getAdminUsername() || '未读取' }}</strong>
<span>当前角色</span>
<strong>{{ getAdminRole() === 'admin' ? '管理员' : '普通运营' }}</strong>
<strong>{{ roleLabel }}</strong>
<span>登录有效期</span>
<strong>{{ formatAdminDateTime(getAdminTokenExpiresAt()) }}</strong>
</div>
@@ -1,12 +1,14 @@
<script setup lang="ts">
import { onBeforeUnmount, onMounted, reactive, ref } from 'vue'
import { computed, onBeforeUnmount, onMounted, reactive, ref } from 'vue'
import { useRoute } from 'vue-router'
import AdminStatusTag from '@/components/admin/AdminStatusTag.vue'
import { showConfirm, showError, showSuccess } from '@/lib/feedback'
import {
closeAdminTask,
confirmAdminTaskAssistedRole,
completeAdminTaskManualDispatch,
redeemAdminTaskAssisted,
fetchAdminTaskScreenshot,
fetchAdminTaskDetail,
markAdminTaskManualReview,
@@ -31,6 +33,16 @@ const manualDispatchForm = reactive({
deliveredCredential: '',
resultMessage: '',
})
const canOperateTasks = computed(() => hasAdminRole('operator'))
const canViewSensitiveTaskData = computed(() => Boolean(detail.value?.operations.canViewSensitiveTaskData))
const claimUrl = computed(() => lastClaimUrl.value || detail.value?.claimToken?.claimUrl || '')
const screenshotSectionTitle = computed(() => {
if (detail.value?.task.status === 'redeemed') {
return '结果截图'
}
return detail.value?.review.required ? '客服复核截图' : '结果截图'
})
async function loadDetail() {
loading.value = true
@@ -168,7 +180,10 @@ onBeforeUnmount(clearScreenshotPreview)
<p>系统绑定<AdminStatusTag :status="detail.task.systemBindingStatus" /> · 完整绑定<AdminStatusTag :status="detail.task.userBindingStatus" /></p>
<p>角色{{ detail.task.roleName || '-' }} / {{ detail.task.roleId || '-' }}</p>
<p>最后错误{{ detail.task.lastError || '-' }}</p>
<p v-if="lastClaimUrl">新领取链接{{ lastClaimUrl }}</p>
<p v-if="claimUrl">
领取链接
<a class="claim-link" :href="claimUrl" target="_blank" rel="noreferrer">{{ claimUrl }}</a>
</p>
</section>
<section class="action-row">
@@ -182,7 +197,7 @@ onBeforeUnmount(clearScreenshotPreview)
重试任务
</el-button>
<el-button
v-if="hasAdminRole('admin')"
v-if="detail.operations.canRegenerateClaimLink"
:disabled="!detail.operations.canRegenerateClaimLink"
:loading="actionLoading"
round
@@ -191,7 +206,33 @@ onBeforeUnmount(clearScreenshotPreview)
重发链接
</el-button>
<el-button
v-if="hasAdminRole('admin')"
v-if="detail.operations.canSupportConfirmRole"
:loading="actionLoading"
round
type="warning"
@click="runAction(
() => confirmAdminTaskAssistedRole(detail!.task.taskId),
'角色已确认',
`确认以客服身份锁定任务 ${detail!.task.taskNo} 当前识别到的角色信息吗?`
)"
>
客服确认角色
</el-button>
<el-button
v-if="detail.operations.canSupportRedeem"
:loading="actionLoading"
round
type="success"
@click="runAction(
() => redeemAdminTaskAssisted(detail!.task.taskId),
'兑换任务已启动',
`确认开始执行任务 ${detail!.task.taskNo} 的自动兑换吗?`
)"
>
客服开始兑换
</el-button>
<el-button
v-if="canOperateTasks"
:disabled="!detail.operations.canMarkManualReview"
:loading="actionLoading"
round
@@ -200,7 +241,7 @@ onBeforeUnmount(clearScreenshotPreview)
转人工
</el-button>
<el-button
v-if="hasAdminRole('admin') && detail.operations.canCompleteManualDispatch"
v-if="canOperateTasks && detail.operations.canCompleteManualDispatch"
:loading="actionLoading"
round
type="success"
@@ -209,7 +250,7 @@ onBeforeUnmount(clearScreenshotPreview)
人工完成
</el-button>
<el-button
v-if="hasAdminRole('admin') && detail.operations.canCompleteManualDispatch"
v-if="canOperateTasks && detail.operations.canCompleteManualDispatch"
:loading="actionLoading"
round
type="danger"
@@ -219,7 +260,7 @@ onBeforeUnmount(clearScreenshotPreview)
履约失败
</el-button>
<el-button
v-if="hasAdminRole('admin')"
v-if="canOperateTasks"
:disabled="!detail.operations.canClose"
:loading="actionLoading"
round
@@ -240,12 +281,20 @@ onBeforeUnmount(clearScreenshotPreview)
<tr><th>履约状态</th><td><AdminStatusTag :status="detail.task.deliveryStatus || ''" /></td></tr>
<tr><th>结果代码</th><td>{{ detail.task.resultCode || '-' }}</td></tr>
<tr><th>结果说明</th><td>{{ detail.task.resultMessage || '-' }}</td></tr>
<tr><th>库存凭据</th><td>{{ detail.inventory?.displayValue || '-' }}</td></tr>
<tr><th>凭据类型</th><td>{{ detail.inventory?.credentialType || '-' }}</td></tr>
<tr><th>库存状态</th><td><AdminStatusTag :status="detail.inventory?.status || ''" /></td></tr>
<tr><th>Claim Token</th><td>{{ detail.claimToken?.token || '-' }}</td></tr>
<tr v-if="canViewSensitiveTaskData"><th>库存凭据</th><td>{{ detail.inventory?.displayValue || '-' }}</td></tr>
<tr v-if="canViewSensitiveTaskData"><th>凭据类型</th><td>{{ detail.inventory?.credentialType || '-' }}</td></tr>
<tr v-if="canViewSensitiveTaskData"><th>库存状态</th><td><AdminStatusTag :status="detail.inventory?.status || ''" /></td></tr>
<tr v-if="canViewSensitiveTaskData"><th>Claim Token</th><td>{{ detail.claimToken?.token || '-' }}</td></tr>
<tr v-else><th>库存 / Token</th><td>客服账号不可查看库存凭据与原始领取 Token</td></tr>
<tr><th>Token 状态</th><td><AdminStatusTag :status="detail.claimToken?.status || ''" /></td></tr>
<tr><th>Token 过期</th><td>{{ formatAdminDateTime(detail.claimToken?.expiredAt) }}</td></tr>
<tr>
<th>领取链接</th>
<td>
<a v-if="claimUrl" class="claim-link" :href="claimUrl" target="_blank" rel="noreferrer">{{ claimUrl }}</a>
<span v-else>-</span>
</td>
</tr>
<tr><th>浏览器会话</th><td>{{ detail.task.browserSessionId || '-' }}</td></tr>
<tr><th>用户打开链接</th><td>{{ formatAdminDateTime(detail.task.claimedAt) }}</td></tr>
<tr><th>用户提交绑定</th><td>{{ formatAdminDateTime(detail.task.roleConfirmedAt) }}</td></tr>
@@ -295,7 +344,7 @@ onBeforeUnmount(clearScreenshotPreview)
</div>
<div v-if="binding.invalidReason" class="binding-meta">作废原因{{ binding.invalidReason }}</div>
</td>
<td>{{ binding.displayValue || '-' }}</td>
<td>{{ canViewSensitiveTaskData ? (binding.displayValue || '-') : '客服不可见' }}</td>
<td>
<div>绑定 {{ formatAdminDateTime(binding.createdAt) }}</div>
<div class="binding-meta">消费 {{ formatAdminDateTime(binding.consumedAt) }}</div>
@@ -328,6 +377,7 @@ onBeforeUnmount(clearScreenshotPreview)
<span>外部流水 / 单号</span>
<el-input
v-model="manualDispatchForm.deliveryReference"
:disabled="!canOperateTasks"
maxlength="120"
placeholder="例如快递单号、平台消息回执号"
/>
@@ -336,6 +386,7 @@ onBeforeUnmount(clearScreenshotPreview)
<span>已交付内容</span>
<el-input
v-model="manualDispatchForm.deliveredCredential"
:disabled="!canOperateTasks"
maxlength="500"
placeholder="可填写人工发送的卡密、链接或关键信息"
type="textarea"
@@ -346,6 +397,7 @@ onBeforeUnmount(clearScreenshotPreview)
<span>处理备注</span>
<el-input
v-model="manualDispatchForm.resultMessage"
:disabled="!canOperateTasks"
maxlength="500"
placeholder="说明实际履约结果,失败时建议写清原因"
type="textarea"
@@ -379,10 +431,10 @@ onBeforeUnmount(clearScreenshotPreview)
</section>
<section v-if="detail.screenshotUrl" class="table-card">
<h3>结果截图</h3>
<h3>{{ screenshotSectionTitle }}</h3>
<p v-if="!screenshotPreviewUrl" class="screenshot-empty">截图加载中或当前不可读取</p>
<a v-else class="screenshot-link" :href="screenshotPreviewUrl" target="_blank" rel="noreferrer">打开原图</a>
<img v-if="screenshotPreviewUrl" class="screenshot-preview" :src="screenshotPreviewUrl" alt="任务兑换截图" />
<img v-if="screenshotPreviewUrl" class="screenshot-preview" :src="screenshotPreviewUrl" :alt="screenshotSectionTitle" />
</section>
</template>
</section>
@@ -392,6 +444,7 @@ onBeforeUnmount(clearScreenshotPreview)
.admin-panel { display: grid; gap: 16px; }
.panel-header h1 { margin: 0; color: #1d3555; }
.panel-header p { margin: 8px 0 0; color: #64748b; }
.claim-link { color: #175cd3; text-decoration: none; word-break: break-all; }
.info-card,.table-card,.empty-block,.error-copy {
padding: 18px; border-radius: 20px; background: rgba(255,255,255,.94); border: 1px solid rgba(86,108,138,.1);
}
@@ -287,7 +287,7 @@ function handleActionCommand(command: `${AdminTaskActionKey}:${number}`) {
重试
</el-button>
<div
v-if="hasAdminRole('admin')"
v-if="hasAdminRole('operator')"
class="more-action-wrap"
@click.stop
>
@@ -37,6 +37,18 @@ function isCurrentUser(userId: number) {
return getAdminUserId() === userId
}
function formatRoleLabel(role: AdminRole) {
if (role === 'admin') {
return '管理员'
}
if (role === 'support') {
return '客服'
}
return '普通运营'
}
async function loadUsers(page = pagination.value.page) {
if (!hasAdminRole('admin')) {
loading.value = false
@@ -90,11 +102,13 @@ async function submitCreate() {
}
}
async function toggleRole(item: AdminUserListItem) {
const nextRole: AdminRole = item.role === 'admin' ? 'operator' : 'admin'
async function updateRole(item: AdminUserListItem, nextRole: AdminRole) {
if (item.role === nextRole) {
return
}
try {
await showConfirm(`确认将 ${item.username} 调整为${nextRole === 'admin' ? '管理员' : '普通运营'}吗?`, '确认操作', {
await showConfirm(`确认将 ${item.username} 调整为${formatRoleLabel(nextRole)}吗?`, '确认操作', {
type: 'warning',
confirmButtonText: '继续执行',
cancelButtonText: '取消',
@@ -202,6 +216,7 @@ onMounted(loadUsers)
<input v-model="createPassword" class="text-input" type="password" placeholder="新密码,至少 8 位" />
<select v-model="createRole" class="text-input select-input">
<option value="operator">普通运营</option>
<option value="support">客服</option>
<option value="admin">管理员</option>
</select>
<el-button :loading="creating" round type="primary" @click="submitCreate">新增用户</el-button>
@@ -228,7 +243,7 @@ onMounted(loadUsers)
<tr v-for="item in items" :key="item.userId">
<td>{{ item.userId }}</td>
<td>{{ item.username }}</td>
<td>{{ item.role === 'admin' ? '管理员' : '普通运营' }}</td>
<td>{{ formatRoleLabel(item.role) }}</td>
<td><AdminStatusTag :status="item.status" /></td>
<td>{{ formatAdminDateTime(item.createdAt) }}</td>
<td>{{ formatAdminDateTime(item.updatedAt) }}</td>
@@ -238,9 +253,25 @@ onMounted(loadUsers)
:loading="actionLoadingId === item.userId"
link
:disabled="isCurrentUser(item.userId)"
@click="toggleRole(item)"
@click="updateRole(item, 'admin')"
>
{{ item.role === 'admin' ? '设为运营' : '设为管理员' }}
设为管理员
</el-button>
<el-button
:loading="actionLoadingId === item.userId"
link
:disabled="isCurrentUser(item.userId)"
@click="updateRole(item, 'operator')"
>
设为运营
</el-button>
<el-button
:loading="actionLoadingId === item.userId"
link
:disabled="isCurrentUser(item.userId)"
@click="updateRole(item, 'support')"
>
设为客服
</el-button>
<el-button
:loading="actionLoadingId === item.userId"
+5 -1
View File
@@ -62,6 +62,10 @@ const helperText = computed(() => {
return '正在加载领取任务'
}
if (task.value.requiresSupportReview) {
return `订单 ${order.value?.platformOrderId || '-'} · 登录后请联系人工客服继续确认和兑换`
}
return `订单 ${order.value?.platformOrderId || '-'} · 任务 ${task.value.taskNo}`
})
</script>
@@ -135,7 +139,7 @@ const helperText = computed(() => {
:can-confirm-role="canConfirmRole"
confirm-action-label="确认当前角色并继续"
:confirm-action-loading="roleConfirmLoading"
:confirm-action-visible="!roleConfirmed"
:confirm-action-visible="!roleConfirmed && !task?.requiresSupportReview"
:confirm-readonly="true"
:hide-redeem-form="true"
:login-type-label="loginTypeLabel"