收口运行上下文命名
This commit is contained in:
@@ -11,14 +11,6 @@
|
||||
- Cloudtentacles 履约配置与调试
|
||||
- 内部通知和定时任务配置
|
||||
|
||||
## 已移除内容
|
||||
|
||||
- 腾讯浏览器调试入口 `/tx/browser`
|
||||
- 腾讯领取页 fallback
|
||||
- 人工兑换页面
|
||||
- 旧履约规则配置页
|
||||
- Agiso 店铺消息配置前端入口
|
||||
|
||||
## 本地开发
|
||||
|
||||
```bash
|
||||
|
||||
Vendored
+2
@@ -25,6 +25,7 @@ declare module 'vue' {
|
||||
ElDatePicker: typeof import('element-plus/es')['ElDatePicker']
|
||||
ElDescriptions: typeof import('element-plus/es')['ElDescriptions']
|
||||
ElDescriptionsItem: typeof import('element-plus/es')['ElDescriptionsItem']
|
||||
ElDialog: typeof import('element-plus/es')['ElDialog']
|
||||
ElDropdown: typeof import('element-plus/es')['ElDropdown']
|
||||
ElDropdownItem: typeof import('element-plus/es')['ElDropdownItem']
|
||||
ElDropdownMenu: typeof import('element-plus/es')['ElDropdownMenu']
|
||||
@@ -32,6 +33,7 @@ declare module 'vue' {
|
||||
ElForm: typeof import('element-plus/es')['ElForm']
|
||||
ElFormItem: typeof import('element-plus/es')['ElFormItem']
|
||||
ElIcon: typeof import('element-plus/es')['ElIcon']
|
||||
ElImage: typeof import('element-plus/es')['ElImage']
|
||||
ElInput: typeof import('element-plus/es')['ElInput']
|
||||
ElInputNumber: typeof import('element-plus/es')['ElInputNumber']
|
||||
ElMenu: typeof import('element-plus/es')['ElMenu']
|
||||
|
||||
@@ -22,7 +22,7 @@ export interface AdminTaskListItem {
|
||||
loginType: string
|
||||
roleName: string
|
||||
roleId: string
|
||||
browserSessionId: string
|
||||
runtimeSessionId: string
|
||||
claimedAt: string | null
|
||||
roleConfirmedAt: string | null
|
||||
redeemedAt: string | null
|
||||
|
||||
@@ -33,7 +33,7 @@ export interface ClaimTaskInfo {
|
||||
redeemedAt: string | null
|
||||
loginType: string
|
||||
lastError: string
|
||||
browserSessionId: string
|
||||
runtimeSessionId: string
|
||||
}
|
||||
|
||||
export interface ClaimOrderInfo {
|
||||
|
||||
@@ -65,8 +65,8 @@ defineProps<Props>()
|
||||
<span v-else-if="claimLinkInvalid">已失效</span>
|
||||
<span v-else>-</span>
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item label="浏览器会话">
|
||||
{{ detail.task.browserSessionId || '-' }}
|
||||
<el-descriptions-item label="运行上下文">
|
||||
{{ detail.task.runtimeSessionId || '-' }}
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item label="用户打开链接">
|
||||
{{ formatAdminDateTime(detail.task.claimedAt) }}
|
||||
|
||||
Reference in New Issue
Block a user