Commit 019d4da1 authored by zhengyi's avatar zhengyi

批量修改跟进状态的代码错误修复

parent 244dab4a
...@@ -61,7 +61,7 @@ export default { ...@@ -61,7 +61,7 @@ export default {
}, },
methods: { methods: {
submit() { submit() {
if (!this.status) { if (this.status == null || this.status == undefined) {
return this.$message.warning(this.$t('请选择修改的状态!')); return this.$message.warning(this.$t('请选择修改的状态!'));
} }
console.log(this.followupIds, 'this.followupIds') console.log(this.followupIds, 'this.followupIds')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment