e663c478 by 杨威
2 parents 071b09ab 90ccb6e9
......@@ -760,20 +760,15 @@
zbsm: bsm,
ztype: 'dz'
})
console.log(this.zdFghData, 'zdFghData')
},
xzZrz(bsm, index) {
this.zdFghData.newZdlist.fwlist[index].push({
zbsm: bsm,
ztype: 'zrz'
})
console.log(this.zdFghData, 'zdFghData')
},
dzHandleCommand(command, index) {
console.log(command,"============")
let item = this.zdDzList.filter(i => i.bsm == command)[0];
console.log(item,"item........")
console.log(this.zdDzList,"zdDzlist")
this.zdFghData.newZdlist[index].fwlist.push({
zbsm: command,
ztype: 'dz'
......@@ -846,11 +841,17 @@
},
saveZd() {
zdfg(this.zdFghData).then(res => {
console.log(res)
if (res.success) {
Message.success('保存成功')
this.$router.push({
path: '/zd',
query: {
bsm: res.result[0],
source: 2
}
});
} else {
Message.error(res.message)
Message.error("保存失败")
}
})
},
......
......@@ -15,7 +15,7 @@
<td class="bdcqzh">不动产权证号</td>
<td class="qlr">权利人</td>
<td class="zl">坐落</td>
<td class="cz">操作</td>
<td>操作</td>
</tr>
<tr v-if="zdhbqData.length==0">
<td colspan="7">
......@@ -112,7 +112,7 @@
</tr>
</table>
</div>
<zd-query-data @getData="getData" :centerDialogVisible.sync="centerDialogVisible"
<zd-query-data @getData="getData" :centerDialogVisible.sync="centerDialogVisible" :isZdClose="true"
@close="close"></zd-query-data>
<div class="header-button" :style="{width:fgBoxWidth+'px'}">
......@@ -572,7 +572,6 @@
}
</script>
<style scoped lang="less">
.hb {
.menu {
/deep/ .el-tabs__content {
......@@ -722,4 +721,11 @@
margin-top: 10px;
}
}
.cz{
color: blue;
}
.cz:hover{
color: blue;
text-decoration: underline;
}
</style>
......