style:待办箱
Showing
3 changed files
with
28 additions
and
10 deletions
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-28 09:01:00 | 4 | * @LastEditTime: 2023-08-28 15:43:41 |
5 | */ | 5 | */ |
6 | import filter from '@/utils/filter.js' | 6 | import filter from '@/utils/filter.js' |
7 | let vm = null | 7 | let vm = null |
... | @@ -68,7 +68,7 @@ class data extends filter { | ... | @@ -68,7 +68,7 @@ class data extends filter { |
68 | { | 68 | { |
69 | prop: "sqywmc", | 69 | prop: "sqywmc", |
70 | label: "申请业务名称", | 70 | label: "申请业务名称", |
71 | minWidth: '220' | 71 | minWidth: '200' |
72 | }, | 72 | }, |
73 | { | 73 | { |
74 | prop: "bdcdyh", | 74 | prop: "bdcdyh", |
... | @@ -103,7 +103,7 @@ class data extends filter { | ... | @@ -103,7 +103,7 @@ class data extends filter { |
103 | }, | 103 | }, |
104 | { | 104 | { |
105 | label: "坐落", | 105 | label: "坐落", |
106 | width: '150', | 106 | minWidth: '150', |
107 | render: (h, scope) => { | 107 | render: (h, scope) => { |
108 | return ( | 108 | return ( |
109 | <el-tooltip effect="dark" content={scope.row.zl} placement="top" popper-class="tooltip-width "> | 109 | <el-tooltip effect="dark" content={scope.row.zl} placement="top" popper-class="tooltip-width "> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-23 15:07:37 | 4 | * @LastEditTime: 2023-08-28 15:38:25 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -92,7 +92,7 @@ | ... | @@ -92,7 +92,7 @@ |
92 | </el-col> | 92 | </el-col> |
93 | </el-row> | 93 | </el-row> |
94 | <el-row class="advanced-search"> | 94 | <el-row class="advanced-search"> |
95 | <span>高级搜索条件:</span> | 95 | <span>搜索条件:</span> |
96 | <ul> | 96 | <ul> |
97 | <li v-for="(item, index) in searchList" :key="index"> | 97 | <li v-for="(item, index) in searchList" :key="index"> |
98 | {{ item.name }}:{{ item.value }} | 98 | {{ item.name }}:{{ item.value }} | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-28 15:33:57 | 4 | * @LastEditTime: 2023-08-28 15:43:19 |
5 | */ | 5 | */ |
6 | import filter from '@/utils/filter.js' | 6 | import filter from '@/utils/filter.js' |
7 | let vm = null | 7 | let vm = null |
... | @@ -62,19 +62,37 @@ class data extends filter { | ... | @@ -62,19 +62,37 @@ class data extends filter { |
62 | { | 62 | { |
63 | prop: "sqywmc", | 63 | prop: "sqywmc", |
64 | label: "申请业务名称", | 64 | label: "申请业务名称", |
65 | width: '150', | 65 | minWidth: '200' |
66 | }, | 66 | }, |
67 | { | 67 | { |
68 | prop: "qlrmc", | ||
69 | label: "权利人", | 68 | label: "权利人", |
69 | width: '120', | ||
70 | render: (h, scope) => { | ||
71 | return ( | ||
72 | <div> | ||
73 | <el-tooltip effect="dark" content={scope.row.qlrmc} placement="top" popper-class="tooltip-width "> | ||
74 | <span class="ellipsis-table"> {scope.row.qlrmc}</span> | ||
75 | </el-tooltip> | ||
76 | </div> | ||
77 | ) | ||
78 | } | ||
70 | }, | 79 | }, |
71 | { | 80 | { |
72 | prop: "ywrmc", | ||
73 | label: "义务人", | 81 | label: "义务人", |
82 | width: '120', | ||
83 | render: (h, scope) => { | ||
84 | return ( | ||
85 | <div> | ||
86 | <el-tooltip effect="dark" content={scope.row.ywrmc} placement="top" popper-class="tooltip-width "> | ||
87 | <span class="ellipsis-table"> {scope.row.ywrmc}</span> | ||
88 | </el-tooltip> | ||
89 | </div> | ||
90 | ) | ||
91 | } | ||
74 | }, | 92 | }, |
75 | { | 93 | { |
76 | label: "坐落", | 94 | label: "坐落", |
77 | width: '150', | 95 | minWidth: '150', |
78 | render: (h, scope) => { | 96 | render: (h, scope) => { |
79 | return ( | 97 | return ( |
80 | <el-tooltip effect="dark" content={scope.row.zl} placement="top" popper-class="tooltip-width "> | 98 | <el-tooltip effect="dark" content={scope.row.zl} placement="top" popper-class="tooltip-width "> | ... | ... |
-
Please register or sign in to post a comment