
--- client/resources/scss/admin/content.scss
+++ client/resources/scss/admin/content.scss
... | ... | @@ -486,10 +486,13 @@ |
486 | 486 |
} |
487 | 487 |
|
488 | 488 |
border-bottom: 0; |
489 |
- |
|
489 |
+ |
|
490 | 490 |
} |
491 | 491 |
} |
492 | 492 |
td{ |
493 |
+ p{ |
|
494 |
+ @include ellipsis(1) |
|
495 |
+ } |
|
493 | 496 |
.form-check{ |
494 | 497 |
justify-content: center; |
495 | 498 |
input[type=checkbox] ~ label{ |
--- client/views/component/table/ListTable.vue
+++ client/views/component/table/ListTable.vue
... | ... | @@ -29,7 +29,7 @@ |
29 | 29 |
> |
30 | 30 |
<svg-icon type="mdi" :path="pinPath" :width="20" :height="20" v-if="index == 'bbsNm' && ntcList.includes(idx)"></svg-icon> |
31 | 31 |
<svg-icon type="mdi" :path="lockPath" :width="20" :height="20" v-else-if="index == 'bbsNm' && lockList.includes(idx)"></svg-icon> |
32 |
- {{ content }} |
|
32 |
+ <p>{{ content }}</p> |
|
33 | 33 |
</td> |
34 | 34 |
<td v-if="$slots.button"> |
35 | 35 |
<slot name="button" :row="row" :idx="idx"></slot> |
--- client/views/pages/adm/boardManagement/boardManagement/BoardManagementSelectList.vue
+++ client/views/pages/adm/boardManagement/boardManagement/BoardManagementSelectList.vue
... | ... | @@ -41,7 +41,7 @@ |
41 | 41 |
<tr v-for="(row, idx) in tbody" :key="idx" @click="fnView(idx)" class="cursor"> |
42 | 42 |
<td v-for="(content, index) in row" :key="index" |
43 | 43 |
:class="index === 'bbsNm' ? 'text-lf' : 'text-ct'"> |
44 |
- {{ content }} |
|
44 |
+ <p>{{ content }}</p> |
|
45 | 45 |
</td> |
46 | 46 |
</tr> |
47 | 47 |
</tbody> |
--- client/views/pages/adm/main/Main.vue
+++ client/views/pages/adm/main/Main.vue
... | ... | @@ -11,7 +11,7 @@ |
11 | 11 |
:colgroup="colgroup" |
12 | 12 |
:thead="thead" |
13 | 13 |
:tbody="tbody" |
14 |
- :className="'data'" |
|
14 |
+ :className="'data cursor'" |
|
15 | 15 |
@listClick="fnPopupViewDetail" |
16 | 16 |
/> |
17 | 17 |
</div> |
... | ... | @@ -23,7 +23,7 @@ |
23 | 23 |
:colgroup="colgroup2" |
24 | 24 |
:thead="thead2" |
25 | 25 |
:tbody="tbody2" |
26 |
- :className="'data'" |
|
26 |
+ :className="'data cursor'" |
|
27 | 27 |
@listClick="fnBbsCnViewDetail" |
28 | 28 |
/> |
29 | 29 |
</div> |
--- client/views/pages/adm/system/networkAccessControl/NetworkAccessControlSelectList.vue
+++ client/views/pages/adm/system/networkAccessControl/NetworkAccessControlSelectList.vue
... | ... | @@ -34,7 +34,7 @@ |
34 | 34 |
<div class="scroll"> |
35 | 35 |
<div class="tbl-wrap"> |
36 | 36 |
<ListTable |
37 |
- :className="'data'" |
|
37 |
+ :className="'data cursor'" |
|
38 | 38 |
:colgroup="colgroup" |
39 | 39 |
:thead="thead" |
40 | 40 |
:tbody="tbody" |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?