@@ -308,6 +317,7 @@
name="价格(万元)"
label="价格(万元)"
placeholder="价格(万元)"
+ maxlength="15"
type="number"
/>
@@ -629,6 +642,7 @@
name="使用权人代表姓名"
label="使用权人代表姓名"
placeholder="使用权人代表姓名"
+ maxlength="50"
required
:rules="[{ required: true, message: '使用权人代表姓名不能为空' }]"
/>
@@ -654,6 +668,7 @@
name="使用权人代表证件号码"
label="使用权人代表证件号码"
placeholder="使用权人代表证件号码"
+ maxlength="30"
required
:rules="[{ required: true, message: '使用权人代表证件号码不能为空' }]"
/>
@@ -664,6 +679,7 @@
name="不动产单元号"
label="不动产单元号"
placeholder="分配了不动产单元号时填写"
+ maxlength="28"
/>
+
@@ -1825,6 +1852,15 @@
+
+
+
-
{
this.zjlxOptions = response.data;
});
+ this.getDicts("hjszss").then(response => {
+ this.hjszssOptions = response.data;
+ });
this.getDicts("family_status").then(response => {
var arr = [];response.data.forEach(function (item) {
if (item.dictLabel !== '户主') {
@@ -3176,8 +3209,8 @@
let zrz = this.$cookies.get("search").mapZrzAData
let fsss = this.$cookies.get("search").mapFsssAData
this.getnhdmlist();
- this.getZjd();
this.getBaseUrl();
+ this.getZjd();
if(this.$cookies.get("search").active=="3"){
this.showzrz= true
this.getZrzList()
@@ -3194,15 +3227,17 @@
}
}else{
this.item = this.$cookies.get("search")
+ this.getBaseUrl();
this.getnhdmlist();
this.getZjd();
- this.getBaseUrl();
+
}
}else{
this.$set(this.item,"deptId",this.$cookies.get("item").deptId)
+ this.getBaseUrl();
this.getnhdmlist();
this.getZjd();
- this.getBaseUrl();
+
}
},
mounted(){
@@ -3494,6 +3529,7 @@
},
// 使用权人农户代码弹出框
onConfirmsyqrnhdmlist(value){
+ this.nhdmValue = null
this.form1.nhdm = value.nhdm
this.form1.shyqrdbxm = value.hzxm
this.form1.shyqrdbzjhm = value.hzzjhm
@@ -3507,6 +3543,7 @@
},
// 农名房屋农户代码弹出框
onConfirmnmfwnhdm(value){
+ this.nhdmValue = null
this.nmfwform.nhdm = value.nhdm
this.shownmfwnhdm = false
},
@@ -3618,6 +3655,12 @@
this.form1.gyfs = value.dictValue
this.showgyfs = false
},
+ // 使用权人户籍所在省市弹出框
+ onConfirmhjszss(value){
+ this.form1.hjszssName = value.dictLabel
+ this.form1.hjszss = value.dictValue
+ this.showhjszss = false
+ },
// 农民房屋户型弹出框
onConfirmhx(value){
this.nmfwform.hxName = value.dictLabel
@@ -4265,6 +4308,8 @@
gyfs:'1',
gyfsName:'单独所有',
qlbl:'1',
+ hjszss:"150000",
+ hjszssName:"内蒙古自治区",
}
}else{
this.form1 = item
@@ -4294,6 +4339,10 @@
if(this.form1.qlbl==null||this.form1.qlbl==""){
this.form1.qlbl = '1'
}
+ if(this.form1.hjszss==null||this.form1.hjszss==""){
+ this.form1.hjszss = '150000'
+ this.form1.hjszssName = '内蒙古自治区'
+ }
this.industryOptions.map(res => {
if(res.dictValue == this.form1.sshy){
this.form1.sshyName = res.dictLabel
@@ -5029,4 +5078,7 @@
>>> .delete-button {
height: 100%;
}
+ >>> .van-swipe-cell__wrapper{
+ margin-right:-1px;
+ }