style:样式修改
Showing
15 changed files
with
49 additions
and
23 deletions
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-06 15:20:16 | 4 | * @LastEditTime: 2023-09-14 17:19:26 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="slxx sdqxx"> | 7 | <div class="slxx sdqxx"> |
| ... | @@ -119,10 +119,6 @@ | ... | @@ -119,10 +119,6 @@ |
| 119 | formdata.append("bsmSldy", this.propsParam.bsmSldy); | 119 | formdata.append("bsmSldy", this.propsParam.bsmSldy); |
| 120 | formdata.append("djlx", this.propsParam.djlx); | 120 | formdata.append("djlx", this.propsParam.djlx); |
| 121 | formdata.append("isEdit", this.viewEdit); | 121 | formdata.append("isEdit", this.viewEdit); |
| 122 | // Init(formdata).then((res) => { | ||
| 123 | // if (res.code === 200 && res.result) { | ||
| 124 | // } | ||
| 125 | // }); | ||
| 126 | }, | 122 | }, |
| 127 | data () { | 123 | data () { |
| 128 | return { | 124 | return { | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-13 13:57:48 | 4 | * @LastEditTime: 2023-09-14 17:19:13 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="container"> | 7 | <div class="container"> |
| ... | @@ -194,7 +194,8 @@ | ... | @@ -194,7 +194,8 @@ |
| 194 | setTimeout(() => { | 194 | setTimeout(() => { |
| 195 | this.prinsss() | 195 | this.prinsss() |
| 196 | }, 100) | 196 | }, 100) |
| 197 | 197 | } else { | |
| 198 | this.$message.error(res.message); | ||
| 198 | } | 199 | } |
| 199 | }) | 200 | }) |
| 200 | }, | 201 | }, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-08-16 09:50:02 | 4 | * @LastEditTime: 2023-09-14 17:19:40 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="slxx"> | 7 | <div class="slxx"> |
| ... | @@ -310,6 +310,8 @@ | ... | @@ -310,6 +310,8 @@ |
| 310 | Init(formdata).then((res) => { | 310 | Init(formdata).then((res) => { |
| 311 | if (res.code === 200 && res.result) { | 311 | if (res.code === 200 && res.result) { |
| 312 | this.ruleForm = res.result; | 312 | this.ruleForm = res.result; |
| 313 | } else { | ||
| 314 | this.$message.error(res.message); | ||
| 313 | } | 315 | } |
| 314 | }); | 316 | }); |
| 315 | }, | 317 | }, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-12 09:59:18 | 4 | * @LastEditTime: 2023-09-14 17:19:58 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <!-- 受理信息 --> | 7 | <!-- 受理信息 --> |
| ... | @@ -365,6 +365,7 @@ | ... | @@ -365,6 +365,7 @@ |
| 365 | import { mapGetters } from "vuex"; | 365 | import { mapGetters } from "vuex"; |
| 366 | export default { | 366 | export default { |
| 367 | mounted () { | 367 | mounted () { |
| 368 | let that = this | ||
| 368 | this.loading = true | 369 | this.loading = true |
| 369 | this.viewEdit = this.$parent.currentSelectTab.ableOperation; | 370 | this.viewEdit = this.$parent.currentSelectTab.ableOperation; |
| 370 | this.propsParam = this.$attrs; | 371 | this.propsParam = this.$attrs; |
| ... | @@ -381,14 +382,16 @@ | ... | @@ -381,14 +382,16 @@ |
| 381 | this.loading = false | 382 | this.loading = false |
| 382 | }, 200) | 383 | }, 200) |
| 383 | if (res.code === 200 && res.result) { | 384 | if (res.code === 200 && res.result) { |
| 384 | this.ruleForm = res.result; | 385 | that.ruleForm = res.result; |
| 385 | this.czrOptions = this.ruleForm.qlrList; | 386 | that.czrOptions = this.ruleForm.qlrList; |
| 386 | } | 387 | that.ruleForm.qlrList.forEach((item) => { |
| 387 | this.ruleForm.qlrList.forEach((item) => { | ||
| 388 | if (item.sfczr == 1) { | 388 | if (item.sfczr == 1) { |
| 389 | this.czr = item.zjh | 389 | that.czr = item.zjh |
| 390 | } | ||
| 391 | }) | ||
| 392 | } else { | ||
| 393 | that.$message.error(res.message); | ||
| 390 | } | 394 | } |
| 391 | }); | ||
| 392 | }).catch(() => { | 395 | }).catch(() => { |
| 393 | this.loading = false | 396 | this.loading = false |
| 394 | }) | 397 | }) | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: 房屋多幢受理信息 | 2 | * @Description: 房屋多幢受理信息 |
| 3 | * @Autor: ssq | 3 | * @Autor: ssq |
| 4 | * @LastEditTime: 2023-09-13 14:41:34 | 4 | * @LastEditTime: 2023-09-14 17:20:40 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="slxx"> | 7 | <div class="slxx"> |
| ... | @@ -313,6 +313,8 @@ | ... | @@ -313,6 +313,8 @@ |
| 313 | } | 313 | } |
| 314 | }); | 314 | }); |
| 315 | this.czrOptions = this.ruleForm.qlrList; | 315 | this.czrOptions = this.ruleForm.qlrList; |
| 316 | } else { | ||
| 317 | this.$message.error(res.message); | ||
| 316 | } | 318 | } |
| 317 | }) | 319 | }) |
| 318 | }, | 320 | }, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: 受理信息 | 2 | * @Description: 受理信息 |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-12 10:04:14 | 4 | * @LastEditTime: 2023-09-14 17:17:56 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="slxx"> | 7 | <div class="slxx"> |
| ... | @@ -440,6 +440,8 @@ | ... | @@ -440,6 +440,8 @@ |
| 440 | } | 440 | } |
| 441 | }); | 441 | }); |
| 442 | this.czrOptions = this.ruleForm.qlrList; | 442 | this.czrOptions = this.ruleForm.qlrList; |
| 443 | } else { | ||
| 444 | this.$message.error(res.message); | ||
| 443 | } | 445 | } |
| 444 | }).catch(() => { | 446 | }).catch(() => { |
| 445 | this.loading = false | 447 | this.loading = false | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: 受理信息 | 2 | * @Description: 受理信息 |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-13 14:16:46 | 4 | * @LastEditTime: 2023-09-14 17:20:53 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="slxx"> | 7 | <div class="slxx"> |
| ... | @@ -299,6 +299,8 @@ | ... | @@ -299,6 +299,8 @@ |
| 299 | } | 299 | } |
| 300 | }); | 300 | }); |
| 301 | this.czrOptions = this.ruleForm.qlrList; | 301 | this.czrOptions = this.ruleForm.qlrList; |
| 302 | } else { | ||
| 303 | this.$message.error(res.message); | ||
| 302 | } | 304 | } |
| 303 | }).catch(() => { | 305 | }).catch(() => { |
| 304 | this.loading = false | 306 | this.loading = false | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: 受理信息 | 2 | * @Description: 受理信息 |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-13 14:17:15 | 4 | * @LastEditTime: 2023-09-14 17:20:59 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="slxx"> | 7 | <div class="slxx"> |
| ... | @@ -296,6 +296,8 @@ | ... | @@ -296,6 +296,8 @@ |
| 296 | this.czrOptions = this.ruleForm.qlrList; | 296 | this.czrOptions = this.ruleForm.qlrList; |
| 297 | this.gyfs = this.ruleForm.sldyList[0].gyfs; | 297 | this.gyfs = this.ruleForm.sldyList[0].gyfs; |
| 298 | this.splicingFdcq2Info(); | 298 | this.splicingFdcq2Info(); |
| 299 | } else { | ||
| 300 | this.$message.error(res.message); | ||
| 299 | } | 301 | } |
| 300 | this.ruleForm.qlrList.forEach((item) => { | 302 | this.ruleForm.qlrList.forEach((item) => { |
| 301 | if (item.sfczr == 1) { | 303 | if (item.sfczr == 1) { | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-13 14:05:26 | 4 | * @LastEditTime: 2023-09-14 17:21:04 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <!-- 受理信息 --> | 7 | <!-- 受理信息 --> |
| ... | @@ -264,6 +264,8 @@ | ... | @@ -264,6 +264,8 @@ |
| 264 | } | 264 | } |
| 265 | }); | 265 | }); |
| 266 | this.czrOptions = this.ruleForm.qlrList; | 266 | this.czrOptions = this.ruleForm.qlrList; |
| 267 | } else { | ||
| 268 | this.$message.error(res.message); | ||
| 267 | } | 269 | } |
| 268 | }).catch(() => { | 270 | }).catch(() => { |
| 269 | this.loading = false | 271 | this.loading = false |
| ... | @@ -356,6 +358,8 @@ | ... | @@ -356,6 +358,8 @@ |
| 356 | ...res.result.qlxxdatas, | 358 | ...res.result.qlxxdatas, |
| 357 | ...res.result.jsydsyqdatas, | 359 | ...res.result.jsydsyqdatas, |
| 358 | }; | 360 | }; |
| 361 | } else { | ||
| 362 | this.$message.error(res.message); | ||
| 359 | } | 363 | } |
| 360 | }); | 364 | }); |
| 361 | }, | 365 | }, | ... | ... |
| ... | @@ -2,7 +2,7 @@ | ... | @@ -2,7 +2,7 @@ |
| 2 | <!-- | 2 | <!-- |
| 3 | * @Description: | 3 | * @Description: |
| 4 | * @Autor: renchao | 4 | * @Autor: renchao |
| 5 | * @LastEditTime: 2023-09-13 14:17:49 | 5 | * @LastEditTime: 2023-09-14 17:21:19 |
| 6 | --> | 6 | --> |
| 7 | <template> | 7 | <template> |
| 8 | <!-- 受理信息 --> | 8 | <!-- 受理信息 --> |
| ... | @@ -239,6 +239,8 @@ | ... | @@ -239,6 +239,8 @@ |
| 239 | if (res.code === 200 && res.result) { | 239 | if (res.code === 200 && res.result) { |
| 240 | this.ruleForm = res.result; | 240 | this.ruleForm = res.result; |
| 241 | this.czrOptions = this.ruleForm.qlrList; | 241 | this.czrOptions = this.ruleForm.qlrList; |
| 242 | } else { | ||
| 243 | this.$message.error(res.message); | ||
| 242 | } | 244 | } |
| 243 | this.ruleForm.qlrList.forEach((item) => { | 245 | this.ruleForm.qlrList.forEach((item) => { |
| 244 | if (item.sfczr == 1) { | 246 | if (item.sfczr == 1) { | ... | ... |
| ... | @@ -345,6 +345,8 @@ | ... | @@ -345,6 +345,8 @@ |
| 345 | ? (this.ruleForm.slsq.fzfs = "1") | 345 | ? (this.ruleForm.slsq.fzfs = "1") |
| 346 | : this.ruleForm.slsq.fzfs; | 346 | : this.ruleForm.slsq.fzfs; |
| 347 | this.czrOptions = this.ruleForm.qlrList; | 347 | this.czrOptions = this.ruleForm.qlrList; |
| 348 | } else { | ||
| 349 | this.$message.error(res.message); | ||
| 348 | } | 350 | } |
| 349 | }); | 351 | }); |
| 350 | }, | 352 | }, | ... | ... |
| ... | @@ -227,9 +227,11 @@ | ... | @@ -227,9 +227,11 @@ |
| 227 | if (item.sfczr == 1) { | 227 | if (item.sfczr == 1) { |
| 228 | this.czr = item.zjh | 228 | this.czr = item.zjh |
| 229 | } | 229 | } |
| 230 | }); | 230 | }) |
| 231 | } else { | ||
| 232 | this.$message.error(res.message); | ||
| 231 | } | 233 | } |
| 232 | }); | 234 | }) |
| 233 | }, | 235 | }, |
| 234 | components: { qlrCommonTable, ywrCommonTable }, | 236 | components: { qlrCommonTable, ywrCommonTable }, |
| 235 | computed: { | 237 | computed: { | ... | ... |
-
Please register or sign in to post a comment