This commit is contained in:
hrx 2026-07-10 17:35:24 +08:00
parent 3854c483fe
commit 8c2ce03296

View File

@ -114,6 +114,7 @@
<el-table-column prop="consult_direction_name" label="咨询方向" min-width="220" show-overflow-tooltip /> <el-table-column prop="consult_direction_name" label="咨询方向" min-width="220" show-overflow-tooltip />
<el-table-column prop="content" label="需求描述" min-width="220" show-overflow-tooltip /> <el-table-column prop="content" label="需求描述" min-width="220" show-overflow-tooltip />
<el-table-column prop="update_time" label="提交时间" min-width="160" /> <el-table-column prop="update_time" label="提交时间" min-width="160" />
<el-table-column label="回复状态" min-width="110" align="center"> <el-table-column label="回复状态" min-width="110" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag <el-tag
@ -127,11 +128,11 @@
</el-tag> </el-tag>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="操作" width="110" align="center" fixed="right"> <el-table-column label="备注信息" min-width="220" show-overflow-tooltip>
<template slot-scope="scope"> <template slot-scope="scope">
<el-button type="text" size="small" @click="viewUser(scope.row)">详情</el-button> <span class="remark-cell" @click.stop="openRemark(scope.row)">
<el-button type="text" size="small" text="warning" @click="openRemark(scope.row)">备注</el-button> {{ scope.row.remark || '添加备注' }}
<!-- <el-button type="text" size="small" class="danger-text" @click="deleteRows([scope.row])">删除</el-button> --> </span>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -191,6 +192,7 @@
</div> </div>
</div> </div>
<div class="detail-section"> <div class="detail-section">
<span class="detail-label">咨询方向</span> <span class="detail-label">咨询方向</span>
<strong>{{ currentRow.consult_direction_name || '-' }}</strong> <strong>{{ currentRow.consult_direction_name || '-' }}</strong>
@ -243,7 +245,7 @@
v-model.trim="remarkText" v-model.trim="remarkText"
type="textarea" type="textarea"
:rows="6" :rows="6"
maxlength="300" maxlength="500"
show-word-limit show-word-limit
placeholder="请输入备注信息..." placeholder="请输入备注信息..."
/> />
@ -782,6 +784,14 @@ export default {
color: #f56c6c; color: #f56c6c;
} }
.remark-cell {
cursor: pointer;
}
.remark-cell:hover {
text-decoration: underline;
}
::v-deep .detail-dialog { ::v-deep .detail-dialog {
border-radius: 24px; border-radius: 24px;
overflow: hidden; overflow: hidden;
@ -874,10 +884,6 @@ export default {
word-break: break-word; word-break: break-word;
} }
.detail-remark-text {
color: #d97706;
}
.detail-divider { .detail-divider {
height: 1px; height: 1px;
margin: 24px 0; margin: 24px 0;