宗地基本信息提交
Showing
3 changed files
with
22 additions
and
5 deletions
| ... | @@ -105,7 +105,7 @@ export function updateQsztByBsm(data){ | ... | @@ -105,7 +105,7 @@ export function updateQsztByBsm(data){ |
| 105 | export function submit (data) { | 105 | export function submit (data) { |
| 106 | return request({ | 106 | return request({ |
| 107 | url: '/system/submit/submitInfo', | 107 | url: '/system/submit/submitInfo', |
| 108 | method: 'get', | 108 | method: 'post', |
| 109 | data:data | 109 | data:data |
| 110 | }) | 110 | }) |
| 111 | } | 111 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
| ... | @@ -6,7 +6,7 @@ | ... | @@ -6,7 +6,7 @@ |
| 6 | <td colspan="2">共有方式</td> | 6 | <td colspan="2">共有方式</td> |
| 7 | <td colspan="8"> | 7 | <td colspan="8"> |
| 8 | <el-row> | 8 | <el-row> |
| 9 | <el-col :span="12" class="fl"> | 9 | <el-col :span="16" class="fl"> |
| 10 | <el-radio-group v-model="gyfs"> | 10 | <el-radio-group v-model="gyfs"> |
| 11 | <el-radio :label="item.bsm" :key="item.bsm" v-for="item in $store.state.gyfsList">{{item.mc}}</el-radio> | 11 | <el-radio :label="item.bsm" :key="item.bsm" v-for="item in $store.state.gyfsList">{{item.mc}}</el-radio> |
| 12 | </el-radio-group> | 12 | </el-radio-group> |
| ... | @@ -581,7 +581,9 @@ | ... | @@ -581,7 +581,9 @@ |
| 581 | border-color: #E6E6E6 !important; | 581 | border-color: #E6E6E6 !important; |
| 582 | } | 582 | } |
| 583 | .qlrTable { | 583 | .qlrTable { |
| 584 | border-color: #E6E6E6 !important; | 584 | border-color: #E6E6E6 !important; |
| 585 | position: relative; | ||
| 586 | top: -1px; | ||
| 585 | .el-input__inner { | 587 | .el-input__inner { |
| 586 | height: 20px; | 588 | height: 20px; |
| 587 | margin: 0; | 589 | margin: 0; | ... | ... |
| ... | @@ -337,7 +337,8 @@ | ... | @@ -337,7 +337,8 @@ |
| 337 | </table> | 337 | </table> |
| 338 | 338 | ||
| 339 | <div style="min-height: 40px;text-align: center;margin-top: 10px"> | 339 | <div style="min-height: 40px;text-align: center;margin-top: 10px"> |
| 340 | <el-button type="primary" @click="updateZDxx">保存</el-button> | 340 | <el-button type="success" @click="updateZDxx">保存</el-button> |
| 341 | <el-button type="primary" @click="submitZDxx">提交</el-button> | ||
| 341 | </div> | 342 | </div> |
| 342 | </div> | 343 | </div> |
| 343 | </div> | 344 | </div> |
| ... | @@ -346,6 +347,7 @@ | ... | @@ -346,6 +347,7 @@ |
| 346 | <script> | 347 | <script> |
| 347 | import Qlr from "../../../components/formMenu/qlr"; | 348 | import Qlr from "../../../components/formMenu/qlr"; |
| 348 | import Qlxz from "../../../components/formMenu/qlxz"; | 349 | import Qlxz from "../../../components/formMenu/qlxz"; |
| 350 | import {submit} from "../../../api/common" | ||
| 349 | import { | 351 | import { |
| 350 | getAllList, | 352 | getAllList, |
| 351 | getDdicByMC, | 353 | getDdicByMC, |
| ... | @@ -466,6 +468,19 @@ export default { | ... | @@ -466,6 +468,19 @@ export default { |
| 466 | }) | 468 | }) |
| 467 | .catch((error) => {}); | 469 | .catch((error) => {}); |
| 468 | }, | 470 | }, |
| 471 | //提交宗地基本信息 | ||
| 472 | submitZDxx(){ | ||
| 473 | let data={ | ||
| 474 | glbsm:this.$store.state.zdbsm, | ||
| 475 | status:1, | ||
| 476 | type:"zd" | ||
| 477 | } | ||
| 478 | submit(data).then((res)=>{ | ||
| 479 | if(res.code===200){ | ||
| 480 | this.$message.success("提交完成!") | ||
| 481 | } | ||
| 482 | }) | ||
| 483 | }, | ||
| 469 | getQlrxxData() { | 484 | getQlrxxData() { |
| 470 | console.log(this.$refs.qlrxxModule.getQlgyfsData()); //权利共有方式数据 | 485 | console.log(this.$refs.qlrxxModule.getQlgyfsData()); //权利共有方式数据 |
| 471 | console.log(this.$refs.qlrxxModule.getQlrxxData()); //权利人表格数据 | 486 | console.log(this.$refs.qlrxxModule.getQlrxxData()); //权利人表格数据 |
| ... | @@ -556,7 +571,7 @@ export default { | ... | @@ -556,7 +571,7 @@ export default { |
| 556 | padding: 18px; | 571 | padding: 18px; |
| 557 | height: auto; | 572 | height: auto; |
| 558 | .formMenu { | 573 | .formMenu { |
| 559 | width: 80%; | 574 | width: 100%; |
| 560 | margin: 0 auto; | 575 | margin: 0 auto; |
| 561 | } | 576 | } |
| 562 | .zdjbxxTable { | 577 | .zdjbxxTable { | ... | ... |
-
Please register or sign in to post a comment