|
@@ -7,7 +7,9 @@
|
|
|
<div v-show="props.problemData.isUserDeleted === 1" class="delete-label"></div>
|
|
<div v-show="props.problemData.isUserDeleted === 1" class="delete-label"></div>
|
|
|
<div :style="{ opacity: props.problemData.isUserDeleted === 1 ? 0.6 : 1 }">
|
|
<div :style="{ opacity: props.problemData.isUserDeleted === 1 ? 0.6 : 1 }">
|
|
|
<div style="display: flex; font-size: 12px">
|
|
<div style="display: flex; font-size: 12px">
|
|
|
- <div style="color: #00000073">评论人:{{ props.problemData.realname }}-{{ props.problemData.userName }} </div>
|
|
|
|
|
|
|
+ <div style="color: #00000073">
|
|
|
|
|
+ 评论人:{{ props.problemData.realname }}({{ props.problemData.userName }} )
|
|
|
|
|
+ </div>
|
|
|
<div style="margin-left: 20px; color: #00000073">日期:{{ props.problemData.createdAt }}</div>
|
|
<div style="margin-left: 20px; color: #00000073">日期:{{ props.problemData.createdAt }}</div>
|
|
|
<!-- <img src="@/assets/icons/phone.png" alt="" /> -->
|
|
<!-- <img src="@/assets/icons/phone.png" alt="" /> -->
|
|
|
<div class="single-contact">联系方式:{{ props.problemData.mobile }}</div>
|
|
<div class="single-contact">联系方式:{{ props.problemData.mobile }}</div>
|
|
@@ -24,7 +26,7 @@
|
|
|
隐藏
|
|
隐藏
|
|
|
</el-button>
|
|
</el-button>
|
|
|
<el-button
|
|
<el-button
|
|
|
- v-show="props.problemData.status === COMMENT_STATUS.REJECTED"
|
|
|
|
|
|
|
+ v-show="props.problemData.status !== COMMENT_STATUS.PASSED"
|
|
|
type="primary"
|
|
type="primary"
|
|
|
class="label-button"
|
|
class="label-button"
|
|
|
style="margin-left: auto; margin-right: 0"
|
|
style="margin-left: auto; margin-right: 0"
|
|
@@ -76,6 +78,7 @@
|
|
|
type="textarea"
|
|
type="textarea"
|
|
|
v-model="replyContent"
|
|
v-model="replyContent"
|
|
|
rows="4"
|
|
rows="4"
|
|
|
|
|
+ resize="none"
|
|
|
maxlength="200"
|
|
maxlength="200"
|
|
|
>
|
|
>
|
|
|
</el-input>
|
|
</el-input>
|