|
@@ -62,7 +62,8 @@
|
|
|
<el-table-column label="留言详情" align="center" prop="questionDetail" :show-overflow-tooltip="true" />
|
|
|
<el-table-column label="状态" align="center" prop="type" >
|
|
|
<template slot-scope="scope">
|
|
|
- <span>{{ scope.row.type == 1 ? '未回复' : '已回复' }}</span>
|
|
|
+ <span v-if="scope.row.type == 1"><el-tag type="danger">未回复</el-tag></span>
|
|
|
+ <span v-if="scope.row.type == 0"><el-tag>已回复</el-tag></span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="留言时间" align="center" prop="questionTime" >
|
|
@@ -336,7 +337,7 @@ export default {
|
|
|
if (this.form.id != null) {
|
|
|
this.form.type = 0;
|
|
|
updateLEAVEMESSAGE(this.form).then(response => {
|
|
|
- this.$modal.msgSuccess("修改成功");
|
|
|
+ this.$modal.msgSuccess("回复成功");
|
|
|
this.open = false;
|
|
|
this.getList();
|
|
|
});
|