htui-yllkbz 1.3.51 → 1.3.52
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 +28 -28
- package/lib/htui.common.js.gz +0 -0
- package/lib/htui.css +1 -1
- package/lib/htui.umd.js +28 -28
- package/lib/htui.umd.js.gz +0 -0
- package/lib/htui.umd.min.js +3 -3
- package/lib/htui.umd.min.js.gz +0 -0
- package/package.json +1 -1
- package/src/packages/HtBaseData/index.vue +3 -4
package/lib/htui.umd.min.js.gz
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -874,10 +874,9 @@ export default class CommonDatas extends Vue {
|
|
|
874
874
|
cur.childrenList = [];
|
|
875
875
|
if (cur.users) {
|
|
876
876
|
cur.users.map((item) => {
|
|
877
|
-
item.name =
|
|
878
|
-
item.surname
|
|
879
|
-
|
|
880
|
-
: item.userName;
|
|
877
|
+
item.name = item.surname
|
|
878
|
+
? `${item.surname}${item.name}`
|
|
879
|
+
: item.userName;
|
|
881
880
|
item.childrenList = undefined;
|
|
882
881
|
|
|
883
882
|
return item;
|