htui-yllkbz 1.3.42 → 1.3.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/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 +3 -5
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 11:15:03
|
|
8
8
|
-->
|
|
9
9
|
<template>
|
|
10
10
|
<div v-loading="state.loading" style="background:#fff">
|
|
@@ -317,9 +317,7 @@
|
|
|
317
317
|
:visible.sync="state.visibleFilter"
|
|
318
318
|
title="属性设置"
|
|
319
319
|
v-if="state.visibleFilter"
|
|
320
|
-
:append-to-body="false"
|
|
321
320
|
:close-on-click-modal="true"
|
|
322
|
-
:modal-append-to-body="false"
|
|
323
321
|
width="400px"
|
|
324
322
|
>
|
|
325
323
|
<p
|
|
@@ -371,8 +369,6 @@
|
|
|
371
369
|
:visible.sync="state.visibleFile"
|
|
372
370
|
v-if="state.visibleFile"
|
|
373
371
|
title="附件查看"
|
|
374
|
-
:append-to-body="false"
|
|
375
|
-
:modal-append-to-body="false"
|
|
376
372
|
:close-on-click-modal="true"
|
|
377
373
|
width="400px"
|
|
378
374
|
:center="true"
|
|
@@ -399,6 +395,8 @@ import PageInfo from '@/packages/PageInfo/index.vue';
|
|
|
399
395
|
import HtUploadFiles from '@/packages/HtUploadFiles/index.vue';
|
|
400
396
|
import HtShowBaseData from '@/packages/HtShowBaseData';
|
|
401
397
|
import HtOrgInfo from '@/packages/HtOrgInfo';
|
|
398
|
+
import ElmentUI from 'element-ui';
|
|
399
|
+
Vue.use(ElmentUI, { zIndex: 3000 });
|
|
402
400
|
interface State {
|
|
403
401
|
pageInfo: PageInfoType;
|
|
404
402
|
loading: boolean;
|