|
@@ -132,7 +132,7 @@
|
132
|
132
|
title="查看"
|
133
|
133
|
>
|
134
|
134
|
<div class="view_title">
|
135
|
|
- <div>{{ viewInfo.name }}</div>
|
|
135
|
+ {{ viewInfo.name }}
|
136
|
136
|
<div v-if="viewInfo.wltype === 1" class="wltype_1">APP</div>
|
137
|
137
|
<div v-if="viewInfo.wltype === 2" class="wltype_2">网址</div>
|
138
|
138
|
</div>
|
|
@@ -152,9 +152,11 @@
|
152
|
152
|
<FormItem label="简介" style="margin-bottom: 0; width: 100%">{{
|
153
|
153
|
viewInfo.comm
|
154
|
154
|
}}</FormItem>
|
155
|
|
- <FormItem label="网址" style="margin-bottom: 0; width: 100%">{{
|
156
|
|
- viewInfo.whiteAddress
|
157
|
|
- }}</FormItem>
|
|
155
|
+ <FormItem
|
|
156
|
+ label="网址"
|
|
157
|
+ style="margin-bottom: 0; width: 100%; word-break: break-all"
|
|
158
|
+ >{{ viewInfo.whiteAddress }}</FormItem
|
|
159
|
+ >
|
158
|
160
|
</Form>
|
159
|
161
|
<div slot="footer" style="text-align: center">
|
160
|
162
|
<Button @click="viewInfo.show = false">关闭</Button>
|
|
@@ -466,12 +468,13 @@ export default {
|
466
|
468
|
.view_title {
|
467
|
469
|
display: flex;
|
468
|
470
|
justify-content: center;
|
469
|
|
- align-items: center;
|
|
471
|
+ align-items: flex-start;
|
470
|
472
|
margin-bottom: 16px;
|
471
|
473
|
font-size: 18px;
|
472
|
474
|
font-weight: bold;
|
473
|
475
|
text-align: center;
|
474
|
476
|
.wltype_1 {
|
|
477
|
+ margin-top: 2px;
|
475
|
478
|
margin-left: 10px;
|
476
|
479
|
padding: 0 10px;
|
477
|
480
|
line-height: 20px;
|
|
@@ -479,9 +482,11 @@ export default {
|
479
|
482
|
font-weight: normal;
|
480
|
483
|
font-size: 12px;
|
481
|
484
|
border-radius: 4px;
|
|
485
|
+ white-space: nowrap;
|
482
|
486
|
background: #7854f6;
|
483
|
487
|
}
|
484
|
488
|
.wltype_2 {
|
|
489
|
+ margin-top: 2px;
|
485
|
490
|
margin-left: 10px;
|
486
|
491
|
padding: 0 10px;
|
487
|
492
|
line-height: 20px;
|
|
@@ -489,6 +494,7 @@ export default {
|
489
|
494
|
font-weight: normal;
|
490
|
495
|
font-size: 12px;
|
491
|
496
|
border-radius: 4px;
|
|
497
|
+ white-space: nowrap;
|
492
|
498
|
background: #52c41a;
|
493
|
499
|
}
|
494
|
500
|
}
|