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