fb297a33 by yangwei

代办业务的受理申请页面,共有方式为单独所有时无法添加多个权利人

1 parent c3242e2d
...@@ -166,8 +166,12 @@ export default { ...@@ -166,8 +166,12 @@ export default {
166 166
167 // 新增 167 // 新增
168 addClick () { 168 addClick () {
169 this.dialog = true 169 if(this.gyfs == '0' && this.tableDataList.length > 0){
170 this.isaddupdate = true 170 this.$message.warning("当前共有方式为单独所有,无法添加多个权利人")
171 }else{
172 this.dialog = true
173 this.isaddupdate = true
174 }
171 }, 175 },
172 176
173 // 删除 177 // 删除
......