|
@@ -216,12 +216,12 @@
|
|
|
infolist.unit == '延长米'
|
|
|
">
|
|
|
<span>长(米)</span>
|
|
|
- <el-input oninput="value = parseInt(value)" v-model="infolist.length" placeholder="长" :disabled="disableStatus">
|
|
|
+ <el-input oninput="value = parseInt(value) || ''" v-model="infolist.length" placeholder="长" :disabled="disableStatus">
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item prop="width" v-if="infolist.unit == '平方米'">
|
|
|
<span>宽(米)</span>
|
|
|
- <el-input oninput="value = parseInt(value)" v-model="infolist.width" placeholder="宽" :disabled="disableStatus">
|
|
|
+ <el-input oninput="value = parseInt(value) ||''" v-model="infolist.width" placeholder="宽" :disabled="disableStatus">
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item prop="direction">
|
|
@@ -879,8 +879,11 @@ export default {
|
|
|
parentCompId: this.infolist.regionCode
|
|
|
}
|
|
|
}).then(res => {
|
|
|
+ console.log(v);
|
|
|
+ console.log('[ 这是什么 ] >', res)
|
|
|
if (v !== 3) {
|
|
|
this.countyOpt = res.data;
|
|
|
+ console.log(this.countyOpt);
|
|
|
}
|
|
|
|
|
|
});
|
|
@@ -1027,6 +1030,7 @@ export default {
|
|
|
parentCompId: this.regionOpt[i].compId
|
|
|
}
|
|
|
}).then(res => {
|
|
|
+ console.log('[ res ] >', res)
|
|
|
if (this.userInfo.cityName != null && this.userInfo.countyName == null) {
|
|
|
this.countyOpt = res.data;
|
|
|
} else if (this.userInfo.cityName != null && this.userInfo.countyName != null) {
|
|
@@ -1062,6 +1066,7 @@ export default {
|
|
|
parentCompId: "0"
|
|
|
}
|
|
|
}).then(res => {
|
|
|
+ console.log('[ 0 ] >', res)
|
|
|
// this.regionOpt = res.data;
|
|
|
|
|
|
if (
|