File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ export default {
108108 align-items : center ;
109109 padding : 10px 100px ;
110110 position : relative ;
111- z-index : 100000 ;
111+ z-index : 1000 ;
112112 & .fixedToTop {
113113 position : fixed ;
114114
Original file line number Diff line number Diff line change @@ -94,10 +94,7 @@ export default {
9494
9595 const dataRequest = this .fetchList ();
9696
97- this .loadingIns = this .$loading ({
98- // position: { top: 60 },
99- background: " #fff"
100- });
97+ this .loadingIns = this .$loading ();
10198 Promise .all ([jobConfigRequest, dataRequest]).then (() => {
10299 this .loadingIns .close ();
103100 });
@@ -141,8 +138,12 @@ export default {
141138 },
142139 methods: {
143140 clearFilter () {
144- this .job_category_id_list = [];
145- this .location_code_list = [];
141+ if (this .job_category_id_list .length ) {
142+ this .job_category_id_list = [];
143+ }
144+ if (this .location_code_list .length ) {
145+ this .location_code_list = [];
146+ }
146147 },
147148 fetchList () {
148149 this .loading = true ;
You can’t perform that action at this time.
0 commit comments