...
|
...
|
@@ -70,19 +70,20 @@ export default function() { |
|
|
}
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
title: '回复人',
|
|
|
align: 'center',
|
|
|
render: (h, params) => {
|
|
|
let answerUserName = params.row.answerUserName;
|
|
|
|
|
|
if (answerUserName) {
|
|
|
return params.row.answerUserName;
|
|
|
} else {
|
|
|
return '—';
|
|
|
}
|
|
|
},
|
|
|
},
|
|
|
// {
|
|
|
// title: '回复人',
|
|
|
// align: 'center',
|
|
|
// render: (h, params) => {
|
|
|
// let answerUserName = params.row.answerUserName;
|
|
|
//
|
|
|
// if (answerUserName) {
|
|
|
// return params.row.answerUserName;
|
|
|
// } else {
|
|
|
// return '—';
|
|
|
// }
|
|
|
// },
|
|
|
// },
|
|
|
{
|
|
|
title: '咨询及回复时间',
|
|
|
key: 'image',
|
...
|
...
|
@@ -98,44 +99,45 @@ export default function() { |
|
|
);
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
title: '操作',
|
|
|
key: 'action',
|
|
|
align: 'center',
|
|
|
render: (h, params) => {
|
|
|
const row = params.row;
|
|
|
|
|
|
let status = row.operateFlag;
|
|
|
|
|
|
if (status === 2) {
|
|
|
return (
|
|
|
<div class="cell-action-row">
|
|
|
<i-button type="error" size="small"
|
|
|
onClick={() => this.editAnswer(row)}>
|
|
|
修改
|
|
|
</i-button>
|
|
|
</div>
|
|
|
);
|
|
|
} else if (status === 0) {
|
|
|
return (
|
|
|
<div class="cell-action-row">
|
|
|
<i-button type="primary" size="small"
|
|
|
onClick={() => this.editAnswer(row)}>
|
|
|
回复
|
|
|
</i-button>
|
|
|
</div>
|
|
|
);
|
|
|
} else if (status === 1) {
|
|
|
return (
|
|
|
<div class="cell-action-row">
|
|
|
<i-button type="error" size="small" style="backgroundColor: #999;border-color: #999;cursor: not-allowed;">
|
|
|
修改
|
|
|
</i-button>
|
|
|
</div>
|
|
|
);
|
|
|
}
|
|
|
},
|
|
|
}
|
|
|
// {
|
|
|
// title: '操作',
|
|
|
// key: 'action',
|
|
|
// align: 'center',
|
|
|
// render: (h, params) => {
|
|
|
// const row = params.row;
|
|
|
//
|
|
|
// let status = row.operateFlag;
|
|
|
//
|
|
|
// if (status === 2) {
|
|
|
// return (
|
|
|
// <div class="cell-action-row">
|
|
|
// <i-button type="error" size="small"
|
|
|
// onClick={() => this.editAnswer(row)}>
|
|
|
// 修改
|
|
|
// </i-button>
|
|
|
// </div>
|
|
|
// );
|
|
|
// } else if (status === 0) {
|
|
|
// return (
|
|
|
// <div class="cell-action-row">
|
|
|
// <i-button type="primary" size="small"
|
|
|
// onClick={() => this.editAnswer(row)}>
|
|
|
// 回复
|
|
|
// </i-button>
|
|
|
// </div>
|
|
|
// );
|
|
|
// } else if (status === 1) {
|
|
|
// return (
|
|
|
// <div class="cell-action-row">
|
|
|
// <i-button type="error" size="small" style="backgroundColor: #999;border-color: #999;cursor: not-allowed;">
|
|
|
// 修改
|
|
|
// </i-button>
|
|
|
// </div>
|
|
|
// );
|
|
|
// }
|
|
|
// },
|
|
|
// }
|
|
|
],
|
|
|
tableData: [],
|
|
|
pageData: {
|
...
|
...
|
@@ -158,10 +160,11 @@ export default function() { |
|
|
label: '选择品牌',
|
|
|
model: ''
|
|
|
},
|
|
|
answerUserName: {
|
|
|
label: '回复人',
|
|
|
model: ''
|
|
|
},
|
|
|
|
|
|
// answerUserName: {
|
|
|
// label: '回复人',
|
|
|
// model: ''
|
|
|
// },
|
|
|
sort: {
|
|
|
first: {
|
|
|
label: '选择类目',
|
...
|
...
|
|