Codex Assistant
2025-10-05 0a48616045ddce1562584543a0e89e5144051fde
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
const { graphqlRequest } = require('../../lib/utils')
 
const DETAIL_QUERY = `
  query ActivityPlayerDetail($id: ID!) {
    activityPlayerDetail(id: $id) {
      id
      activityName
      projectName
      description
      feedback
      state
      playerInfo {
        id
        name
        phone
      }
      submissionFiles {
        id
        name
        fullUrl
        fullThumbUrl
        fileExt
        mediaType
      }
    }
  }
`
 
const APPROVE_MUTATION = `
  mutation ApproveActivityPlayer($id: ID!, $feedback: String) {
    approveActivityPlayer(activityPlayerId: $id, feedback: $feedback)
  }
`
 
const REJECT_MUTATION = `
  mutation RejectActivityPlayer($id: ID!, $feedback: String) {
    rejectActivityPlayer(activityPlayerId: $id, feedback: $feedback)
  }
`
 
Page({
  data: {
    loading: false,
    submitting: false,
    activityPlayerId: null,
    detail: null,
    feedback: ''
  },
 
  onLoad(options) {
    if (options && options.id) {
      if (typeof this.getOpenerEventChannel === 'function') {
        this.eventChannel = this.getOpenerEventChannel()
      }
      this.setData({ activityPlayerId: options.id })
      this.loadDetail()
    } else {
      wx.showToast({ title: '缺少报名ID', icon: 'none' })
      setTimeout(() => wx.navigateBack(), 800)
    }
  },
 
  async loadDetail() {
    if (!this.data.activityPlayerId) {
      return
    }
 
    this.setData({ loading: true })
 
    try {
      const result = await graphqlRequest(DETAIL_QUERY, { id: this.data.activityPlayerId })
      const detail = result && result.activityPlayerDetail
 
      if (!detail) {
        wx.showToast({ title: '未找到报名信息', icon: 'none' })
        return
      }
 
      this.setData({
        detail: {
          ...detail,
          stateText: this.getStateText(detail.state),
          submissionFiles: (detail.submissionFiles || []).map(file => ({
            id: file.id,
            name: file.name,
            url: file.fullUrl || file.fullThumbUrl || ''
          }))
        },
        feedback: detail.feedback || ''
      })
    } catch (error) {
      console.error('加载审核详情失败:', error)
      wx.showToast({ title: '加载失败', icon: 'none' })
    } finally {
      this.setData({ loading: false })
    }
  },
 
  onFeedbackInput(e) {
    this.setData({ feedback: e.detail.value })
  },
 
  onApprove() {
    this.handleAudit('APPROVE')
  },
 
  onReject() {
    this.handleAudit('REJECT')
  },
 
  async handleAudit(action) {
    if (!this.data.activityPlayerId) {
      return
    }
 
    const mutation = action === 'APPROVE' ? APPROVE_MUTATION : REJECT_MUTATION
    const successText = action === 'APPROVE' ? '审核通过' : '已驳回'
 
    this.setData({ submitting: true })
 
    try {
      const variables = {
        id: Number(this.data.activityPlayerId),
        feedback: this.data.feedback ? this.data.feedback.trim() : null
      }
      const result = await graphqlRequest(mutation, variables)
      const success = result && (action === 'APPROVE' ? result.approveActivityPlayer : result.rejectActivityPlayer)
 
      if (success) {
        wx.showToast({ title: successText, icon: 'success' })
        if (this.eventChannel) {
          this.eventChannel.emit('auditUpdated', { id: this.data.activityPlayerId })
        }
        setTimeout(() => wx.navigateBack(), 600)
      } else {
        wx.showToast({ title: '操作失败', icon: 'none' })
      }
    } catch (error) {
      console.error('提交审核决策失败:', error)
      wx.showToast({ title: '操作失败', icon: 'none' })
    } finally {
      this.setData({ submitting: false })
    }
  },
 
  previewFile(e) {
    const url = e.currentTarget.dataset.url
    if (url) {
      wx.navigateTo({ url: `/pages/webview/webview?url=${encodeURIComponent(url)}` })
    }
  },
 
  getStateText(state) {
    switch (state) {
      case 0:
        return '未审核'
      case 1:
        return '审核通过'
      case 2:
        return '审核驳回'
      default:
        return '未知状态'
    }
  }
})