n20-common-lib 2.4.44 → 2.4.45

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n20-common-lib",
3
- "version": "2.4.44",
3
+ "version": "2.4.45",
4
4
  "private": false,
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -397,7 +397,7 @@ iframe {
397
397
  .page-footer-shadow {
398
398
  position: relative;
399
399
  height: 28px;
400
- margin-bottom: -4px;
400
+ margin-bottom: -6px;
401
401
 
402
402
  &::before {
403
403
  content: '';
@@ -16,7 +16,7 @@ export default {
16
16
 
17
17
  return _c(
18
18
  'div',
19
- { staticClass: 'p-t-m' },
19
+ {},
20
20
  _l(navList, function (item) {
21
21
  return _c(
22
22
  'div',
@@ -34,13 +34,9 @@
34
34
  <el-option
35
35
  v-if="authList.includes('isAddForwardTask') || preAddTask"
36
36
  :label="'向前加签' | $lc"
37
- :value="authList.includes('isAddForwardTask') ? 'isAddForwardTask' : '2'"
38
- />
39
- <el-option
40
- v-if="authList.includes('isAddtask') || preAddTask"
41
- :label="'向后加签' | $lc"
42
- :value="authList.includes('isAddtask') ? 'isAddtask' : '1'"
37
+ value="2"
43
38
  />
39
+ <el-option v-if="authList.includes('isAddtask') || preAddTask" :label="'向后加签' | $lc" value="1" />
44
40
  </el-select>
45
41
  <el-select
46
42
  v-model="addTaskType"
@@ -17,7 +17,12 @@
17
17
  </slot>
18
18
  </div>
19
19
  </div>
20
- <el-table :data="tableData" :row-key="keys.rowKey" @selection-change="(selection) => (selectionList = selection)">
20
+ <el-table
21
+ border
22
+ :data="tableData"
23
+ :row-key="keys.rowKey"
24
+ @selection-change="(selection) => (selectionList = selection)"
25
+ >
21
26
  <slot name="selection-column">
22
27
  <el-table-column type="selection" width="50" align="center" />
23
28
  </slot>
@@ -110,7 +115,7 @@
110
115
  <slot slot="header" slot-scope="scope" name="time-header" :column="scope.column">{{ '上传时间' | $lc }}</slot>
111
116
  <slot slot-scope="{ row }" name="time" :row="row">{{ row[keys.time] }}</slot>
112
117
  </el-table-column>
113
- <el-table-column v-if="!hideUser" :label="'上传人' | $lc" :prop="keys.user">
118
+ <el-table-column v-if="!hideUser" :label="'上传人' | $lc" :prop="keys.user" width="100">
114
119
  <slot slot="header" slot-scope="scope" name="user-header" :column="scope.column">{{ '上传人' | $lc }}</slot>
115
120
  <slot slot-scope="{ row }" name="user" :row="row">{{ row[keys.user] }}</slot>
116
121
  </el-table-column>