Merge branch 'dev'
Showing
1 changed file
with
30 additions
and
4 deletions
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2024-01-31 10:17:23 | 4 | * @LastEditTime: 2024-01-31 11:28:05 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <!-- 受理信息 --> | 7 | <!-- 受理信息 --> |
| ... | @@ -309,7 +309,24 @@ | ... | @@ -309,7 +309,24 @@ |
| 309 | :key="key" | 309 | :key="key" |
| 310 | @upDateQlrxxList="upDateYwrxxList" /> | 310 | @upDateQlrxxList="upDateYwrxxList" /> |
| 311 | </div> | 311 | </div> |
| 312 | 312 | <div class="slxx_title title-block"> | |
| 313 | 登记原因 | ||
| 314 | <div class="triangle"></div> | ||
| 315 | </div> | ||
| 316 | <el-row :gutter="10"> | ||
| 317 | <el-col> | ||
| 318 | <el-form-item label="登记原因:" prop="tdcbjyq.djyy"> | ||
| 319 | <el-input | ||
| 320 | class="textArea" | ||
| 321 | maxlength="500" | ||
| 322 | show-word-limit | ||
| 323 | type="textarea" | ||
| 324 | :disabled="!viewEdit" | ||
| 325 | v-model="ruleForm.tdcbjyq.djyy"> | ||
| 326 | </el-input> | ||
| 327 | </el-form-item> | ||
| 328 | </el-col> | ||
| 329 | </el-row> | ||
| 313 | </div> | 330 | </div> |
| 314 | <el-row class="btn" v-if="isSave"> | 331 | <el-row class="btn" v-if="isSave"> |
| 315 | <el-form-item> | 332 | <el-form-item> |
| ... | @@ -420,7 +437,11 @@ | ... | @@ -420,7 +437,11 @@ |
| 420 | ruleForm: {}, | 437 | ruleForm: {}, |
| 421 | //传递参数 | 438 | //传递参数 |
| 422 | propsParam: {}, | 439 | propsParam: {}, |
| 423 | rules: {} | 440 | rules: { |
| 441 | 'tdcbjyq.djyy': [ | ||
| 442 | { required: true, message: '请输入登记原因', trigger: 'blur' } | ||
| 443 | ] | ||
| 444 | } | ||
| 424 | } | 445 | } |
| 425 | }, | 446 | }, |
| 426 | methods: { | 447 | methods: { |
| ... | @@ -542,7 +563,12 @@ | ... | @@ -542,7 +563,12 @@ |
| 542 | } | 563 | } |
| 543 | }) | 564 | }) |
| 544 | } else { | 565 | } else { |
| 545 | return false; | 566 | that.$message({ |
| 567 | showClose: true, | ||
| 568 | message: "请输入登记原因", | ||
| 569 | type: "error" | ||
| 570 | }) | ||
| 571 | return false | ||
| 546 | } | 572 | } |
| 547 | }) | 573 | }) |
| 548 | } | 574 | } | ... | ... |
-
Please register or sign in to post a comment