审核详细优化

This commit is contained in:
WindowBird 2025-11-14 14:25:04 +08:00
parent ff177972d3
commit 2a7419131e

View File

@ -115,11 +115,11 @@
<!-- 评论输入框 --> <!-- 评论输入框 -->
<view class="info-card"> <view class="info-card">
<view class="card-title">评论</view> <view class="card-title">审核意见</view>
<textarea <textarea
v-model="commentText" v-model="commentText"
class="comment-textarea" class="comment-textarea"
placeholder="请输入评论内容" placeholder="请输入审核意见"
:maxlength="500" :maxlength="500"
:auto-height="true" :auto-height="true"
></textarea> ></textarea>
@ -214,8 +214,8 @@ const getTaskStatusType = (status) => {
const typeMap = { const typeMap = {
'1': 'primary', // '1': 'primary', //
'2': 'warning', // '2': 'warning', //
'3': 'success', // '4': 'success', //
'4': 'error' // '6': 'error' //
} }
return typeMap[status] || 'primary' return typeMap[status] || 'primary'
} }
@ -230,7 +230,7 @@ const getVerifyStatusLabel = (status) => {
const getVerifyStatusType = (status) => { const getVerifyStatusType = (status) => {
const typeMap = { const typeMap = {
'1': 'success', // '1': 'success', //
'2': 'error', // '2': 'error', // error
'3': 'warning' // '3': 'warning' //
} }
return typeMap[status] || 'primary' return typeMap[status] || 'primary'