gy-webcode2 1.1.1 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/themeConfig.vue +2 -2
- package/css/layout.scss +62 -1
- package/index.js +1 -1
- package/package.json +1 -1
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
<div class="row1 mar_t_10">
|
|
28
28
|
内容区域
|
|
29
29
|
</div>
|
|
30
|
-
<div class="flex aic jcb pad_t_10 pad_b_10">
|
|
30
|
+
<!-- <div class="flex aic jcb pad_t_10 pad_b_10">
|
|
31
31
|
<div>水印</div>
|
|
32
32
|
<div>
|
|
33
33
|
<el-switch v-model="$store.state.watermarkShow"></el-switch>
|
|
34
34
|
</div>
|
|
35
|
-
</div>
|
|
35
|
+
</div> -->
|
|
36
36
|
<div class="flex aic jcb pad_t_10 pad_b_10">
|
|
37
37
|
<div>面包屑</div>
|
|
38
38
|
<div>
|
package/css/layout.scss
CHANGED
|
@@ -174,7 +174,7 @@
|
|
|
174
174
|
margin-bottom: 5px;
|
|
175
175
|
margin-top: 5px;
|
|
176
176
|
.name{
|
|
177
|
-
font-size:
|
|
177
|
+
font-size: 16px;
|
|
178
178
|
}
|
|
179
179
|
.myHover{
|
|
180
180
|
cursor: pointer;
|
|
@@ -340,4 +340,65 @@
|
|
|
340
340
|
right: 0;
|
|
341
341
|
bottom: 0;
|
|
342
342
|
z-index: 10;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.routerTabs{
|
|
346
|
+
height: 32px;
|
|
347
|
+
background: #dce0e7;
|
|
348
|
+
display: flex;
|
|
349
|
+
padding: 4px;
|
|
350
|
+
user-select: none;
|
|
351
|
+
|
|
352
|
+
.menuBtn{
|
|
353
|
+
cursor: pointer;
|
|
354
|
+
// color: #fff;
|
|
355
|
+
display: flex;
|
|
356
|
+
align-items: center;
|
|
357
|
+
font-size: 14px;
|
|
358
|
+
// color: #acb5ce;
|
|
359
|
+
border-radius: 4px;
|
|
360
|
+
background: #f0f2f5;
|
|
361
|
+
&:hover{
|
|
362
|
+
@include themeColor('color','active');
|
|
363
|
+
}
|
|
364
|
+
&.swiper-button-disabled{
|
|
365
|
+
opacity: 0.2;
|
|
366
|
+
display: none;
|
|
367
|
+
}
|
|
368
|
+
&.swiper-button-lock{
|
|
369
|
+
display: none;
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
.swiper-slide{
|
|
373
|
+
width: auto;
|
|
374
|
+
}
|
|
375
|
+
.item{
|
|
376
|
+
min-width: 126px;
|
|
377
|
+
display: flex;
|
|
378
|
+
padding: 0 10px;
|
|
379
|
+
background: #f0f2f5;
|
|
380
|
+
align-items: center;
|
|
381
|
+
margin-right: 4px;
|
|
382
|
+
border-radius: 4px;
|
|
383
|
+
justify-content: space-between;
|
|
384
|
+
cursor: pointer;
|
|
385
|
+
color: #595959;
|
|
386
|
+
height: 100%;
|
|
387
|
+
font-size: 13px;
|
|
388
|
+
.name{
|
|
389
|
+
margin-right: 20px;
|
|
390
|
+
}
|
|
391
|
+
&.active{
|
|
392
|
+
background: #fff;
|
|
393
|
+
@include themeColor('background-color','active');
|
|
394
|
+
.name{
|
|
395
|
+
color: #fff;
|
|
396
|
+
}
|
|
397
|
+
.other{
|
|
398
|
+
color: #fff;
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
.other{
|
|
402
|
+
}
|
|
403
|
+
}
|
|
343
404
|
}
|
package/index.js
CHANGED