htui-yllkbz 1.3.69 → 1.3.71
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/lib/htui.common.js +38 -38
- package/lib/htui.common.js.gz +0 -0
- package/lib/htui.css +1 -1
- package/lib/htui.umd.js +38 -38
- package/lib/htui.umd.js.gz +0 -0
- package/lib/htui.umd.min.js +5 -5
- package/lib/htui.umd.min.js.gz +0 -0
- package/package.json +1 -1
- package/src/packages/HtBaseData/index.vue +2 -2
- package/src/packages/HtTable/index.vue +3 -3
package/lib/htui.umd.min.js.gz
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
v-model="state.selectVal['departmentUser']"
|
|
137
137
|
:show-all-levels="state.configJson['departmentUser'].showAllLevels"
|
|
138
138
|
:props="{
|
|
139
|
-
label: '
|
|
139
|
+
label: 'label',
|
|
140
140
|
value: 'id',
|
|
141
141
|
children: 'childrenList',
|
|
142
142
|
expandTrigger: 'click',
|
|
@@ -194,7 +194,7 @@
|
|
|
194
194
|
:placeholder="placeholder || `请选择部门下人员`"
|
|
195
195
|
v-model="state.selectVal['departmentUser']"
|
|
196
196
|
:props="{
|
|
197
|
-
label: '
|
|
197
|
+
label: 'label',
|
|
198
198
|
value: 'id',
|
|
199
199
|
children: 'childrenList',
|
|
200
200
|
expandTrigger: 'click',
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* @Author: hutao
|
|
5
5
|
* @Date: 2021-11-11 11:23:24
|
|
6
6
|
* @LastEditors: hutao
|
|
7
|
-
* @LastEditTime: 2022-10-
|
|
7
|
+
* @LastEditTime: 2022-10-27 16:24:28
|
|
8
8
|
-->
|
|
9
9
|
<template>
|
|
10
10
|
<div v-loading="state.loading" style="background:#fff">
|
|
@@ -155,12 +155,12 @@
|
|
|
155
155
|
:min-width="item.minWidth"
|
|
156
156
|
:width="item.width"
|
|
157
157
|
>
|
|
158
|
-
<template slot-scope="{ row, column,
|
|
158
|
+
<template slot-scope="{ row, column, $index }">
|
|
159
159
|
<slot
|
|
160
160
|
:name="item.key"
|
|
161
161
|
:row="row"
|
|
162
162
|
:column="column"
|
|
163
|
-
:rowIndex="
|
|
163
|
+
:rowIndex="$index"
|
|
164
164
|
>
|
|
165
165
|
<!-- 处理部门 -->
|
|
166
166
|
<template v-if="item.type === 'org'">
|