style:登记导航栏样式修改
Showing
11 changed files
with
78 additions
and
66 deletions
1 | <!-- | ||
2 | * @Description: | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-05-08 15:19:43 | ||
5 | --> | ||
1 | <template> | 6 | <template> |
2 | <section class="app-main"> | 7 | <section class="app-main"> |
3 | <transition name="fade-transform" mode="out-in"> | 8 | <transition name="fade-transform" mode="out-in"> |
... | @@ -6,26 +11,25 @@ | ... | @@ -6,26 +11,25 @@ |
6 | </section> | 11 | </section> |
7 | </template> | 12 | </template> |
8 | <script> | 13 | <script> |
9 | export default { | 14 | export default { |
10 | name: 'AppMain', | 15 | name: 'AppMain', |
11 | computed: { | 16 | computed: { |
12 | key () { | 17 | key () { |
13 | return this.$route.path | 18 | return this.$route.path |
14 | }, | 19 | }, |
15 | }, | 20 | }, |
16 | } | 21 | } |
17 | </script> | 22 | </script> |
18 | 23 | ||
19 | <style lang="scss" scoped> | 24 | <style lang="scss" scoped> |
20 | .hasTagsView { | 25 | .hasTagsView { |
21 | .app-main { | 26 | .app-main { |
22 | height: calc(100% - 41px); | 27 | height: calc(100% - 50px); |
23 | overflow-x: auto; | 28 | overflow-x: auto; |
24 | padding: 5px; | 29 | padding: 5px; |
25 | box-sizing: border-box; | 30 | box-sizing: border-box; |
26 | background-color: #EDF1F7; | 31 | background-color: #edf1f7; |
27 | box-sizing: border-box; | 32 | box-sizing: border-box; |
28 | |||
29 | } | 33 | } |
30 | } | 34 | } |
31 | </style> | 35 | </style> |
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
... | @@ -19,10 +19,10 @@ | ... | @@ -19,10 +19,10 @@ |
19 | </template> | 19 | </template> |
20 | 20 | ||
21 | <script> | 21 | <script> |
22 | import ScrollPane from './ScrollPane' | 22 | import ScrollPane from './ScrollPane' |
23 | import path from 'path' | 23 | import path from 'path' |
24 | 24 | ||
25 | export default { | 25 | export default { |
26 | components: { ScrollPane }, | 26 | components: { ScrollPane }, |
27 | data () { | 27 | data () { |
28 | return { | 28 | return { |
... | @@ -186,26 +186,25 @@ export default { | ... | @@ -186,26 +186,25 @@ export default { |
186 | this.closeMenu() | 186 | this.closeMenu() |
187 | } | 187 | } |
188 | } | 188 | } |
189 | } | 189 | } |
190 | </script> | 190 | </script> |
191 | 191 | ||
192 | <style lang="scss" scoped> | 192 | <style lang="scss" scoped> |
193 | .tags-view-container { | 193 | .tags-view-container { |
194 | height: 40px; | 194 | height: 50px; |
195 | width: 100%; | 195 | width: 100%; |
196 | background: #fff; | 196 | background: #fff; |
197 | border-bottom: 1px solid #d8dce5; | 197 | border-bottom: 1px solid #d8dce5; |
198 | box-sizing: border-box; | 198 | box-sizing: border-box; |
199 | padding-top: 3px; | 199 | padding-top: 3px; |
200 | box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .12), 0 0 3px 0 rgba(0, 0, 0, .04); | 200 | box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 0 3px 0 rgba(0, 0, 0, 0.04); |
201 | 201 | ||
202 | .tags-view-wrapper { | 202 | .tags-view-wrapper { |
203 | .tags-view-item { | 203 | .tags-view-item { |
204 | display: inline-block; | 204 | display: inline-block; |
205 | position: relative; | 205 | position: relative; |
206 | cursor: pointer; | 206 | cursor: pointer; |
207 | height: 26px; | 207 | line-height: 30px; |
208 | line-height: 26px; | ||
209 | border: 1px solid #d8dce5; | 208 | border: 1px solid #d8dce5; |
210 | color: #495060; | 209 | color: #495060; |
211 | background: #fff; | 210 | background: #fff; |
... | @@ -223,12 +222,12 @@ export default { | ... | @@ -223,12 +222,12 @@ export default { |
223 | } | 222 | } |
224 | 223 | ||
225 | &.active { | 224 | &.active { |
226 | background-color: #0794FF; | 225 | background-color: #0794ff; |
227 | color: #fff; | 226 | color: #fff; |
228 | border-color: #0794FF; | 227 | border-color: #0794ff; |
229 | 228 | ||
230 | &::before { | 229 | &::before { |
231 | content: ''; | 230 | content: ""; |
232 | background: #fff; | 231 | background: #fff; |
233 | display: inline-block; | 232 | display: inline-block; |
234 | width: 8px; | 233 | width: 8px; |
... | @@ -252,7 +251,7 @@ export default { | ... | @@ -252,7 +251,7 @@ export default { |
252 | font-size: 12px; | 251 | font-size: 12px; |
253 | font-weight: 400; | 252 | font-weight: 400; |
254 | color: #333; | 253 | color: #333; |
255 | box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, .3); | 254 | box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.3); |
256 | 255 | ||
257 | li { | 256 | li { |
258 | margin: 0; | 257 | margin: 0; |
... | @@ -264,12 +263,12 @@ export default { | ... | @@ -264,12 +263,12 @@ export default { |
264 | } | 263 | } |
265 | } | 264 | } |
266 | } | 265 | } |
267 | } | 266 | } |
268 | </style> | 267 | </style> |
269 | 268 | ||
270 | <style lang="scss"> | 269 | <style lang="scss"> |
271 | //reset element css of el-icon-close | 270 | //reset element css of el-icon-close |
272 | .tags-view-wrapper { | 271 | .tags-view-wrapper { |
273 | .tags-view-item { | 272 | .tags-view-item { |
274 | .el-icon-close { | 273 | .el-icon-close { |
275 | width: 16px; | 274 | width: 16px; |
... | @@ -277,11 +276,11 @@ export default { | ... | @@ -277,11 +276,11 @@ export default { |
277 | vertical-align: 2px; | 276 | vertical-align: 2px; |
278 | border-radius: 50%; | 277 | border-radius: 50%; |
279 | text-align: center; | 278 | text-align: center; |
280 | transition: all .3s cubic-bezier(.645, .045, .355, 1); | 279 | transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); |
281 | transform-origin: 100% 50%; | 280 | transform-origin: 100% 50%; |
282 | 281 | ||
283 | &:before { | 282 | &:before { |
284 | transform: scale(.6); | 283 | transform: scale(0.6); |
285 | display: inline-block; | 284 | display: inline-block; |
286 | vertical-align: -3px; | 285 | vertical-align: -3px; |
287 | } | 286 | } |
... | @@ -292,5 +291,5 @@ export default { | ... | @@ -292,5 +291,5 @@ export default { |
292 | } | 291 | } |
293 | } | 292 | } |
294 | } | 293 | } |
295 | } | 294 | } |
296 | </style> | 295 | </style> | ... | ... |
... | @@ -44,7 +44,7 @@ | ... | @@ -44,7 +44,7 @@ |
44 | <el-button class="operation_button" type="text" @click="openRecordPop(item)">缮证记录</el-button> | 44 | <el-button class="operation_button" type="text" @click="openRecordPop(item)">缮证记录</el-button> |
45 | </div> | 45 | </div> |
46 | <div class="text" v-else> | 46 | <div class="text" v-else> |
47 | <el-button class="operation_button" type="text" @click="openZsylDialog(item, 2)">证书打印({{ item.szcs | 47 | <el-button class="operation_button" type="text" @click="openZsylDialog(item, 2)">证书打印1({{ item.szcs |
48 | }})</el-button> | 48 | }})</el-button> |
49 | <el-button class="operation_button" type="text" @click="openRecordPop(item)">缮证记录</el-button> | 49 | <el-button class="operation_button" type="text" @click="openRecordPop(item)">缮证记录</el-button> |
50 | </div> | 50 | </div> | ... | ... |
... | @@ -12,7 +12,6 @@ import { | ... | @@ -12,7 +12,6 @@ import { |
12 | getNextLinkInfo, | 12 | getNextLinkInfo, |
13 | } from "@/api/fqsq.js"; | 13 | } from "@/api/fqsq.js"; |
14 | import { mapGetters } from 'vuex' | 14 | import { mapGetters } from 'vuex' |
15 | import { log } from "bpmn-js-token-simulation"; | ||
16 | export default { | 15 | export default { |
17 | data () { | 16 | data () { |
18 | return { | 17 | return { |
... | @@ -37,7 +36,8 @@ export default { | ... | @@ -37,7 +36,8 @@ export default { |
37 | isRefresh: { | 36 | isRefresh: { |
38 | handler (newVal, oldVal) { | 37 | handler (newVal, oldVal) { |
39 | if (newVal) this.loadBdcdylist() | 38 | if (newVal) this.loadBdcdylist() |
40 | } | 39 | }, |
40 | immediate: true | ||
41 | } | 41 | } |
42 | }, | 42 | }, |
43 | mounted () { | 43 | mounted () { | ... | ... |
... | @@ -79,20 +79,20 @@ | ... | @@ -79,20 +79,20 @@ |
79 | </div> | 79 | </div> |
80 | </template> | 80 | </template> |
81 | <style scoped lang="scss"> | 81 | <style scoped lang="scss"> |
82 | @import "~@/styles/mixin.scss"; | 82 | @import "~@/styles/mixin.scss"; |
83 | @import "./workFrame.scss"; | 83 | @import "./workFrame.scss"; |
84 | </style> | 84 | </style> |
85 | <script> | 85 | <script> |
86 | import { mapGetters } from 'vuex' | 86 | import { mapGetters } from 'vuex' |
87 | import WorkFlow from "./mixin/index"; | 87 | import WorkFlow from "./mixin/index"; |
88 | import publicFlow from "./mixin/public.js"; | 88 | import publicFlow from "./mixin/public.js"; |
89 | import { getStepFormInfo } from "@/api/fqsq.js"; | 89 | import { getStepFormInfo } from "@/api/fqsq.js"; |
90 | import { getForm } from "./flowform"; | 90 | import { getForm } from "./flowform"; |
91 | import NoticeBar from "@/components/NoticeBar/index"; | 91 | import NoticeBar from "@/components/NoticeBar/index"; |
92 | import { deleteFlow, unClaimTask } from "@/api/ywbl.js"; | 92 | import { deleteFlow, unClaimTask } from "@/api/ywbl.js"; |
93 | import ProcessViewer from "./components/processViewer.vue"; | 93 | import ProcessViewer from "./components/processViewer.vue"; |
94 | import selectBdc from "@/views/ywbl/ywsq/selectBdc.vue"; | 94 | import selectBdc from "@/views/ywbl/ywsq/selectBdc.vue"; |
95 | export default { | 95 | export default { |
96 | components: { | 96 | components: { |
97 | selectBdc, | 97 | selectBdc, |
98 | NoticeBar, | 98 | NoticeBar, |
... | @@ -242,11 +242,17 @@ export default { | ... | @@ -242,11 +242,17 @@ export default { |
242 | this.stepForm(); | 242 | this.stepForm(); |
243 | }, | 243 | }, |
244 | openDialog () { | 244 | openDialog () { |
245 | this.$store.dispatch('user/refreshPage', false) | ||
245 | let data = JSON.parse(localStorage.getItem('ywbl')) | 246 | let data = JSON.parse(localStorage.getItem('ywbl')) |
246 | let title = "申请业务:" + data.sqywmc; | 247 | let title |
248 | if (data?.sqywmc) { | ||
249 | title = "申请业务:" + data?.sqywmc | ||
250 | } else { | ||
251 | title = "申请业务:" + data?.djywmc | ||
252 | } | ||
247 | this.$popupDialog(title, "ywbl/ywsq/selectBdc", { 'djywbm': this.$route.query.sqywbm, 'isJump': true, 'sqywInfo': data }, "80%", true) | 253 | this.$popupDialog(title, "ywbl/ywsq/selectBdc", { 'djywbm': this.$route.query.sqywbm, 'isJump': true, 'sqywInfo': data }, "80%", true) |
248 | } | 254 | } |
249 | } | 255 | } |
250 | } | 256 | } |
251 | </script> | 257 | </script> |
252 | 258 | ... | ... |
... | @@ -101,6 +101,7 @@ | ... | @@ -101,6 +101,7 @@ |
101 | import { datas, sendThis } from "./dbxdata"; | 101 | import { datas, sendThis } from "./dbxdata"; |
102 | import { searchTaskToDo, deleteFlow, claimTask } from "@/api/ywbl"; | 102 | import { searchTaskToDo, deleteFlow, claimTask } from "@/api/ywbl"; |
103 | import { judgeUserTaskPermission } from "@/api/fqsq"; | 103 | import { judgeUserTaskPermission } from "@/api/fqsq"; |
104 | import { log } from 'bpmn-js-token-simulation'; | ||
104 | export default { | 105 | export default { |
105 | name: "dbx", | 106 | name: "dbx", |
106 | components: { searchBox }, | 107 | components: { searchBox }, | ... | ... |
... | @@ -56,7 +56,7 @@ | ... | @@ -56,7 +56,7 @@ |
56 | </el-form> | 56 | </el-form> |
57 | </div> | 57 | </div> |
58 | <div class="from-clues-content"> | 58 | <div class="from-clues-content"> |
59 | <lb-table ref="table" @row-dblclick="handleRowClick" :page-size="pageData.pageSize" :heightNum="400" | 59 | <lb-table ref="table" @row-dblclick="handleRowClick" :page-size="pageData.pageSize" :calcHeight="400" |
60 | :current-page.sync="pageData.currentPage" :total="zrztableData.total" @size-change="handleSizeChange" | 60 | :current-page.sync="pageData.currentPage" :total="zrztableData.total" @size-change="handleSizeChange" |
61 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="zrztableData.columns" | 61 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="zrztableData.columns" |
62 | :data="zrztableData.data"> | 62 | :data="zrztableData.data"> |
... | @@ -107,7 +107,7 @@ | ... | @@ -107,7 +107,7 @@ |
107 | </el-form> | 107 | </el-form> |
108 | </div> | 108 | </div> |
109 | <div class="from-clues-content loadingtext"> | 109 | <div class="from-clues-content loadingtext"> |
110 | <lb-table ref="table" @row-dblclick="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" | 110 | <lb-table ref="table" @row-dblclick="handleRowClick" :page-size="pageData.pageSize" :calcHeight="400" |
111 | :current-page.sync="pageData.currentPage" :total="dztableData.total" @size-change="handleSizeChange" | 111 | :current-page.sync="pageData.currentPage" :total="dztableData.total" @size-change="handleSizeChange" |
112 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="dztableData.columns" | 112 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="dztableData.columns" |
113 | :data="dztableData.data"> | 113 | :data="dztableData.data"> | ... | ... |
... | @@ -8,7 +8,7 @@ export default { | ... | @@ -8,7 +8,7 @@ export default { |
8 | methods: { | 8 | methods: { |
9 | //点击行选中或取消复选框 | 9 | //点击行选中或取消复选框 |
10 | handleRowClick (row, column, event) { | 10 | handleRowClick (row, column, event) { |
11 | (this.$refs.table.toggleRowSelection(row)) | 11 | this.$refs.table.toggleRowSelection(row) |
12 | }, | 12 | }, |
13 | jump (data, type) { | 13 | jump (data, type) { |
14 | const { href } = Router.resolve( | 14 | const { href } = Router.resolve( | ... | ... |
... | @@ -106,6 +106,7 @@ | ... | @@ -106,6 +106,7 @@ |
106 | if (!this.isJump) { | 106 | if (!this.isJump) { |
107 | this.jump(res.result, this.sqywInfo.djywbm); | 107 | this.jump(res.result, this.sqywInfo.djywbm); |
108 | } else { | 108 | } else { |
109 | this.$popupCacel() | ||
109 | store.dispatch('user/refreshPage', true); | 110 | store.dispatch('user/refreshPage', true); |
110 | } | 111 | } |
111 | } else { | 112 | } else { | ... | ... |
... | @@ -19,7 +19,7 @@ | ... | @@ -19,7 +19,7 @@ |
19 | <div class="right-title">常办业务列表</div> | 19 | <div class="right-title">常办业务列表</div> |
20 | <ul> | 20 | <ul> |
21 | <li :class="item.selected ? 'cactive' : ''" v-for="(item, index) in collectList" :key="index" | 21 | <li :class="item.selected ? 'cactive' : ''" v-for="(item, index) in collectList" :key="index" |
22 | @dblclick="dblclick(collectList, index)" @click="selectSqywClick(collectList, index)"> | 22 | @dblclick="dblclick(collectList, index, item)" @click="selectSqywClick(collectList, index)"> |
23 | <p v-if="item.nodetype == 'djqx'">{{ item.djywmc }}<br>{{ item.nodename }}</p> | 23 | <p v-if="item.nodetype == 'djqx'">{{ item.djywmc }}<br>{{ item.nodename }}</p> |
24 | <dt v-else>{{ item.djywmc }}</dt> | 24 | <dt v-else>{{ item.djywmc }}</dt> |
25 | <p class="active" @click.stop="handleCollection(item)"> | 25 | <p class="active" @click.stop="handleCollection(item)"> |
... | @@ -37,7 +37,7 @@ | ... | @@ -37,7 +37,7 @@ |
37 | <div class="right-type el-card box-card is-always-shadow"> | 37 | <div class="right-type el-card box-card is-always-shadow"> |
38 | <div class="right-title">登记类型</div> | 38 | <div class="right-title">登记类型</div> |
39 | <ul class="type-content"> | 39 | <ul class="type-content"> |
40 | <li :class="item.selected ? 'cactive' : ''" @dblclick="item.sffqlc == 1 && dblclick(djlxList, index)" | 40 | <li :class="item.selected ? 'cactive' : ''" @dblclick="item.sffqlc == 1 && dblclick(djlxList, index, item)" |
41 | @click="selectSqywClick(djlxList, index)" v-for="(item, index) in djlxList" :key="index"> | 41 | @click="selectSqywClick(djlxList, index)" v-for="(item, index) in djlxList" :key="index"> |
42 | <p> | 42 | <p> |
43 | {{ item.nodename }} | 43 | {{ item.nodename }} |
... | @@ -53,7 +53,7 @@ | ... | @@ -53,7 +53,7 @@ |
53 | <div class="right-title">登记情形</div> | 53 | <div class="right-title">登记情形</div> |
54 | <ul> | 54 | <ul> |
55 | <li :class="item.selected ? 'cactive' : ''" v-for="(item, index) in djqxList" :key="index" | 55 | <li :class="item.selected ? 'cactive' : ''" v-for="(item, index) in djqxList" :key="index" |
56 | @dblclick="dblclick(djqxList, index)" @click="selectSqywClick(djqxList, index)"> | 56 | @dblclick="dblclick(djqxList, index, item)" @click="selectSqywClick(djqxList, index)"> |
57 | <dt>{{ item.nodename }}</dt> | 57 | <dt>{{ item.nodename }}</dt> |
58 | <p :class="item.userCollect == 1 ? 'active' : ''" @click.stop="handleCollection(item)"> | 58 | <p :class="item.userCollect == 1 ? 'active' : ''" @click.stop="handleCollection(item)"> |
59 | <i class="el-icon-star-off"></i> | 59 | <i class="el-icon-star-off"></i> |
... | @@ -69,8 +69,8 @@ | ... | @@ -69,8 +69,8 @@ |
69 | </div> | 69 | </div> |
70 | </template> | 70 | </template> |
71 | <script> | 71 | <script> |
72 | import { getCollectBiz, getleftMenu, getNextNode, addCollectBiz, deleteCollectBiz } from "@/api/ywbl" | 72 | import { getCollectBiz, getleftMenu, getNextNode, addCollectBiz, deleteCollectBiz } from "@/api/ywbl" |
73 | export default { | 73 | export default { |
74 | data () { | 74 | data () { |
75 | return { | 75 | return { |
76 | //申请业务类型集合 | 76 | //申请业务类型集合 |
... | @@ -166,7 +166,8 @@ export default { | ... | @@ -166,7 +166,8 @@ export default { |
166 | }) | 166 | }) |
167 | }, | 167 | }, |
168 | //双击事件 | 168 | //双击事件 |
169 | dblclick (data, index) { | 169 | dblclick (data, index, item) { |
170 | localStorage.setItem('ywbl', JSON.stringify(item)); | ||
170 | this.selectSqywClick(data, index); | 171 | this.selectSqywClick(data, index); |
171 | this.dialogClick(); | 172 | this.dialogClick(); |
172 | }, | 173 | }, |
... | @@ -258,17 +259,17 @@ export default { | ... | @@ -258,17 +259,17 @@ export default { |
258 | return r => require.ensure([], () => r(require(`./components/${view}/${view}.vue`))) | 259 | return r => require.ensure([], () => r(require(`./components/${view}/${view}.vue`))) |
259 | } | 260 | } |
260 | } | 261 | } |
261 | } | 262 | } |
262 | </script> | 263 | </script> |
263 | <style scoped lang='scss'> | 264 | <style scoped lang='scss'> |
264 | @import "~@/styles/mixin.scss"; | 265 | @import "~@/styles/mixin.scss"; |
265 | @import './ywsq.scss'; | 266 | @import "./ywsq.scss"; |
266 | 267 | ||
267 | /deep/.el-collapse-item__content { | 268 | /deep/.el-collapse-item__content { |
268 | padding-bottom: 0; | 269 | padding-bottom: 0; |
269 | } | 270 | } |
270 | 271 | ||
271 | /deep/.el-collapse-item__wrap { | 272 | /deep/.el-collapse-item__wrap { |
272 | border-bottom: none; | 273 | border-bottom: none; |
273 | } | 274 | } |
274 | </style> | 275 | </style> |
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
... | @@ -8,8 +8,8 @@ | ... | @@ -8,8 +8,8 @@ |
8 | @updateDialog="updateDialog" /> | 8 | @updateDialog="updateDialog" /> |
9 | </template> | 9 | </template> |
10 | <script> | 10 | <script> |
11 | import { queueDjywmc } from "./slectBdcdata.js"; | 11 | import { queueDjywmc } from "./slectBdcdata.js"; |
12 | export default { | 12 | export default { |
13 | props: { | 13 | props: { |
14 | formData: { | 14 | formData: { |
15 | type: Object, | 15 | type: Object, |
... | @@ -42,15 +42,15 @@ export default { | ... | @@ -42,15 +42,15 @@ export default { |
42 | this.$emit("updateDialog", true); | 42 | this.$emit("updateDialog", true); |
43 | } | 43 | } |
44 | } | 44 | } |
45 | } | 45 | } |
46 | </script> | 46 | </script> |
47 | <style scoped lang="scss"> | 47 | <style scoped lang="scss"> |
48 | @import "~@/styles/mixin.scss"; | 48 | @import "~@/styles/mixin.scss"; |
49 | @import "~@/styles/public.scss"; | 49 | @import "~@/styles/public.scss"; |
50 | 50 | ||
51 | /deep/.submit_button { | 51 | /deep/.submit_button { |
52 | text-align: center; | 52 | text-align: center; |
53 | padding: 10px; | 53 | padding: 10px; |
54 | margin: 10px; | 54 | margin: 10px; |
55 | } | 55 | } |
56 | </style> | 56 | </style> | ... | ... |
-
Please register or sign in to post a comment