feat():业主共有禁用
Showing
2 changed files
with
6 additions
and
3 deletions
| ... | @@ -37,12 +37,14 @@ export default { | ... | @@ -37,12 +37,14 @@ export default { |
| 37 | }, | 37 | }, |
| 38 | methods: { | 38 | methods: { |
| 39 | loadingStatus() { | 39 | loadingStatus() { |
| 40 | console.log("是否禁用") | ||
| 41 | let bsm=this.$store.state.zrzbsm; | 40 | let bsm=this.$store.state.zrzbsm; |
| 42 | queryStatus(bsm).then(res => { | 41 | queryStatus(bsm).then(res => { |
| 43 | if (res.success) { | 42 | if (res.success) { |
| 44 | let qszt = res.result.qszt; | 43 | if (res.result) { |
| 45 | this.isDisabled = +qszt !== 0; | 44 | let qszt = res.result.qszt; |
| 45 | |||
| 46 | this.isDisabled = +qszt !== 0; | ||
| 47 | } | ||
| 46 | } | 48 | } |
| 47 | }) | 49 | }) |
| 48 | }, | 50 | }, | ... | ... |
-
Please register or sign in to post a comment