|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- <template>
- <div class="app-container">
- <van-nav-bar
- left-arrow
- fixed
- placeholder
- @click-left="$router.back(-1)"
- >
- <template #title>
- <p style="font-weight: bold;">查看宅基地使用流转权</p>
- </template>
- </van-nav-bar>
- <p class="main_title">转出方信息</p>
- <div class="main_box">
- <van-field
- readonly
- v-model="circulation.zjddm"
- label="宅基地代码"
- input-align="right"
- />
-
- <van-field
- readonly
- v-model="circulation.lzfs"
- label="流转方式"
- input-align="right"
- />
-
- <van-field
- readonly
- v-model="circulation.shyqrdm"
- label="转出方使用权人代码"
- label-width="auto"
- input-align="right"
- />
- <van-field
- readonly
- v-model="circulation.zcfsfbjtjjzzcy == 'Y' ? '是' : '否'"
- label="是否本集体经济组织成员"
- label-width="auto"
- input-align="right"
-
- />
- </div>
-
- <p class="main_title">流转信息</p>
- <div class="main_box">
- <van-field label="流转面积(㎡)" readonly v-model="circulation.lzmj" input-align="right" label-width="auto"/>
- <van-field label="流转单价(元)" readonly v-model="circulation.lzdj" input-align="right" label-width="auto"/>
- <van-field label="流转费用(元)" readonly v-model="circulation.lzfy" input-align="right" label-width="auto"/>
- <van-field
- readonly
- label="流转起始时间"
- input-align="right"
- v-model="circulation.lzqsrq"
- />
-
- <van-field
- readonly
- label="流转结束时间"
- input-align="right"
- v-model="circulation.lzjsrq"
- />
-
- <van-field
- readonly
- label="流转前房屋用途"
- input-align="right"
- label-width="auto"
- v-model="circulation.lzqfwyt"
- />
-
- <van-field
- readonly
- label="流转后房屋用途"
- input-align="right"
- label-width="auto"
- v-model="circulation.lzhfwyt"
- />
- </div>
-
- <p class="main_title">转入方信息</p>
- <div class="main_box">
- <van-field
- readonly
- label="转入方代表名称"
- label-width="auto"
- input-align="right"
- v-model="circulation.zrfdbmc"
- />
-
- <van-field
- readonly
- label="转入方代表证件类型"
- label-width="auto"
- input-align="right"
- v-model="circulation.zrfdbzjlx"
- />
- <van-field readonly label="转入方代表证件号码" v-model="circulation.zrfdbzjhm" input-align="right" label-width="auto"/>
- <van-field readonly label="是否本集体经济组织成员" v-model="circulation.zrfsfbjtjjzzcy == 'Y' ? '是' : '否'" input-align="right" label-width="auto"/>
- </div>
-
- <p class="main_title">其他</p>
- <div class="main_box">
- <van-field readonly label="所有权人代表姓名" v-model="circulation.suyqrdbxm" input-align="right" label-width="auto"/>
- <van-field readonly label="所有权人意见" v-model="circulation.suyqryj" input-align="right" label-width="auto"/>
- <van-field readonly label="备注" v-model="circulation.bz" input-align="right" label-width="auto"/>
- </div>
- </div>
- </template>
-
- <script>
- import { getLz } from "@/api/onlineHome/homestead/circulation";
- export default {
- name: "circulationDetail",
- data() {
- return {
- value: '',
- circulation:[],
- houseApplyStatus:[],
- circulation:[],
- };
- },
- created() {
- this.getDetail();
- },
- methods: {
- getDetail(){
- getLz(this.$route.query.id).then(response => {
- this.circulation = response.data;
- //流转方式
- this.houseGetDicts("lzfs").then((res) => {
- this.circulation.lzfs = this.selectDictLabel(res.data, response.data.lzfs);
- });
- //转入方证件类型
- this.houseGetDicts("zjlx").then((res) => {
- this.circulation.zrfdbzjlx = this.selectDictLabel(res.data, response.data.zrfdbzjlx);
- });
- //流转前房屋用途
- this.houseGetDicts("fwyt").then((res) => {//流转前房屋用途
- this.circulation.lzqfwyt = this.selectDictLabel(res.data, response.data.lzqfwyt);
- this.circulation.lzhfwyt = this.selectDictLabel(res.data, response.data.lzhfwyt);
- });
- });
- }
- },
- }
- </script>
-
- <style scoped lang="scss">
- .app-container {
- padding-bottom: 5%;
- }
- .main_title{
- font-size: 0.4rem;
- color: #1D6FE9;
- margin: 0.2rem 6%;
- position: relative;
- }
- .main_box{
- width: 96%;
- margin: 0 auto;
- border-radius: 6px;
- box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
- overflow: hidden;
- background-color: #FFF;
- }
- .submitButton{
- width: 80%;
- margin: 0 auto;
- background-color: #1D6FE9;
-
- }
- </style>
|