n20-common-lib 3.2.22 → 3.2.24
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/package.json +1 -1
- package/src/assets/css/table.scss +7 -0
- package/src/components/v3/UploadList/index.vue +10 -4
- package/style/index.css +1 -1
- package/theme/blue.css +1 -1
- package/theme/cctcRed.css +1 -1
- package/theme/green.css +1 -1
- package/theme/lightBlue.css +1 -1
- package/theme/orange.css +1 -1
- package/theme/purple.css +1 -1
- package/theme/red.css +1 -1
- package/theme/yellow.css +1 -1
package/package.json
CHANGED
|
@@ -259,3 +259,10 @@ th.vxe-header--column {
|
|
|
259
259
|
.vxe-table--render-default:not(.v3-n20-table-pro) .vxe-body--column > .vxe-cell {
|
|
260
260
|
display: inline-block !important;
|
|
261
261
|
}
|
|
262
|
+
|
|
263
|
+
/* vxe-table-pro样式兼容性问题 */
|
|
264
|
+
.vxe-table--column.vxe-body--column {
|
|
265
|
+
.el-button--mini {
|
|
266
|
+
padding: 5px 7px;
|
|
267
|
+
}
|
|
268
|
+
}
|
|
@@ -7,10 +7,16 @@
|
|
|
7
7
|
<span>{{ uploadedCount }} 个附件</span>
|
|
8
8
|
<el-button type="text" class="summary-action v3-icon-download" @click="downRows">全部下载</el-button>
|
|
9
9
|
</div>
|
|
10
|
-
<
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
<div class="flex-box flex-v" v-if="!readonly">
|
|
11
|
+
<div>
|
|
12
|
+
<slot></slot>
|
|
13
|
+
</div>
|
|
14
|
+
<el-divider direction="vertical"></el-divider>
|
|
15
|
+
<el-button type="text" class="toggle-btn" @click="toggleCollapse">
|
|
16
|
+
{{ showAllTypes ? '收起未传类型' : '展开全部' }}
|
|
17
|
+
<i :class="['el-icon-arrow-down', { 'is-reverse': showAllTypes }]"></i>
|
|
18
|
+
</el-button>
|
|
19
|
+
</div>
|
|
14
20
|
</div>
|
|
15
21
|
|
|
16
22
|
<div class="type-list">
|