hd-idevvue3 3.0.0 → 3.0.2
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/.env.development +5 -0
- package/.env.production +5 -0
- package/README.md +22 -191
- package/dist/assets/index.774ef40e.css +1 -0
- package/dist/hd-idevvue3.mjs +45697 -0
- package/dist/hd-idevvue3.umd.js +153 -0
- package/index.html +1 -0
- package/npminstall-debug.log +10 -2
- package/package.json +35 -40
- package/pnpm-lock.yaml +2631 -0
- package/src/App.vue +15 -0
- package/src/assets/sound/notify.wav +0 -0
- package/src/demo/demo.vue +43 -0
- package/src/demo/dropdemo.vue +43 -0
- package/src/demo/extsets.vue +107 -0
- package/src/demo/formedit.vue +145 -0
- package/src/demo/hightquery.vue +169 -0
- package/src/demo/inlineedit.vue +88 -0
- package/src/demo/selfdrop.vue +41 -0
- package/src/demo//350/241/214/345/206/205/347/272/247/350/201/224.txt +2 -0
- package/src/directive/el-dragDialog/drag.js +124 -0
- package/src/directive/el-dragDialog/index.js +13 -0
- package/src/errorLog.js +16 -0
- package/src/hdcom/BigGrid.js +173 -0
- package/src/hdcom/BillShow.vue +90 -0
- package/src/hdcom/BillUpload.vue +253 -0
- package/src/hdcom/BtnRight.vue +98 -0
- package/src/hdcom/ErrHint.vue +30 -0
- package/src/hdcom/ExtendColumn.vue +108 -0
- package/src/hdcom/ExtendCommon.js +29 -0
- package/src/hdcom/ExtendForm.vue +114 -0
- package/src/hdcom/FacePicUpload.vue +71 -0
- package/src/hdcom/FaceRecTest.vue +104 -0
- package/src/hdcom/GridChart.vue +194 -0
- package/src/hdcom/GridExField.vue +281 -0
- package/src/hdcom/GridShow.vue +238 -0
- package/src/hdcom/HdAside.vue +178 -0
- package/src/hdcom/HdBtn.vue +113 -0
- package/src/hdcom/HdButton.vue +137 -0
- package/src/hdcom/HdComFaceRec.vue +58 -0
- package/src/hdcom/HdComGrid.vue +776 -0
- package/src/hdcom/HdComQuery.vue +273 -0
- package/src/hdcom/HdComQueryDetail.vue +161 -0
- package/src/hdcom/HdComSortDetail.vue +155 -0
- package/src/hdcom/HdDatePicker.vue +78 -0
- package/src/hdcom/HdDialog.vue +63 -0
- package/src/hdcom/HdDrop.vue +163 -0
- package/src/hdcom/HdFileUpload.vue +148 -0
- package/src/hdcom/HdFilterBox.vue +90 -0
- package/src/hdcom/HdFooter.vue +149 -0
- package/src/hdcom/HdForm.vue +278 -0
- package/src/hdcom/HdFormBtn.vue +89 -0
- package/src/hdcom/HdFormItem.vue +35 -0
- package/src/hdcom/HdGctosGrid +0 -0
- package/src/hdcom/HdGrid.vue +825 -0
- package/src/hdcom/HdGridEditBtn.vue +44 -0
- package/src/hdcom/HdGridExt.js +219 -0
- package/src/hdcom/HdGridSel.vue +223 -0
- package/src/hdcom/HdHeader.vue +148 -0
- package/src/hdcom/HdHotKey.vue +81 -0
- package/src/hdcom/HdInputHint.vue +49 -0
- package/src/hdcom/HdMain.vue +43 -0
- package/src/hdcom/HdMessage.vue +192 -0
- package/src/hdcom/HdNum.vue +69 -0
- package/src/hdcom/HdPopSel.vue +58 -0
- package/src/hdcom/HdRightMenu.vue +61 -0
- package/src/hdcom/HdSel/SelGridFieldcod.vue +36 -0
- package/src/hdcom/HdTableColumn.vue +334 -0
- package/src/hdcom/HdTempSave.vue +140 -0
- package/src/hdcom/HdTree.vue +86 -0
- package/src/hdcom/HdTreeTable/eval.js +34 -0
- package/src/hdcom/HdTreeTable/index.vue +174 -0
- package/src/hdcom/ImportExcel.vue +143 -0
- package/src/hdcom/index.js +80 -0
- package/src/idev.common.js +72 -0
- package/src/index.js +14 -0
- package/src/utils/HdQuery.js +54 -0
- package/src/utils/comutils.js +98 -0
- package/src/utils/utils.js +105 -0
- package/src/vendor/Blob.js +179 -0
- package/src/vendor/Export2Excel.js +220 -0
- package/src/vendor/Export2Zip.js +22 -0
- package/src/views/layout/AppMain.vue +32 -0
- package/src/views/layout/HdLayout.vue +78 -0
- package/src/views/layout/header/ElasticSearch.vue +225 -0
- package/src/views/layout/header/HZRecorder.js +231 -0
- package/src/views/layout/header/HeaderSearch.vue +198 -0
- package/src/views/layout/header/Levelbar.vue +49 -0
- package/src/views/layout/header/MainHeader.vue +271 -0
- package/src/views/layout/header/Navbar.vue +105 -0
- package/src/views/layout/header/ScrollPane.vue +81 -0
- package/src/views/layout/header/TagsView.vue +210 -0
- package/src/views/layout/header/VocRec.vue +97 -0
- package/src/views/layout/header/changepswform.vue +96 -0
- package/src/views/layout/index.js +12 -0
- package/src/views/layout/menu/Hamburger.vue +45 -0
- package/src/views/layout/menu/HdMenu.vue +167 -0
- package/src/views/layout/menu/css/menu.css +288 -0
- package/src/views/layout/menu/index.vue +25 -0
- package/src/views/privilege/commsg/commsg.vue +78 -0
- package/src/views/privilege/commsg/commsgOrgn.vue +42 -0
- package/src/views/privilege/commsg/commsgRole.vue +149 -0
- package/src/views/privilege/commsg/commsgform.vue +160 -0
- package/src/views/privilege/commsg/commsgiframe.vue +33 -0
- package/src/views/privilege/commsg/commsgto.vue +120 -0
- package/src/views/privilege/commsg/commsgtoform.vue +108 -0
- package/src/views/privilege/commsg/commsgtrans.vue +155 -0
- package/src/views/privilege/exfield/comexcolumn.vue +71 -0
- package/src/views/privilege/exfield/comexcolumnform.vue +101 -0
- package/src/views/privilege/exfield/comexfield.vue +31 -0
- package/src/views/privilege/exfield/comexfieldform.vue +94 -0
- package/src/views/privilege/exfield/comexfieldsub.vue +72 -0
- package/src/views/privilege/index.js +42 -0
- package/src/views/privilege/menu/comMenu.vue +41 -0
- package/src/views/privilege/menu/menu.vue +133 -0
- package/src/views/privilege/menu/menuinfo.vue +56 -0
- package/src/views/privilege/menu/rolelist.vue +47 -0
- package/src/views/privilege/menu/userlist.vue +49 -0
- package/src/views/privilege/mobile/authmobileupdate.vue +69 -0
- package/src/views/privilege/mobile/authmobileupdateform.vue +90 -0
- package/src/views/privilege/orgDept/authOrgn.vue +96 -0
- package/src/views/privilege/orgDept/authorgnform.vue +145 -0
- package/src/views/privilege/orgDept/orgDept.vue +37 -0
- package/src/views/privilege/orgDept/orgTree.vue +88 -0
- package/src/views/privilege/orgDept/orgnselect.vue +134 -0
- package/src/views/privilege/personDept/authuser.vue +123 -0
- package/src/views/privilege/personDept/authuserform.vue +154 -0
- package/src/views/privilege/personDept/facerec.vue +117 -0
- package/src/views/privilege/personDept/orgncascader.vue +125 -0
- package/src/views/privilege/personDept/personDept.vue +31 -0
- package/src/views/privilege/quartz/comquartzjob.vue +65 -0
- package/src/views/privilege/quartz/comquartzjobform.vue +99 -0
- package/src/views/privilege/quartz/comquartzlog.vue +59 -0
- package/src/views/privilege/role/btnRole.vue +117 -0
- package/src/views/privilege/role/menuRole.vue +64 -0
- package/src/views/privilege/role/orgnRole.vue +56 -0
- package/src/views/privilege/role/role.vue +67 -0
- package/src/views/privilege/role/rolelist.vue +67 -0
- package/src/views/privilege/role/roleselect.vue +57 -0
- package/src/views/privilege/search/comsearch.vue +105 -0
- package/src/views/privilege/search/menu.vue +52 -0
- package/src/views/privilege/syscode/syscode.vue +103 -0
- package/src/views/privilege/syscode/sysfield.vue +66 -0
- package/src/views/privilege/syscode/sysfieldframe.vue +30 -0
- package/src/views/privilege/syslog/menulog.vue +52 -0
- package/src/views/privilege/syslog/syslog.vue +115 -0
- package/src/views/privilege/syslog/syslogconfig.vue +61 -0
- package/src/views/privilege/syslog/syslogform.vue +83 -0
- package/src/views/privilege/syslog/syslogframe.vue +26 -0
- package/src/views/privilege/userRole/userRole.vue +122 -0
- package/src/views/privilege.zip +0 -0
- package/vite.config.js +93 -0
- package/.babelrc +0 -17
- package/.editorconfig +0 -14
- package/.eslintignore +0 -3
- package/.npminstall.done +0 -1
- package/.postcssrc.js +0 -8
- package/LICENSE +0 -21
- package/Listening +0 -28
- package/build/build.js +0 -70
- package/build/check-versions.js +0 -45
- package/build/config.js +0 -81
- package/build/dev-client.js +0 -9
- package/build/dev-server.js +0 -93
- package/build/utils.js +0 -78
- package/build/vue-loader.conf.js +0 -12
- package/build/webpack.common.js +0 -37
- package/build/webpack.component.js +0 -36
- package/build/webpack.prod.conf.js +0 -38
- package/components.json +0 -8
- package/conf.js +0 -42
- package/config/dev.env.js +0 -6
- package/config/index.js +0 -43
- package/config/prod.env.js +0 -6
- package/config/sit.env.js +0 -6
- package/favicon.ico +0 -0
- package/jsdoc-vue.js +0 -12
- package/lib/0.index.js +0 -12573
- package/lib/1.index.js +0 -6
- package/lib/2.index.js +0 -2
- package/lib/idev.common.js +0 -1
- package/lib/idv8.common.js +0 -1
- package/lib/index.js +0 -49170
- package/lib/js/ErrHint.js +0 -1
- package/lib/js/HdAside.js +0 -1
- package/lib/js/HdBtn.js +0 -1
- package/lib/js/HdButton.js +0 -1
- package/lib/js/HdComFaceRec.js +0 -1
- package/lib/js/HdComGrid.js +0 -1
- package/lib/js/HdDatePicker.js +0 -1
- package/lib/js/HdDialog.js +0 -1
- package/lib/js/HdDrop.js +0 -1
- package/lib/js/HdFileUpload.js +0 -1
- package/lib/js/HdFooter.js +0 -1
- package/lib/js/HdForm.js +0 -1
- package/lib/js/HdFormBtn.js +0 -1
- package/lib/js/HdFormItem.js +0 -1
- package/lib/js/HdGrid.js +0 -1
- package/lib/js/HdGridEditBtn.js +0 -1
- package/lib/js/HdGridSel.js +0 -1
- package/lib/js/HdHeader.js +0 -1
- package/lib/js/HdHotkey.js +0 -1
- package/lib/js/HdLayout.js +0 -1
- package/lib/js/HdMain.js +0 -1
- package/lib/js/HdMessage.js +0 -1
- package/lib/js/HdNum.js +0 -1
- package/lib/js/HdPopSel.js +0 -1
- package/lib/js/HdSearch.js +0 -1
- package/lib/js/HdTableColumn.js +0 -1
- package/lib/js/HdTempSave.js +0 -1
- package/lib/js/HdTree.js +0 -1
- package/lib/js/HdTreeTable.js +0 -1
- package/lib/js/authmobileupdate.js +0 -1
- package/lib/js/comexfield.js +0 -1
- package/lib/js/commsg.js +0 -1
- package/lib/js/commsgto.js +0 -1
- package/lib/js/comquartzjob.js +0 -1
- package/lib/js/comquartzlog.js +0 -1
- package/lib/js/comsearch.js +0 -1
- package/lib/js/menu.js +0 -1
- package/lib/js/menuinfo.js +0 -1
- package/lib/js/orgDept.js +0 -1
- package/lib/js/orgTree.js +0 -1
- package/lib/js/personDept.js +0 -1
- package/lib/js/role.js +0 -1
- package/lib/js/sysfieldframe.js +0 -1
- package/lib/js/syslog.js +0 -1
- package/lib/js/syslogframe.js +0 -1
- package/lib/js/userRole.js +0 -1
- package/ytgvue.rar +0 -0
package/.env.development
ADDED
package/.env.production
ADDED
package/README.md
CHANGED
|
@@ -1,204 +1,35 @@
|
|
|
1
|
-
|
|
1
|
+
# vite-project
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
This template should help get you started developing with Vue 3 in Vite.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## Recommended IDE Setup
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
|
|
8
8
|
|
|
9
|
-
##
|
|
9
|
+
## Customize configuration
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
See [Vite Configuration Reference](https://vitejs.dev/config/).
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
## Project Setup
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
```sh
|
|
16
|
+
pnpm install
|
|
17
|
+
```
|
|
17
18
|
|
|
18
|
-
-
|
|
19
|
+
### Compile and Hot-Reload for Development
|
|
19
20
|
|
|
20
|
-
|
|
21
|
+
```sh
|
|
22
|
+
pnpm dev
|
|
23
|
+
```
|
|
21
24
|
|
|
22
|
-
|
|
25
|
+
### Compile and Minify for Production
|
|
23
26
|
|
|
24
|
-
|
|
27
|
+
```sh
|
|
28
|
+
pnpm build
|
|
29
|
+
```
|
|
25
30
|
|
|
26
|
-
|
|
27
|
-
示例代码如下
|
|
28
|
-
<el-button class="filter-item" @click="billUpload" type="primary">单证上传
|
|
29
|
-
</el-button>
|
|
30
|
-
<el-button class="filter-item" @click="billShow" type="primary">单证查看
|
|
31
|
-
</el-button>
|
|
32
|
-
|
|
33
|
-
<bill-upload ref="billUpload"></bill-upload>
|
|
34
|
-
<bill-show ref="billShow"></bill-show>
|
|
35
|
-
|
|
36
|
-
billUpload() {
|
|
37
|
-
this.$refs.billUpload.show(this.billTyp, this.billId);
|
|
38
|
-
},
|
|
39
|
-
billShow() {
|
|
40
|
-
this.$refs.billShow.show(this.billTyp, this.billId);
|
|
41
|
-
}
|
|
42
|
-
1.0.5 修复hd-grid事件不能传到el-table bug
|
|
31
|
+
### Lint with [ESLint](https://eslint.org/)
|
|
43
32
|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
复制,取消选择。
|
|
49
|
-
|
|
50
|
-
复制删除bug
|
|
51
|
-
|
|
52
|
-
1.0.8 按钮支持自定义样式 custome-class="class"
|
|
53
|
-
|
|
54
|
-
上传组件样式修改
|
|
55
|
-
|
|
56
|
-
增加HdFilterBox组件,封装查询样式
|
|
57
|
-
|
|
58
|
-
按钮展现分成3部分示例用法如下:
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
<div class="filter-container" slot="query">
|
|
62
|
-
<hd-filter-box>
|
|
63
|
-
<template>
|
|
64
|
-
<el-input @keyup.enter.native="$refs.grid.doQuery()" style="width: 200px;" class="filter-item"
|
|
65
|
-
placeholder="名称"
|
|
66
|
-
v-model="hdQuery.query.anyQuery">
|
|
67
|
-
</el-input>
|
|
68
|
-
</template>
|
|
69
|
-
<template slot="searchBtn">
|
|
70
|
-
<el-button class="filter-item bn-del" @click="$refs.grid.doQuery()" icon="search" type="primary" ref="q"
|
|
71
|
-
keyType="query">搜索
|
|
72
|
-
</el-button>
|
|
73
|
-
</template>
|
|
74
|
-
<template slot="otherBtn">
|
|
75
|
-
<el-button class="filter-item" @click="$refs.grid.doRemoveAll()" type="danger" keyType="del">删除
|
|
76
|
-
</el-button>
|
|
77
|
-
</template>
|
|
78
|
-
</hd-filter-box>
|
|
79
|
-
</div>
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
1.8.6 优化hd-filter-box,查询宽度智能变化,下拉按钮自动隐藏
|
|
83
|
-
|
|
84
|
-
1.9.0 el-table-column 支持展示html 添加参数is-html
|
|
85
|
-
|
|
86
|
-
1.10.1 el-table-column 宽度自动撑开
|
|
87
|
-
|
|
88
|
-
1.10.2 修复按钮隐藏导致分页不显示bug
|
|
89
|
-
|
|
90
|
-
1.10.3 下拉统一去掉双击编辑和底部按钮
|
|
91
|
-
1.12.1 sortable="xxx" 安照xxx进行排序,排序不走后台
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
<el-table-column width="120px" align="left" label="船名" prop="shipNam" sortable="shipNam">
|
|
95
|
-
</el-table-column>
|
|
96
|
-
<el-table-column width="100px" align="left" label="MMSI号" prop="sdataId"
|
|
97
|
-
:inputFormat="(result, row)=>row.mmsi" sortable="mmsi">
|
|
98
|
-
</el-table-column>
|
|
99
|
-
|
|
100
|
-
1.12.2 单证上传必选billTyp,参数billTyp变成默认值可不填
|
|
101
|
-
|
|
102
|
-
1.13.0 hdcomgrid @row-dblclick 可以直接自定义双击方法
|
|
103
|
-
|
|
104
|
-
1.14.0 修复hdform上一页 上一条 下一页 下一条
|
|
105
|
-
|
|
106
|
-
1.14.2 hd-form 未绑定grid报错bug修改
|
|
107
|
-
|
|
108
|
-
1.14.3 hd-com-grid 统一关闭复制按钮
|
|
109
|
-
|
|
110
|
-
1.14.5 支持自定义底部按钮
|
|
111
|
-
|
|
112
|
-
<template slot="btnTool">
|
|
113
|
-
<hd-btn icon="el-icon-plus" hint="增加" @click="$refs.grid.doEdit('')" class="hdBtnTool"
|
|
114
|
-
keyType="add">
|
|
115
|
-
</hd-btn>
|
|
116
|
-
<hd-btn icon="el-icon-minus" hint="删除" @click="$refs.grid.doRemove()" class="hdBtnTool"
|
|
117
|
-
keyType="del">
|
|
118
|
-
</hd-btn>
|
|
119
|
-
<hd-btn icon="el-icon-check" hint="保存" @click="$refs.grid.doSave()" class="hdBtnTool"
|
|
120
|
-
keyType="save">
|
|
121
|
-
</hd-btn>
|
|
122
|
-
</template>
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
addWay addHide delHide 等后期可能会移除
|
|
126
|
-
|
|
127
|
-
新增了hd-form自定义处理表单展现方法
|
|
128
|
-
|
|
129
|
-
<hd-form :customeChooseUpdateFn="customeChooseUpdateFn">
|
|
130
|
-
customeChooseUpdateFn(row) {
|
|
131
|
-
this.hdform = Object.assign({}, row, {'tempOrgnId': row.orgnId, '_oldRow': row});
|
|
132
|
-
},
|
|
133
|
-
|
|
134
|
-
hd-form添加数据默认添加到grid的的第一条
|
|
135
|
-
|
|
136
|
-
1.15.1 修复文件上传组件
|
|
137
|
-
|
|
138
|
-
1.15.3 新增滚动到最上面
|
|
139
|
-
|
|
140
|
-
没掉框架doEdit方法的用`this.$refs.grid.$refs.hdgrid.$refs.ingrid.$refs.bodyWrapper.scrollTop = 0`实现
|
|
141
|
-
|
|
142
|
-
1.15.4 表格中0默认不显示
|
|
143
|
-
|
|
144
|
-
`<el-table-column>` 里面添加属性 `noZeroHide` 来取消0不显示
|
|
145
|
-
1.15.10 高级查询可隐藏
|
|
146
|
-
noAdQuery
|
|
147
|
-
|
|
148
|
-
1.16.1 单证图片懒加载
|
|
149
|
-
1.16.2 调小pdf距离
|
|
150
|
-
|
|
151
|
-
1.16.4 自定义表头
|
|
152
|
-
1.16.7 选行
|
|
153
|
-
|
|
154
|
-
1.16.10 修复冻结列属性重复导致加载卡死问题
|
|
155
|
-
|
|
156
|
-
1.16.11 修复下拉分页快捷键不能用bug
|
|
157
|
-
|
|
158
|
-
1.17.1 时间组件封装,输入方式优化
|
|
159
|
-
|
|
160
|
-
1.17.2 去掉高级查询,时间组件恢复
|
|
161
|
-
|
|
162
|
-
1.17.3 修改提示时间5秒
|
|
163
|
-
|
|
164
|
-
1.17.4 导入excel新增回调方法
|
|
165
|
-
|
|
166
|
-
1.17.4 高级查询新增下拉
|
|
167
|
-
|
|
168
|
-
1.18.1 增加右击菜单
|
|
169
|
-
hd-com-grid 添加 right-menu-open 放开
|
|
170
|
-
<template slot="rightMenu">
|
|
171
|
-
自定义右击菜单内容
|
|
172
|
-
</template>
|
|
173
|
-
<template slot="rightMenuExt">
|
|
174
|
-
自定义扩展右击菜单内容(保留默认的增删改方法)
|
|
175
|
-
</template>
|
|
176
|
-
|
|
177
|
-
1.18.2 增加方法选到此行
|
|
178
|
-
this.$refs.grid.selectPart()
|
|
179
|
-
|
|
180
|
-
1.18.3 修复pdf打印弹窗不消失bug
|
|
181
|
-
|
|
182
|
-
1.18.5 新增方法取消选中到此行
|
|
183
|
-
this.$refs.grid.unSelectPart(e)
|
|
184
|
-
|
|
185
|
-
1.18.8 修复高级查询不能用
|
|
186
|
-
|
|
187
|
-
1.18.9 修复常用代码重复报错
|
|
188
|
-
|
|
189
|
-
1.19.1 去掉对多表头自定义列的编辑。
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
1.19.2 分页增加500条
|
|
193
|
-
|
|
194
|
-
1.19.3 修复批量增加撤销出现问题bug
|
|
195
|
-
|
|
196
|
-
1.19.4 pdf打印宽度可以自己调整
|
|
197
|
-
|
|
198
|
-
1.19.5 记录历史宽度调整记录
|
|
199
|
-
|
|
200
|
-
1.20.1 shift多选行
|
|
201
|
-
|
|
202
|
-
1.20.2 修复查询所有导致系统崩溃bug
|
|
203
|
-
无分页最多展现2000条数据不是所有
|
|
204
|
-
导出全部excel最多导出2000条数据不是所有
|
|
33
|
+
```sh
|
|
34
|
+
pnpm lint
|
|
35
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@charset "UTF-8";.sortable-ghost{opacity:.8;color:#fff!important;background:#42b983!important}.gridShow{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.gridShow .el-table{height:100%;width:100%;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.gridShow .el-table .el-table__body-wrapper{width:100%;padding-bottom:30px}.gridShow .el-table .el-table__header-wrapper th{background-color:#f6f6f6}.gridShow .el-table .el-table__fixed-header-wrapper th{background-color:#8cbda4}.gridShow .el-table td,.gridShow .el-table th{padding:2px 0}.gridShow .el-table .cell,.gridShow .el-table .el-table th div,.gridShow .el-table .el-table--border th:first-child .cell,.gridShow .el-table .el-table--border td:first-child .cell{padding-left:2px!important;padding-right:2px!important}.icon-star[data-v-c2929053]{margin-right:2px}.drag-handler[data-v-c2929053]{width:20px;height:20px;cursor:pointer}.show-d[data-v-c2929053]{margin-top:15px}.hdBtn{cursor:pointer}.hdgrid[data-v-317d9a96]{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.hdgrid[data-v-317d9a96] .el-table{height:100%;width:100%;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.hdgrid[data-v-317d9a96] .el-table th.gutter{display:table-cell!important}.hdgrid[data-v-317d9a96] .el-table .el-table__header-wrapper th,.hdgrid[data-v-317d9a96] .el-table .el-table__fixed-header-wrapper th{background-color:#f6f6f6}.hdgrid[data-v-317d9a96] .el-table td,.hdgrid[data-v-317d9a96] .el-table th{padding:1px 0}.hdgrid[data-v-317d9a96] .el-table .cell,.hdgrid[data-v-317d9a96] .el-table .el-table th div,.hdgrid[data-v-317d9a96] .el-table .el-table--border th:first-child .cell,.hdgrid[data-v-317d9a96] .el-table .el-table--border td:first-child .cell{padding:1.5px 0 1.5px 4px!important}.hdgrid[data-v-317d9a96] .el-table .el-table__empty-block{position:static;text-align:center;width:100%;height:80%}.hdgrid[data-v-317d9a96] .el-table .el-table__body{margin-bottom:10px}.hdgrid[data-v-317d9a96] .el-table .el-table__body-wrapper{height:100%;overflow:auto}.hdgrid[data-v-317d9a96] .el-table .el-input__inner{height:27px;margin-bottom:0;line-height:27px}.hdgrid[data-v-317d9a96] .el-table .el-input,.hdgrid[data-v-317d9a96] .el-table .el-form-item__content,.hdgrid[data-v-317d9a96] .el-table .el-form-item__label,.hdgrid[data-v-317d9a96] .el-table .el-input__icon{line-height:30px}.hdgrid[data-v-317d9a96] .el-table .el-input__inner{padding:5px}.hdgrid[data-v-317d9a96] .el-table .el-input--prefix .el-input__inner{padding-left:30px}.hdgrid[data-v-317d9a96] .el-table .cell{min-width:20px}.hdgrid[data-v-317d9a96] .el-table .checkBox .cell{overflow:inherit}.hdgrid[data-v-317d9a96] .el-table .checkBox .cell .el-checkbox,.hdgrid[data-v-317d9a96] .el-table .checkBox .cell .el-checkbox__input{position:inherit}.hdBtnTool[data-v-317d9a96]{font-weight:700;vertical-align:middle;margin-left:20px}@keyframes treeTableShow{0%{opacity:0}to{opacity:1}}@-webkit-keyframes treeTableShow{0%{opacity:0}to{opacity:1}}.ms-tree-space[data-v-5c6ebc10]{position:relative;top:1px;display:inline-block;font-style:normal;font-weight:400;line-height:1;width:8px;height:14px}.ms-tree-space[data-v-5c6ebc10]:before{content:""}.processContainer[data-v-5c6ebc10]{width:100%;height:100%}table td[data-v-5c6ebc10]{line-height:26px}.tree-ctrl[data-v-5c6ebc10]{position:relative;cursor:pointer;color:#2196f3;margin-left:-8px}.el-table[data-v-5c6ebc10]{height:100%;width:100%;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.el-table .el-table__body-wrapper[data-v-5c6ebc10]{width:100%}.el-table .el-table__header-wrapper th[data-v-5c6ebc10],.el-table .el-table__fixed-header-wrapper th[data-v-5c6ebc10]{background-color:#f6f6f6}.el-table td[data-v-5c6ebc10],.el-table th[data-v-5c6ebc10]{padding:1px 0}.el-table .cell[data-v-5c6ebc10],.el-table .el-table th div[data-v-5c6ebc10],.el-table .el-table--border th:first-child .cell[data-v-5c6ebc10],.el-table .el-table--border td:first-child .cell[data-v-5c6ebc10]{padding:1.5px 1px 1.5px 5px!important}.el-table .el-table__empty-block[data-v-5c6ebc10]{position:static;text-align:center;width:100%;height:80%}.el-table .el-table__body[data-v-5c6ebc10]{margin-bottom:10px}.el-table .el-table__body-wrapper[data-v-5c6ebc10]{height:100%;overflow-y:auto}.el-table .el-input__inner[data-v-5c6ebc10]{height:27px;margin-bottom:0}.el-table .el-input[data-v-5c6ebc10],.el-table .el-form-item__content[data-v-5c6ebc10],.el-table .el-form-item__label[data-v-5c6ebc10],.el-table .el-input__icon[data-v-5c6ebc10]{line-height:30px}.el-table .el-input__inner[data-v-5c6ebc10]{padding:5px}.el-table .el-input--prefix .el-input__inner[data-v-5c6ebc10]{padding-left:30px}.wrapperChg{position:static!important;z-index:1}.dialogChg{position:absolute!important;z-index:1001;left:0;right:0}.hdAside[data-v-af453015]{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.asideDrag[data-v-af453015]{width:5px;height:100%;overflow:hidden;cursor:ew-resize;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.moveline[data-v-af453015]{width:5px;height:100%;overflow:hidden;position:fixed;cursor:ew-resize;background-color:red;z-index:9999;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.dragShowCls[data-v-af453015]{background-color:#409eff}.hdFooter[data-v-9d91135b]{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.asideDrag[data-v-9d91135b]{width:100%;height:5px;overflow:hidden;cursor:ns-resize;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.moveline[data-v-9d91135b]{width:100%;height:5px;overflow:hidden;position:fixed;cursor:ns-resize;background-color:red;z-index:9999;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.dragShowCls[data-v-9d91135b]{background-color:#409eff}.hdHeader{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.asideDrag{width:100%;height:5px;overflow:hidden;cursor:ns-resize;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.moveline{width:100%;height:5px;overflow:hidden;position:fixed;cursor:ns-resize;background-color:red;z-index:9999;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.dragShowCls{background-color:#409eff}.hdMain{display:-webkit-box!important;display:-webkit-flex!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.gridShow .el-table{height:100%;width:100%}.gridShow .el-table .el-table__body-wrapper{width:100%}.gridShow .el-table .el-table__header-wrapper th,.gridShow .el-table .el-table__fixed-header-wrapper th{background-color:#f6f6f6}.gridShow .el-table td,.gridShow .el-table th{padding:1px 0}.gridShow .el-table .cell,.gridShow .el-table .el-table th div,.gridShow .el-table .el-table--border th:first-child .cell,.gridShow .el-table .el-table--border td:first-child .cell{padding:1.5px 1px 1.5px 5px!important}.gridShow .el-table .el-table__empty-block{position:static;text-align:center;width:100%;height:80%}.gridShow .el-table .el-table__body{margin-bottom:10px}.gridShow .el-table .el-table__body-wrapper{height:100%;overflow-y:auto}.gridShow .el-table .el-input__inner{height:27px;margin-bottom:0}.gridShow .el-table .el-input,.gridShow .el-table .el-form-item__content,.gridShow .el-table .el-form-item__label,.gridShow .el-table .el-input__icon{line-height:30px}.gridShow .el-table .el-input__inner{padding:5px}.gridShow .el-table .el-input--prefix .el-input__inner{padding-left:30px}.gridShow .el-tag+.el-tag{margin-left:10px}.gridShow .button-new-tag{margin-left:10px;height:32px;line-height:30px;padding-top:0;padding-bottom:0}.gridShow .input-new-tag{width:90px;margin-left:10px;vertical-align:bottom}#excel-upload-input[data-v-c85ea50f]{display:none;z-index:-9999}.excelSel[data-v-c85ea50f]{border:2px dashed #bbb;width:600px;height:160px;line-height:80px;margin:0 auto;font-size:24px;border-radius:5px;text-align:center;color:#bbb;position:relative}[data-v-bcad743d] .gray-row{background:#DCDCDC}.lucencyInput .el-input__inner{border:0px}.el-popper{z-index:3000!important}.lucencyInput .el-input__inner[data-v-424ceb2f]{border:0px}.el-cascader[data-v-424ceb2f]{width:100%}.el-dialog[data-v-de1b84aa]{height:100%}.scroll-container[data-v-cb872a90]{white-space:nowrap;position:relative;overflow:hidden}.scroll-container .scroll-wrapper[data-v-cb872a90]{position:absolute}.tags-view-container .tags-view-item[data-v-417ea5ff]{display:inline-block;position:relative;height:26px;line-height:26px;border:1px solid #d8dce5;color:#495060;background:#fff;padding:0 8px;font-size:12px;margin-left:5px;margin-top:4px}.tags-view-container .tags-view-item[data-v-417ea5ff]:first-of-type{margin-left:15px}.tags-view-container .tags-view-item.active[data-v-417ea5ff]{background-color:#409eff;color:#fff;border-color:#409eff}.tags-view-container .tags-view-item.active[data-v-417ea5ff]:before{content:"";background:#fff;display:inline-block;width:8px;height:8px;border-radius:50%;position:relative;margin-right:2px}.tags-view-container .tags-view-item .el-icon-close[data-v-417ea5ff]{width:16px;height:16px;vertical-align:2px;border-radius:50%;text-align:center;-webkit-transition:all .3s cubic-bezier(.645,.045,.355,1);transition:all .3s cubic-bezier(.645,.045,.355,1);-webkit-transform-origin:100% 50%;-ms-transform-origin:100% 50%;transform-origin:100% 50%}.tags-view-container .tags-view-item .el-icon-close[data-v-417ea5ff]:before{-webkit-transform:scale(.6);-ms-transform:scale(.6);transform:scale(.6);display:inline-block;vertical-align:-3px}.tags-view-container .tags-view-item .el-icon-close[data-v-417ea5ff]:hover{background-color:#b4bccc;color:#fff}.navbar[data-v-fc375a93]{height:30px;line-height:40px;border-radius:0!important}.navbar .hamburger-container[data-v-fc375a93]{float:left;padding:0 10px}.navbar .breadcrumb-container[data-v-fc375a93]{float:left}.navbar .errLog-container[data-v-fc375a93]{display:inline-block;vertical-align:top}.navbar .right-menu[data-v-fc375a93]{float:right;height:100%}.navbar .right-menu[data-v-fc375a93]:focus{outline:none}.navbar .right-menu .right-menu-item[data-v-fc375a93]{display:inline-block;margin:0 8px}.navbar .right-menu .screenfull[data-v-fc375a93]{vertical-align:middle;height:40px}.navbar .right-menu .international[data-v-fc375a93]{vertical-align:top}.navbar .right-menu .international .international-icon[data-v-fc375a93]{font-size:20px;cursor:pointer;vertical-align:-5px}.navbar .right-menu .theme-switch[data-v-fc375a93]{vertical-align:15px}.navbar .right-menu .avatar-container[data-v-fc375a93]{height:40px;margin-right:30px}.navbar .right-menu .avatar-container .avatar-wrapper[data-v-fc375a93]{cursor:pointer;margin-top:5px;position:relative}.navbar .right-menu .avatar-container .avatar-wrapper .user-avatar[data-v-fc375a93]{width:30px;height:30px;border-radius:10px}.navbar .right-menu .avatar-container .avatar-wrapper .el-icon-caret-bottom[data-v-fc375a93]{position:absolute;right:-20px;top:25px;font-size:12px}.header-search[data-v-12696c8d]{font-size:0!important}.header-search .search-icon[data-v-12696c8d]{font-size:18px;vertical-align:middle;display:inline-block;cursor:pointer;fill:#e4e9ef}.header-search .header-search-select[data-v-12696c8d]{font-size:18px;-webkit-transition:width .2s;transition:width .2s;width:0;overflow:hidden;background:transparent;border-radius:0;display:inline-block;vertical-align:middle}.header-search .header-search-select[data-v-12696c8d] .el-input__inner{border-radius:0;border:0;padding-left:0;padding-right:0;box-shadow:none!important;border-bottom:1px solid #d9d9d9;vertical-align:middle}.header-search.show .header-search-select[data-v-12696c8d]{width:150px;margin-left:10px}.right-menu-item[data-v-47ff456d]{display:inline-block;margin:0 8px}.item[data-v-47ff456d]{position:absolute;z-index:2000;margin-left:-10px}.el-icon-caret-bottom[data-v-47ff456d]:before{content:""!important}.app-main{height:100%;overflow:auto}.hamburger[data-v-ab738f2a]{display:inline-block;cursor:pointer;width:20px;height:20px;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);-webkit-transition:.38s;transition:.38s;-webkit-transform-origin:30% 50%;-ms-transform-origin:30% 50%;transform-origin:30% 50%}.hamburger.is-active[data-v-ab738f2a]{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0)}ul[data-v-7c9294c8],ol[data-v-7c9294c8]{list-style:none}.clearfix[data-v-7c9294c8]:after{clear:both;content:".";display:block;height:0;visibility:hidden}.clearfix[data-v-7c9294c8]{display:inline-table}html .clearfix[data-v-7c9294c8]{height:1%}.clearfix[data-v-7c9294c8]{display:block}.ma[data-v-7c9294c8]{margin-left:auto;margin-right:auto}.w980[data-v-7c9294c8]{width:980px}.mt10[data-v-7c9294c8]{margin-top:10px}.product_sortBg[data-v-7c9294c8]{background-color:#ededed}.menuSvg[data-v-7c9294c8]{height:30px;background-color:#ededed;border-bottom:solid 1px #bbb;text-align:center;color:#f0f0f0;padding-top:5px}.hamburger[data-v-4e6f274c][data-v-7c9294c8]{width:16px!important;height:16px!important;fill:#bbb}.product_sort[data-v-7c9294c8]{height:calc(100vh - 80px);position:relative;z-index:999}.product_sort .hd[data-v-7c9294c8]{line-height:40px;text-indent:20px;font-size:15px;font-weight:700;color:#fff}.product_sort .bd[data-v-7c9294c8]{padding-bottom:10px}.product_sort .bd .item[data-v-7c9294c8]{border-bottom:solid 1px #bbb;height:50px;position:relative}.product_sort .bd .item .title[data-v-7c9294c8]{text-indent:13px;height:50px;overflow:hidden;line-height:50px;font-size:15px;font-weight:700}.product_sort .bd .item .title a[data-v-7c9294c8]{position:relative}.product_sort .bd .item .title .fa[data-v-7c9294c8]{font-size:16px;margin-right:5px;width:20px!important;height:20px!important;display:block!important;float:left;margin-top:15px}.product_sortSelected[data-v-7c9294c8]{background-color:#409eff}.product_sortUnselected[data-v-7c9294c8]{background-color:#666}.product_sortTwo[data-v-7c9294c8]{width:820px;min-height:30px;max-height:400px;overflow-y:auto;position:absolute;left:142px;padding-top:10px;padding-bottom:5px;border:1px solid #b6b6b6;color:#494949;background:#FFF}.product_sortTwoDiv[data-v-7c9294c8]{width:770px;float:left;margin-left:25px;margin-bottom:5px;padding-bottom:0}.product_sortTwoBottomLine[data-v-7c9294c8]{border:0px;padding-bottom:0}.product_sortSpan[data-v-7c9294c8]{color:#0555a6;font-weight:700;display:block;float:left;width:100%;height:30px;line-height:30px;margin-right:10px;border-bottom:1px solid #ccc}.product_sortSpan a[data-v-7c9294c8]{display:inline-block}.product_sortTwoMenu[data-v-7c9294c8]{width:100%;float:left;margin-top:5px}.product_sortTwoMenu>a[data-v-7c9294c8]{min-width:50px;width:auto!important;height:30px;line-height:30px;float:left;color:#646464;display:block;margin-right:10px}.product_sortTwoMenu a[data-v-7c9294c8]:hover{color:#888}.product_sortTwo678[data-v-7c9294c8],.product_sortTwo9[data-v-7c9294c8]{width:850px;min-height:30px;height:auto!important;position:absolute;left:142px;padding-top:10px;padding-bottom:10px;border:1px solid #b6b6b6;color:#494949;background:#FFF;bottom:0px}.product_sort .bd .item .list[data-v-7c9294c8]{padding-left:5px;height:30px;line-height:30px;overflow:hidden}.product_sort .bd .item .list a[data-v-7c9294c8]{color:#333}.product_sort .bd .item .list a[data-v-7c9294c8]:hover{text-decoration:underline}.product_sort .bd .item .arrow[data-v-7c9294c8]{font-size:12px;color:#333;position:absolute;right:10px;top:18px}.product_sort .bd .menuvisit .arrow[data-v-7c9294c8]{font-size:12px;color:#fff;position:absolute;right:10px;top:18px}.product_sort .bd .item .line[data-v-7c9294c8]{position:absolute;right:-2px;top:0px;width:2px;height:55px;background-color:#fff;z-index:999;display:none}.product_sort .bd .item .subitem[data-v-7c9294c8]{display:none}.product_sort .bd .layer .line[data-v-7c9294c8],.product_sort .bd .layer .arrow[data-v-7c9294c8]{display:block}.product_sort .bd .layer .subitem[data-v-7c9294c8]{width:731px;background:#fff;border:solid 1px #dbd4d5;border-left:none;position:absolute;top:-1px;z-index:999;min-height:55px;height:auto!important;height:55px;padding:10px 20px;display:block}.product_sort[data-v-7c9294c8] .el-scrollbar__wrap{overflow-x:hidden}.product_sort[data-v-7c9294c8] .is-horizontal{height:0}.hd-layout[data-v-8c317a60]{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.hd-layout .hd-header[data-v-8c317a60]{height:52px;width:100%}.hd-layout .hd-content[data-v-8c317a60]{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.hd-layout .hd-content .hd-menu[data-v-8c317a60]{width:50px}.hd-layout .hd-content .hd-main[data-v-8c317a60]{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.header-search[data-v-15373f87]{font-size:0!important}.header-search .search-icon[data-v-15373f87]{font-size:18px;vertical-align:middle;display:inline-block;cursor:pointer;fill:#e4e9ef}.header-search .header-search-select[data-v-15373f87]{font-size:18px;-webkit-transition:width .2s;transition:width .2s;width:0;overflow:hidden;background:transparent;border-radius:0;display:inline-block;vertical-align:middle}.header-search .header-search-select[data-v-15373f87] .el-input__inner{border-radius:0;border:0;padding-left:0;padding-right:0;box-shadow:none!important;border-bottom:1px solid #d9d9d9;vertical-align:middle}.header-search.show .header-search-select[data-v-15373f87]{width:150px;margin-left:10px}
|