htui-yllkbz 1.3.41 → 1.3.44
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 +71473 -8690
- package/lib/htui.common.js.gz +0 -0
- package/lib/htui.umd.js +71471 -8688
- package/lib/htui.umd.js.gz +0 -0
- package/lib/htui.umd.min.js +19 -4
- package/lib/htui.umd.min.js.gz +0 -0
- package/package.json +1 -1
- package/src/packages/HtTable/index.vue +6 -2
package/lib/htui.umd.min.js.gz
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* @Author: hutao
|
|
5
5
|
* @Date: 2021-11-11 11:23:24
|
|
6
6
|
* @LastEditors: hutao
|
|
7
|
-
* @LastEditTime: 2022-08-
|
|
7
|
+
* @LastEditTime: 2022-08-10 10:07:00
|
|
8
8
|
-->
|
|
9
9
|
<template>
|
|
10
10
|
<div v-loading="state.loading" style="background:#fff">
|
|
@@ -318,6 +318,7 @@
|
|
|
318
318
|
title="属性设置"
|
|
319
319
|
v-if="state.visibleFilter"
|
|
320
320
|
:append-to-body="false"
|
|
321
|
+
:modal-append-to-body="true"
|
|
321
322
|
:close-on-click-modal="true"
|
|
322
323
|
width="400px"
|
|
323
324
|
>
|
|
@@ -370,7 +371,8 @@
|
|
|
370
371
|
:visible.sync="state.visibleFile"
|
|
371
372
|
v-if="state.visibleFile"
|
|
372
373
|
title="附件查看"
|
|
373
|
-
:append-to-body="
|
|
374
|
+
:append-to-body="true"
|
|
375
|
+
:modal-append-to-body="false"
|
|
374
376
|
:close-on-click-modal="true"
|
|
375
377
|
width="400px"
|
|
376
378
|
:center="true"
|
|
@@ -397,6 +399,8 @@ import PageInfo from '@/packages/PageInfo/index.vue';
|
|
|
397
399
|
import HtUploadFiles from '@/packages/HtUploadFiles/index.vue';
|
|
398
400
|
import HtShowBaseData from '@/packages/HtShowBaseData';
|
|
399
401
|
import HtOrgInfo from '@/packages/HtOrgInfo';
|
|
402
|
+
import ElmentUI from 'element-ui';
|
|
403
|
+
Vue.use(ElmentUI, { zIndex: 3000 });
|
|
400
404
|
interface State {
|
|
401
405
|
pageInfo: PageInfoType;
|
|
402
406
|
loading: boolean;
|