|
|
@@ -105,7 +105,7 @@ export default {
|
|
|
appear: 0, //detail 默认隐藏
|
|
|
dialogReplyVisible: false, // 回复
|
|
|
dialogVisible: false, // 编辑
|
|
|
- editTab: 0,
|
|
|
+ editTab: '',
|
|
|
// url: '/message/getMessage',
|
|
|
query: { onExist: '0,2' },
|
|
|
info: {},
|
|
|
@@ -145,6 +145,10 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
saveMessage(id) {
|
|
|
+ if (this.editTab == '') {
|
|
|
+ this.$message('请选择对接状态');
|
|
|
+ return;
|
|
|
+ }
|
|
|
this.$http
|
|
|
.post('/conversation/create', { id: id, status: this.editTab }, { body: 'json' })
|
|
|
.then(res => {
|