MatchmakerAudit.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738
  1. <template>
  2. <div class="matchmaker-audit-container">
  3. <h2 class="page-title">红娘审核</h2>
  4. <el-card shadow="never" class="toolbar-card">
  5. <el-space wrap>
  6. <el-input
  7. v-model="filters.name"
  8. placeholder="按姓名模糊搜索"
  9. clearable
  10. style="width: 200px"
  11. @keyup.enter="loadList"
  12. >
  13. <template #append>
  14. <el-button icon="Search" @click="loadList" />
  15. </template>
  16. </el-input>
  17. <el-input
  18. v-model="filters.phone"
  19. placeholder="按手机号模糊搜索"
  20. clearable
  21. style="width: 200px"
  22. @keyup.enter="loadList"
  23. >
  24. <template #append>
  25. <el-button icon="Search" @click="loadList" />
  26. </template>
  27. </el-input>
  28. <el-button
  29. type="primary"
  30. :disabled="selectedRows.length === 0"
  31. @click="handleBatchAudit"
  32. style="margin-left: 10px"
  33. >
  34. 批量审核{{ selectedRows.length > 0 ? ` (${selectedRows.length})` : '' }}
  35. </el-button>
  36. <el-button icon="Refresh" @click="resetFilters">重置</el-button>
  37. </el-space>
  38. </el-card>
  39. <el-card shadow="never" class="table-card">
  40. <el-table
  41. v-loading="loading"
  42. :data="list"
  43. stripe
  44. @selection-change="handleSelectionChange"
  45. >
  46. <template #empty>
  47. <div class="custom-empty-state">
  48. <el-icon class="empty-icon"><User /></el-icon>
  49. <div class="empty-text">暂无红娘申请</div>
  50. <div class="empty-hint">等待用户提交申请后在此审核</div>
  51. </div>
  52. </template>
  53. <el-table-column type="selection" width="55" :selectable="row => !isAudited(row)" />
  54. <el-table-column type="index" label="序号" width="60" />
  55. <el-table-column prop="name" label="姓名" min-width="100">
  56. <template #default="{ row }">
  57. <span class="data-highlight">{{ row.name || '-' }}</span>
  58. </template>
  59. </el-table-column>
  60. <el-table-column prop="phone" label="手机号" min-width="140" />
  61. <el-table-column prop="age" label="年龄" width="80" align="center" />
  62. <el-table-column prop="gender" label="性别" width="90" align="center">
  63. <template #default="{ row }">
  64. <el-tag size="small" effect="light">
  65. {{ row.gender === 1 ? '男' : row.gender === 2 ? '女' : '未知' }}
  66. </el-tag>
  67. </template>
  68. </el-table-column>
  69. <el-table-column prop="area" label="地区" min-width="140" />
  70. <el-table-column prop="experience" label="经验" min-width="140" show-overflow-tooltip />
  71. <el-table-column prop="introduction" label="简介" min-width="160" show-overflow-tooltip />
  72. <el-table-column prop="createTime" label="申请时间" width="180">
  73. <template #default="{ row }">
  74. <span class="text-muted">{{ row.createTime || row.create_time || '-' }}</span>
  75. </template>
  76. </el-table-column>
  77. <el-table-column label="审核原因" min-width="150" show-overflow-tooltip>
  78. <template #default="{ row }">
  79. <span class="text-muted">{{ row.reason || '-' }}</span>
  80. </template>
  81. </el-table-column>
  82. <el-table-column label="操作" width="250" fixed="right">
  83. <template #default="{ row }">
  84. <el-button
  85. type="info"
  86. size="small"
  87. link
  88. @click="handleViewDetail(row)"
  89. >
  90. 详情
  91. </el-button>
  92. <el-button
  93. v-if="!isAudited(row)"
  94. type="primary"
  95. size="small"
  96. @click="handleAudit(row)"
  97. :loading="approvingId === row.applyId"
  98. >
  99. 审核
  100. </el-button>
  101. <el-tag
  102. v-else-if="row.status === 0"
  103. type="success"
  104. size="small"
  105. effect="light"
  106. >
  107. 审核通过
  108. </el-tag>
  109. <el-tag
  110. v-else-if="row.status === 1"
  111. class="audit-rejected-tag"
  112. size="small"
  113. effect="light"
  114. >
  115. 审核未通过
  116. </el-tag>
  117. <el-button
  118. type="danger"
  119. size="small"
  120. link
  121. @click="handleDelete(row)"
  122. :loading="deletingId === row.applyId"
  123. >
  124. 删除
  125. </el-button>
  126. </template>
  127. </el-table-column>
  128. </el-table>
  129. <div class="pagination-container">
  130. <el-pagination
  131. v-model:current-page="currentPage"
  132. v-model:page-size="pageSize"
  133. :total="total"
  134. :page-sizes="[10, 20, 50, 100]"
  135. layout="total, sizes, prev, pager, next, jumper"
  136. @size-change="loadList"
  137. @current-change="loadList"
  138. />
  139. </div>
  140. </el-card>
  141. <!-- 详情对话框 -->
  142. <el-dialog
  143. v-model="detailDialogVisible"
  144. title="红娘申请详情"
  145. width="800px"
  146. :close-on-click-modal="false"
  147. >
  148. <div v-if="detailData" class="detail-content">
  149. <!-- 基本信息 -->
  150. <el-card shadow="never" class="detail-section">
  151. <template #header>
  152. <div class="section-header">
  153. <el-icon><User /></el-icon>
  154. <span>基本信息</span>
  155. </div>
  156. </template>
  157. <el-descriptions :column="2" border>
  158. <el-descriptions-item label="姓名">
  159. {{ detailData.name || '-' }}
  160. </el-descriptions-item>
  161. <el-descriptions-item label="手机号">
  162. {{ detailData.phone || '-' }}
  163. </el-descriptions-item>
  164. <el-descriptions-item label="邮箱">
  165. {{ detailData.email || '-' }}
  166. </el-descriptions-item>
  167. <el-descriptions-item label="年龄">
  168. {{ detailData.age || '-' }}
  169. </el-descriptions-item>
  170. <el-descriptions-item label="性别">
  171. <el-tag v-if="detailData.gender === 1" type="primary" size="small">男</el-tag>
  172. <el-tag v-else-if="detailData.gender === 2" type="danger" size="small">女</el-tag>
  173. <span v-else>-</span>
  174. </el-descriptions-item>
  175. <el-descriptions-item label="所在地区">
  176. {{ detailData.area || '-' }}
  177. </el-descriptions-item>
  178. <el-descriptions-item label="用户ID">
  179. {{ detailData.userId || '-' }}
  180. </el-descriptions-item>
  181. <el-descriptions-item label="申请ID">
  182. {{ detailData.applyId || '-' }}
  183. </el-descriptions-item>
  184. </el-descriptions>
  185. </el-card>
  186. <!-- 红娘信息 -->
  187. <el-card shadow="never" class="detail-section">
  188. <template #header>
  189. <div class="section-header">
  190. <el-icon><Star /></el-icon>
  191. <span>红娘信息</span>
  192. </div>
  193. </template>
  194. <el-descriptions :column="2" border>
  195. <el-descriptions-item label="婚姻介绍经验" :span="2">
  196. {{ detailData.experience || '-' }}
  197. </el-descriptions-item>
  198. <el-descriptions-item label="可服务时间" :span="2">
  199. {{ detailData.serverTime || '-' }}
  200. </el-descriptions-item>
  201. <el-descriptions-item label="个人简介" :span="2">
  202. <div class="introduction-content">
  203. {{ detailData.introduction || '-' }}
  204. </div>
  205. </el-descriptions-item>
  206. </el-descriptions>
  207. </el-card>
  208. <!-- 审核信息 -->
  209. <el-card shadow="never" class="detail-section" v-if="detailData.status !== null && detailData.status !== undefined">
  210. <template #header>
  211. <div class="section-header">
  212. <el-icon><Document /></el-icon>
  213. <span>审核信息</span>
  214. </div>
  215. </template>
  216. <el-descriptions :column="2" border>
  217. <el-descriptions-item label="审核状态">
  218. <el-tag
  219. v-if="detailData.status === 0"
  220. type="success"
  221. size="small"
  222. >
  223. 审核通过
  224. </el-tag>
  225. <el-tag
  226. v-else-if="detailData.status === 1"
  227. class="audit-rejected-tag"
  228. size="small"
  229. >
  230. 审核未通过
  231. </el-tag>
  232. <el-tag
  233. v-else
  234. type="info"
  235. size="small"
  236. >
  237. 待审核
  238. </el-tag>
  239. </el-descriptions-item>
  240. <el-descriptions-item label="审核原因">
  241. {{ detailData.reason || '-' }}
  242. </el-descriptions-item>
  243. <el-descriptions-item label="申请时间">
  244. {{ detailData.createTime || detailData.create_time || '-' }}
  245. </el-descriptions-item>
  246. <el-descriptions-item label="更新时间">
  247. {{ detailData.updateTime || detailData.update_time || '-' }}
  248. </el-descriptions-item>
  249. </el-descriptions>
  250. </el-card>
  251. </div>
  252. <template #footer>
  253. <el-button @click="detailDialogVisible = false">关闭</el-button>
  254. </template>
  255. </el-dialog>
  256. <!-- 审核弹框 -->
  257. <el-dialog
  258. v-model="auditDialogVisible"
  259. :title="auditDialogTitle"
  260. width="600px"
  261. :close-on-click-modal="false"
  262. >
  263. <!-- 批量审核进度显示 -->
  264. <div v-if="isBatchAudit && batchAuditList.length > 0" class="batch-audit-progress">
  265. 进度:{{ currentBatchIndex }} / {{ batchAuditList.length }}
  266. </div>
  267. <!-- 当前审核数据信息 -->
  268. <div v-if="isBatchAudit && currentBatchRow" class="current-audit-info">
  269. <el-descriptions :column="2" border size="small">
  270. <el-descriptions-item label="姓名">{{ currentBatchRow.name || '-' }}</el-descriptions-item>
  271. <el-descriptions-item label="手机号">{{ currentBatchRow.phone || '-' }}</el-descriptions-item>
  272. <el-descriptions-item label="年龄">{{ currentBatchRow.age || '-' }}</el-descriptions-item>
  273. <el-descriptions-item label="性别">
  274. {{ currentBatchRow.gender === 1 ? '男' : currentBatchRow.gender === 2 ? '女' : '未知' }}
  275. </el-descriptions-item>
  276. <el-descriptions-item label="地区" :span="2">{{ currentBatchRow.area || '-' }}</el-descriptions-item>
  277. </el-descriptions>
  278. </div>
  279. <el-form :model="auditForm" :rules="auditRules" ref="auditFormRef" label-width="100px" style="margin-top: 20px">
  280. <el-form-item label="审核结果" prop="approved">
  281. <el-radio-group v-model="auditForm.approved">
  282. <el-radio :label="true">同意</el-radio>
  283. <el-radio :label="false">不同意</el-radio>
  284. </el-radio-group>
  285. </el-form-item>
  286. <el-form-item label="审核原因" prop="reason">
  287. <el-input
  288. v-model="auditForm.reason"
  289. type="textarea"
  290. :rows="4"
  291. placeholder="请输入审核原因(必填)"
  292. maxlength="500"
  293. show-word-limit
  294. />
  295. </el-form-item>
  296. </el-form>
  297. <template #footer>
  298. <el-button @click="handleCancelBatchAudit">取消</el-button>
  299. <el-button
  300. type="primary"
  301. @click="submitAudit"
  302. :loading="auditSubmitting"
  303. >
  304. {{ isBatchAudit && currentBatchIndex < batchAuditList.length ? '提交并继续' : '确定' }}
  305. </el-button>
  306. </template>
  307. </el-dialog>
  308. </div>
  309. </template>
  310. <script setup>
  311. import { ref, reactive, computed, onMounted } from 'vue'
  312. import { ElMessage, ElMessageBox } from 'element-plus'
  313. import { User, Star, Document } from '@element-plus/icons-vue'
  314. import request from '@/utils/request'
  315. import { API_ENDPOINTS } from '@/config/api'
  316. const loading = ref(false)
  317. const list = ref([])
  318. const total = ref(0)
  319. const currentPage = ref(1)
  320. const pageSize = ref(10)
  321. const approvingId = ref(null)
  322. const deletingId = ref(null)
  323. const selectedRows = ref([])
  324. const auditDialogVisible = ref(false)
  325. const auditSubmitting = ref(false)
  326. const auditFormRef = ref(null)
  327. const currentAuditRow = ref(null)
  328. const isBatchAudit = ref(false)
  329. const batchAuditList = ref([]) // 批量审核的列表
  330. const currentBatchIndex = ref(1) // 当前审核的索引(从1开始)
  331. const currentBatchRow = ref(null) // 当前审核的行数据
  332. const auditDialogTitle = ref('审核') // 弹框标题
  333. // 详情对话框相关
  334. const detailDialogVisible = ref(false)
  335. const detailData = ref(null)
  336. const filters = reactive({
  337. name: '',
  338. phone: ''
  339. })
  340. const auditForm = reactive({
  341. approved: true,
  342. reason: ''
  343. })
  344. const auditRules = {
  345. approved: [
  346. { required: true, message: '请选择审核结果', trigger: 'change' }
  347. ],
  348. reason: [
  349. { required: true, message: '请输入审核原因', trigger: 'blur' },
  350. { min: 1, max: 500, message: '审核原因长度在 1 到 500 个字符', trigger: 'blur' }
  351. ]
  352. }
  353. const loadList = async () => {
  354. loading.value = true
  355. try {
  356. const params = {
  357. page: currentPage.value,
  358. pageSize: pageSize.value
  359. }
  360. if (filters.name && filters.name.trim()) {
  361. params.name = filters.name.trim()
  362. }
  363. if (filters.phone && filters.phone.trim()) {
  364. params.phone = filters.phone.trim()
  365. }
  366. const res = await request.get(API_ENDPOINTS.MATCHMAKER_AUDIT_LIST, { params })
  367. if (res.code === 200) {
  368. const data = res.data || {}
  369. list.value = data.list || data.records || []
  370. total.value = data.total || list.value.length
  371. }
  372. } catch (error) {
  373. console.error('加载审核列表失败:', error)
  374. ElMessage.error('加载审核列表失败')
  375. } finally {
  376. loading.value = false
  377. }
  378. }
  379. const resetFilters = () => {
  380. filters.name = ''
  381. filters.phone = ''
  382. currentPage.value = 1
  383. loadList()
  384. }
  385. // 判断是否已审核通过(根据status字段判断,status=0表示审核通过)
  386. const isApproved = (row) => {
  387. return row.status === 0
  388. }
  389. // 判断是否已审核(status=0或1都表示已审核)
  390. const isAudited = (row) => {
  391. return row.status === 0 || row.status === 1
  392. }
  393. // 表格选择变化
  394. const handleSelectionChange = (selection) => {
  395. selectedRows.value = selection
  396. }
  397. // 打开审核弹框(单个)
  398. const handleAudit = (row) => {
  399. if (!row.userId) {
  400. ElMessage.error('用户ID不存在,无法审核')
  401. return
  402. }
  403. if (isAudited(row)) {
  404. ElMessage.warning('该申请已审核,无需重复操作')
  405. return
  406. }
  407. currentAuditRow.value = row
  408. isBatchAudit.value = false
  409. auditForm.approved = true
  410. auditForm.reason = ''
  411. auditDialogTitle.value = `审核 - ${row.name || '该用户'}`
  412. auditDialogVisible.value = true
  413. }
  414. // 批量审核
  415. const handleBatchAudit = () => {
  416. if (selectedRows.value.length === 0) {
  417. ElMessage.warning('请至少选择一条记录')
  418. return
  419. }
  420. // 过滤掉已审核的记录
  421. const unapprovedRows = selectedRows.value.filter(row => !isAudited(row))
  422. if (unapprovedRows.length === 0) {
  423. ElMessage.warning('所选记录均已审核,无需重复操作')
  424. return
  425. }
  426. // 初始化批量审核列表
  427. batchAuditList.value = unapprovedRows
  428. currentBatchIndex.value = 1
  429. currentAuditRow.value = null
  430. isBatchAudit.value = true
  431. auditForm.approved = true
  432. auditForm.reason = ''
  433. // 设置标题
  434. const count = unapprovedRows.length
  435. auditDialogTitle.value = count > 0 ? `批量审核 (${count}条)` : '批量审核'
  436. // 设置当前审核的行数据
  437. updateCurrentBatchRow()
  438. auditDialogVisible.value = true
  439. }
  440. // 更新当前批量审核的行数据
  441. const updateCurrentBatchRow = () => {
  442. if (isBatchAudit.value && batchAuditList.value.length > 0) {
  443. const index = currentBatchIndex.value - 1
  444. if (index >= 0 && index < batchAuditList.value.length) {
  445. currentBatchRow.value = batchAuditList.value[index]
  446. } else {
  447. currentBatchRow.value = null
  448. }
  449. }
  450. }
  451. // 批量审核分页变化
  452. const handleBatchPageChange = (page) => {
  453. currentBatchIndex.value = page
  454. updateCurrentBatchRow()
  455. // 重置表单
  456. auditForm.approved = true
  457. auditForm.reason = ''
  458. // 清除表单验证状态
  459. if (auditFormRef.value) {
  460. auditFormRef.value.clearValidate()
  461. }
  462. }
  463. // 取消批量审核
  464. const handleCancelBatchAudit = () => {
  465. if (isBatchAudit.value && batchAuditList.value.length > 0) {
  466. ElMessageBox.confirm(
  467. `还有 ${batchAuditList.value.length - currentBatchIndex.value + 1} 条记录未审核,确定要取消吗?`,
  468. '确认取消',
  469. {
  470. confirmButtonText: '确定取消',
  471. cancelButtonText: '继续审核',
  472. type: 'warning'
  473. }
  474. ).then(() => {
  475. auditDialogVisible.value = false
  476. resetBatchAudit()
  477. }).catch(() => {
  478. // 用户选择继续审核,不做任何操作
  479. })
  480. } else {
  481. auditDialogVisible.value = false
  482. resetBatchAudit()
  483. }
  484. }
  485. // 重置批量审核状态
  486. const resetBatchAudit = () => {
  487. batchAuditList.value = []
  488. currentBatchIndex.value = 1
  489. currentBatchRow.value = null
  490. isBatchAudit.value = false
  491. auditDialogTitle.value = '审核'
  492. auditForm.approved = true
  493. auditForm.reason = ''
  494. }
  495. // 提交审核
  496. const submitAudit = async () => {
  497. if (!auditFormRef.value) return
  498. try {
  499. await auditFormRef.value.validate()
  500. auditSubmitting.value = true
  501. if (isBatchAudit.value) {
  502. // 批量审核 - 逐条审核
  503. const row = currentBatchRow.value
  504. if (!row) {
  505. ElMessage.error('当前审核数据不存在')
  506. return
  507. }
  508. approvingId.value = row.applyId
  509. // 使用单条审核接口
  510. const res = await request.post(
  511. `${API_ENDPOINTS.MATCHMAKER_AUDIT_APPROVE}/${row.applyId}`,
  512. null,
  513. {
  514. params: {
  515. userId: row.userId,
  516. approved: auditForm.approved,
  517. reason: auditForm.reason
  518. }
  519. }
  520. )
  521. if (res.code === 200) {
  522. ElMessage.success(
  523. `${row.name || '该用户'} ${auditForm.approved ? '审核通过' : '审核不通过'}成功`
  524. )
  525. // 从批量审核列表中移除已审核的项
  526. const index = currentBatchIndex.value - 1
  527. batchAuditList.value.splice(index, 1)
  528. // 如果还有未审核的记录,自动跳转到下一条
  529. if (batchAuditList.value.length > 0) {
  530. // 删除后,如果当前索引超出范围(说明删除的是最后一条),则跳转到新的最后一条
  531. // 否则保持当前索引不变,因为后面的记录会前移,当前索引对应的就是下一条
  532. if (currentBatchIndex.value > batchAuditList.value.length) {
  533. currentBatchIndex.value = batchAuditList.value.length
  534. }
  535. // 更新标题
  536. const count = batchAuditList.value.length
  537. auditDialogTitle.value = count > 0 ? `批量审核 (${count}条)` : '批量审核'
  538. updateCurrentBatchRow()
  539. // 重置表单
  540. auditForm.approved = true
  541. auditForm.reason = ''
  542. // 清除表单验证状态
  543. if (auditFormRef.value) {
  544. auditFormRef.value.clearValidate()
  545. }
  546. } else {
  547. // 所有记录都已审核完成
  548. ElMessage.success('批量审核完成')
  549. auditDialogVisible.value = false
  550. selectedRows.value = []
  551. resetBatchAudit()
  552. loadList()
  553. }
  554. } else {
  555. ElMessage.error(res.msg || '审核失败')
  556. }
  557. } else {
  558. // 单个审核
  559. const row = currentAuditRow.value
  560. approvingId.value = row.applyId
  561. const res = await request.post(
  562. `${API_ENDPOINTS.MATCHMAKER_AUDIT_APPROVE}/${row.applyId}`,
  563. null,
  564. {
  565. params: {
  566. userId: row.userId,
  567. approved: auditForm.approved,
  568. reason: auditForm.reason
  569. }
  570. }
  571. )
  572. if (res.code === 200) {
  573. ElMessage.success(res.msg || (auditForm.approved ? '审核通过成功' : '审核不通过成功'))
  574. auditDialogVisible.value = false
  575. loadList()
  576. } else {
  577. ElMessage.error(res.msg || '审核失败')
  578. }
  579. }
  580. } catch (error) {
  581. if (error !== false) { // validate 失败会返回 false
  582. console.error('审核失败:', error)
  583. ElMessage.error(error.response?.data?.msg || error.message || '审核失败')
  584. }
  585. } finally {
  586. auditSubmitting.value = false
  587. approvingId.value = null
  588. }
  589. }
  590. // 查看详情
  591. const handleViewDetail = (row) => {
  592. detailData.value = { ...row }
  593. detailDialogVisible.value = true
  594. }
  595. // 删除申请
  596. const handleDelete = async (row) => {
  597. try {
  598. await ElMessageBox.confirm(
  599. `确定要删除 ${row.name || '该用户'} 的红娘申请吗?\n删除后该申请将不再显示在列表中,此操作为逻辑删除。`,
  600. '确认删除',
  601. {
  602. confirmButtonText: '确定删除',
  603. cancelButtonText: '取消',
  604. type: 'warning',
  605. dangerouslyUseHTMLString: false
  606. }
  607. )
  608. deletingId.value = row.applyId
  609. const res = await request.delete(
  610. `${API_ENDPOINTS.MATCHMAKER_AUDIT_DELETE}/${row.applyId}`
  611. )
  612. if (res.code === 200) {
  613. ElMessage.success('删除成功')
  614. loadList()
  615. } else {
  616. ElMessage.error(res.msg || '删除失败')
  617. }
  618. } catch (error) {
  619. if (error !== 'cancel') {
  620. console.error('删除失败:', error)
  621. ElMessage.error(error.response?.data?.msg || error.message || '删除失败')
  622. }
  623. } finally {
  624. deletingId.value = null
  625. }
  626. }
  627. onMounted(loadList)
  628. </script>
  629. <style scoped>
  630. @import '@/assets/list-common.css';
  631. .matchmaker-audit-container {
  632. padding: 0;
  633. }
  634. .batch-audit-progress {
  635. font-size: 14px;
  636. color: #606266;
  637. font-weight: 500;
  638. margin-bottom: 20px;
  639. padding: 10px 15px;
  640. background-color: #f5f7fa;
  641. border-radius: 4px;
  642. text-align: center;
  643. }
  644. .current-audit-info {
  645. margin-bottom: 20px;
  646. }
  647. .current-audit-info :deep(.el-descriptions__label) {
  648. font-weight: 500;
  649. }
  650. .audit-rejected-tag {
  651. background-color: #f4f4f5;
  652. border-color: #d3d4d6;
  653. color: #909399;
  654. }
  655. .detail-content {
  656. min-height: 200px;
  657. }
  658. .detail-section {
  659. margin-bottom: 20px;
  660. }
  661. .detail-section:last-child {
  662. margin-bottom: 0;
  663. }
  664. .section-header {
  665. display: flex;
  666. align-items: center;
  667. gap: 8px;
  668. font-weight: 500;
  669. }
  670. .introduction-content {
  671. white-space: pre-wrap;
  672. word-break: break-word;
  673. line-height: 1.6;
  674. }
  675. </style>