46ce3457 by renchao@pashanhoo.com

style:预告买卖

2 parents eb33abc0 e4bc82e8
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-08-02 10:04:40
* @LastEditTime: 2023-10-13 15:32:47
-->
<template>
<!-- 主体权利信息查询 -->
......@@ -212,6 +212,14 @@
formData: param
})
},
handleLpbClick (item) {
ywPopupDialog('楼盘表', 'lpb/index', {
bsm: item.bsm,
bsmSqyw: this.sqywInfo.bsmSqyw,
onlyShow: false,
scyclx: 1
}, '85%', true, false)
},
},
};
</script>
......
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-10-10 16:32:09
* @LastEditTime: 2023-10-13 15:25:01
*/
import filter from '@/utils/filter.js'
let vm = null
......@@ -138,7 +138,7 @@ class data extends filter {
</div>
)
}
},
}
]
}
dzcolumns () {
......
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-10-11 09:52:27
* @LastEditTime: 2023-10-13 15:28:40
*/
import filter from '@/utils/filter.js'
let vm = null
......@@ -99,17 +99,29 @@ class data extends filter {
},
{
label: '操作',
width: '80',
width: '120',
align: 'center',
fixed: 'right',
render: (h, scope) => {
return (
<div>
<el-button type="text" icon="el-icon-edit-outline" onClick={() => { vm.openBook(scope.row) }}>登记薄</el-button>
<el-button type="text" icon="el-icon-film" onClick={() => { vm.handleLpbClick(scope.row) }}>楼盘表</el-button>
</div>
)
}
},
}
// {
// label: '操作',
// width: '80',
// align: 'center',
// fixed: 'right',
// render: (h, scope) => {
// return (
// <div>
// <el-button type="text" icon="el-icon-edit-outline" onClick={() => { vm.openBook(scope.row) }}>登记薄</el-button>
// </div>
// )
// }
// },
]
}
......