|
|
|
@ -12,6 +12,55 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
render(h) {
|
|
|
|
render(h) {
|
|
|
|
let dialog = new CreateDialog(this, [
|
|
|
|
let dialog = new CreateDialog(this, [
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
key: "tudiquanshuren",
|
|
|
|
|
|
|
|
show: true,
|
|
|
|
|
|
|
|
label: "请填写土地权属人",
|
|
|
|
|
|
|
|
render: h('el-input', {
|
|
|
|
|
|
|
|
attrs: {
|
|
|
|
|
|
|
|
placeholder: "请填写土地权属人"
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
style: {
|
|
|
|
|
|
|
|
width: '100%'
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
|
|
|
|
size: 'small',
|
|
|
|
|
|
|
|
value: this.form['tudiquanshuren'],
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
on: {
|
|
|
|
|
|
|
|
input: e => {
|
|
|
|
|
|
|
|
this.$set(this.form,'tudiquanshuren',e)
|
|
|
|
|
|
|
|
this.$set(this.form,'tudishuijiaonazhuti',e)
|
|
|
|
|
|
|
|
this.form = Object.assign({},this.form)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
show: true,
|
|
|
|
|
|
|
|
key: "tudishuidanjia",
|
|
|
|
|
|
|
|
label: "土地税单价(元/平方米)",
|
|
|
|
|
|
|
|
render: h('el-input', {
|
|
|
|
|
|
|
|
attrs: {
|
|
|
|
|
|
|
|
placeholder: "请填写土地税单价"
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
style: {
|
|
|
|
|
|
|
|
width: '100%'
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
|
|
|
|
size: 'small',
|
|
|
|
|
|
|
|
value: this.form['tudishuidanjia'],
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
on: {
|
|
|
|
|
|
|
|
input: e => {
|
|
|
|
|
|
|
|
this.$set(this.form,'tudishuidanjia',e)
|
|
|
|
|
|
|
|
if(!isNaN(Number(e)) && !isNaN(Number(this.form["shijimianji"]))) {
|
|
|
|
|
|
|
|
this.$set(this.form,"tudishui",Number(e) * Number(this.form["shijimianji"]))
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
show: true,
|
|
|
|
show: true,
|
|
|
|
key: "bufuyuanyin",
|
|
|
|
key: "bufuyuanyin",
|
|
|
|
@ -498,7 +547,7 @@ export default {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
this.columns = newVal.length > 11 ? "2" : "1";
|
|
|
|
this.columns = "2";
|
|
|
|
},
|
|
|
|
},
|
|
|
|
//immediate: true,
|
|
|
|
//immediate: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|