Merge branch 'master' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web
Showing
3 changed files
with
10 additions
and
5 deletions
... | @@ -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 | // 删除 | ... | ... |
... | @@ -8,7 +8,7 @@ class data extends filter { | ... | @@ -8,7 +8,7 @@ class data extends filter { |
8 | constructor() { | 8 | constructor() { |
9 | super() | 9 | super() |
10 | } | 10 | } |
11 | columns () { | 11 | columns() { |
12 | return [ | 12 | return [ |
13 | { | 13 | { |
14 | label: '序号', | 14 | label: '序号', |
... | @@ -31,10 +31,10 @@ class data extends filter { | ... | @@ -31,10 +31,10 @@ class data extends filter { |
31 | label: "流程状态", | 31 | label: "流程状态", |
32 | width: '80', | 32 | width: '80', |
33 | render: (h, scope) => { | 33 | render: (h, scope) => { |
34 | if(scope.row.cfgqzt == '1'){ | 34 | if (scope.row.cfgqzt == '1') { |
35 | return <div class='suspend'>查封挂起</div> | 35 | return <div class='suspend'>查封挂起</div> |
36 | } | 36 | } |
37 | if(scope.row.yygqzt == '1'){ | 37 | if (scope.row.yygqzt == '1') { |
38 | return <div class='suspend'>异议挂起</div> | 38 | return <div class='suspend'>异议挂起</div> |
39 | } | 39 | } |
40 | switch (scope.row.lczt) { | 40 | switch (scope.row.lczt) { | ... | ... |
-
Please register or sign in to post a comment