1784c6c5 by renchao@pashanhoo.com

style:综合查询

1 parent 167165e8
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-10-19 10:30:56
* @LastEditTime: 2023-10-27 13:17:15
-->
<template>
<div class="from-clues">
......@@ -37,7 +37,7 @@
<el-col :span="4" class="btnColRight">
<el-form-item>
<el-button type="primary" native-type="submit" @click="handleSearch">查询</el-button>
<el-button @click="moreQueryClick">高级查询</el-button>
<!-- <el-button @click="moreQueryClick">高级查询</el-button> -->
</el-form-item>
</el-col>
</el-row>
......
......@@ -69,14 +69,15 @@ class data extends filter {
},
{
label: "业务号",
minWidth: '100',
render: (h, scope) => {
return (
<div>
<el-link type="primary" onClick={() => { vm.openYwDialog(scope.row) }}>{scope.row.ywh}</el-link>
</div>
)
}
prop: "ywh",
width: '100',
// render: (h, scope) => {
// return (
// <div>
// <el-link type="primary" onClick={() => { vm.openYwDialog(scope.row) }}>{scope.row.ywh}</el-link>
// </div>
// )
// }
},
{
label: "权利类型",
......
......@@ -118,18 +118,15 @@
item.djywbm = "DJBBL";
const { href } = this.$router.resolve(
"/djbworkFrameview?bsmSlsq=" +
item.bsmSlsq +
"&bsmBusiness=" +
item.bsmBusiness +
"&sqywbm=" +
item.bsmSlsq + "&bsmBusiness=" +
item.bsmBusiness + "&djywbm=" +
item.djywbm
);
window.open(href, `djbworkFrameview${item.bsmSlsq}`);
} else {
const { href } = this.$router.resolve(
"/workFrameView?bsmSlsq=" +
item.bsmSlsq +
"&bsmBusiness=" +
item.bsmSlsq + "&bsmBusiness=" +
item.bsmBusiness
);
window.open(href, `workFrameView${item.bsmSlsq}`)
......