59e236e4 by renchao@pashanhoo.com

style:综合查询

1 parent 665a92f4
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-09-18 11:25:30
* @LastEditTime: 2023-09-21 10:39:16
-->
<template>
<div class="from-clues">
......@@ -184,7 +184,6 @@
* @author: renchao
*/
handleLpbClick (item) {
console.log("item", item);
this.$popup('楼盘表', 'lpb/index', {
width: '85%',
formData: {
......
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-09-19 10:04:04
* @LastEditTime: 2023-09-21 10:35:34
-->
<template>
<div class="from-clues">
......@@ -150,8 +150,8 @@
const { href } = this.$router.resolve(
"/djbworkFrameview?bsmSlsq=" +
item.bsmSlsq +
"&bestepid=" +
item.bestepid +
"&bsmBusiness=" +
item.bsmBusiness +
"&sqywbm=" +
item.djywbm
);
......@@ -160,10 +160,10 @@
const { href } = this.$router.resolve(
"/workFrameView?bsmSlsq=" +
item.bsmSlsq +
"&bestepid=" +
item.bestepid
"&bsmBusiness=" +
item.bsmBusiness
);
window.open(href, `workFrameView${item.bsmSlsq}`);
window.open(href, `workFrameView${item.bsmSlsq}`)
}
}
}
......
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-09-18 11:22:10
* @LastEditTime: 2023-09-21 10:41:10
-->
<template>
<div class="from-clues">
......@@ -116,8 +116,26 @@
* @author: renchao
*/
openYwDialog (item) {
const { href } = this.$router.resolve('/workFrameView?bsmSlsq=' + item.bsmSlsq + '&bestepid=' + item.bestepid + '&bsmBusiness=' + item.bsmBusiness + '&viewtype=3' + '&type=jdcx')
window.open(href, `urlname${item.bsmSlsq}`)
if (item.sjlx == "3") {
item.djywbm = "DJBBL";
const { href } = this.$router.resolve(
"/djbworkFrameview?bsmSlsq=" +
item.bsmSlsq +
"&bsmBusiness=" +
item.bsmBusiness +
"&sqywbm=" +
item.djywbm
);
window.open(href, `djbworkFrameview${item.bsmSlsq}`);
} else {
const { href } = this.$router.resolve(
"/workFrameView?bsmSlsq=" +
item.bsmSlsq +
"&bsmBusiness=" +
item.bsmBusiness
);
window.open(href, `workFrameView${item.bsmSlsq}`)
}
}
}
}
......