审核详细优化

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