hd-idevvue3 3.0.2 → 3.0.4

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.
Files changed (147) hide show
  1. package/dist/assets/index.9c127719.css +1 -0
  2. package/dist/hd-idevvue3.mjs +3521 -3305
  3. package/dist/hd-idevvue3.umd.js +29 -29
  4. package/npminstall-debug.log +2 -10
  5. package/package.json +4 -2
  6. package/pnpm-lock.yaml +37 -4
  7. package/src/App.vue +11 -15
  8. package/src/assets/sound/notify.wav +0 -0
  9. package/src/demo/demo.vue +9 -10
  10. package/src/demo/dropdemo.vue +42 -43
  11. package/src/demo/extsets.vue +140 -39
  12. package/src/demo/formedit.vue +157 -145
  13. package/src/demo/hightquery.vue +263 -66
  14. package/src/demo/inlineedit.vue +129 -35
  15. package/src/demo/selfdrop.vue +32 -15
  16. package/src/directive/el-dragDialog/drag.js +13 -13
  17. package/src/directive/el-dragDialog/index.js +13 -13
  18. package/src/errorLog.js +3 -3
  19. package/src/hdcom/BigGrid.js +54 -48
  20. package/src/hdcom/BillShow.vue +84 -63
  21. package/src/hdcom/BillUpload.vue +144 -86
  22. package/src/hdcom/BtnRight.vue +26 -23
  23. package/src/hdcom/ErrHint.vue +36 -24
  24. package/src/hdcom/ExtendColumn.vue +97 -90
  25. package/src/hdcom/ExtendCommon.js +24 -13
  26. package/src/hdcom/ExtendForm.vue +107 -80
  27. package/src/hdcom/FacePicUpload.vue +59 -50
  28. package/src/hdcom/FaceRecTest.vue +87 -77
  29. package/src/hdcom/GridChart.vue +175 -162
  30. package/src/hdcom/GridExField.vue +328 -234
  31. package/src/hdcom/GridShow.vue +89 -39
  32. package/src/hdcom/HdAside.vue +192 -145
  33. package/src/hdcom/HdBtn.vue +44 -32
  34. package/src/hdcom/HdButton.vue +141 -117
  35. package/src/hdcom/HdComFaceRec.vue +80 -32
  36. package/src/hdcom/HdComGrid.vue +329 -229
  37. package/src/hdcom/HdComQuery.vue +179 -90
  38. package/src/hdcom/HdComQueryDetail.vue +159 -115
  39. package/src/hdcom/HdComSortDetail.vue +136 -130
  40. package/src/hdcom/HdDatePicker.vue +32 -16
  41. package/src/hdcom/HdDialog.vue +62 -44
  42. package/src/hdcom/HdDrop.vue +163 -138
  43. package/src/hdcom/HdFileUpload.vue +138 -119
  44. package/src/hdcom/HdFilterBox.vue +62 -62
  45. package/src/hdcom/HdFooter.vue +152 -119
  46. package/src/hdcom/HdForm.vue +276 -203
  47. package/src/hdcom/HdFormBtn.vue +81 -39
  48. package/src/hdcom/HdFormItem.vue +14 -10
  49. package/src/hdcom/HdGrid.vue +353 -156
  50. package/src/hdcom/HdGridEditBtn.vue +34 -20
  51. package/src/hdcom/HdGridExt.js +78 -47
  52. package/src/hdcom/HdGridSel.vue +227 -193
  53. package/src/hdcom/HdHeader.vue +149 -117
  54. package/src/hdcom/HdHotKey.vue +70 -67
  55. package/src/hdcom/HdInputHint.vue +40 -36
  56. package/src/hdcom/HdMain.vue +25 -27
  57. package/src/hdcom/HdMessage.vue +180 -171
  58. package/src/hdcom/HdNum.vue +67 -57
  59. package/src/hdcom/HdPopSel.vue +46 -24
  60. package/src/hdcom/HdRightMenu.vue +63 -61
  61. package/src/hdcom/HdSel/SelGridFieldcod.vue +46 -28
  62. package/src/hdcom/HdTableColumn.vue +156 -109
  63. package/src/hdcom/HdTempSave.vue +138 -116
  64. package/src/hdcom/HdTree.vue +89 -72
  65. package/src/hdcom/HdTreeTable/eval.js +8 -3
  66. package/src/hdcom/HdTreeTable/index.vue +229 -174
  67. package/src/hdcom/ImportExcel.vue +69 -34
  68. package/src/hdcom/index.js +39 -44
  69. package/src/idev.common.js +54 -47
  70. package/src/index.js +3 -6
  71. package/src/utils/HdQuery.js +25 -14
  72. package/src/utils/comutils.js +50 -28
  73. package/src/utils/gogocodeTransfer.js +59 -0
  74. package/src/utils/utils.js +30 -19
  75. package/src/vendor/Blob.js +187 -179
  76. package/src/vendor/Export2Excel.js +231 -220
  77. package/src/vendor/Export2Zip.js +25 -22
  78. package/src/views/layout/AppMain.vue +34 -32
  79. package/src/views/layout/HdLayout.vue +64 -52
  80. package/src/views/layout/header/ElasticSearch.vue +196 -159
  81. package/src/views/layout/header/HZRecorder.js +163 -135
  82. package/src/views/layout/header/HeaderSearch.vue +165 -145
  83. package/src/views/layout/header/Levelbar.vue +55 -49
  84. package/src/views/layout/header/MainHeader.vue +233 -189
  85. package/src/views/layout/header/Navbar.vue +74 -78
  86. package/src/views/layout/header/ScrollPane.vue +103 -81
  87. package/src/views/layout/header/TagsView.vue +169 -164
  88. package/src/views/layout/header/VocRec.vue +86 -78
  89. package/src/views/layout/header/changepswform.vue +98 -64
  90. package/src/views/layout/index.js +5 -7
  91. package/src/views/layout/menu/Hamburger.vue +63 -45
  92. package/src/views/layout/menu/HdMenu.vue +155 -118
  93. package/src/views/layout/menu/index.vue +21 -19
  94. package/src/views/privilege/commsg/commsg.vue +115 -41
  95. package/src/views/privilege/commsg/commsgOrgn.vue +40 -31
  96. package/src/views/privilege/commsg/commsgRole.vue +180 -109
  97. package/src/views/privilege/commsg/commsgform.vue +125 -101
  98. package/src/views/privilege/commsg/commsgiframe.vue +30 -23
  99. package/src/views/privilege/commsg/commsgto.vue +163 -84
  100. package/src/views/privilege/commsg/commsgtoform.vue +64 -58
  101. package/src/views/privilege/commsg/commsgtrans.vue +187 -115
  102. package/src/views/privilege/exfield/comexcolumn.vue +133 -43
  103. package/src/views/privilege/exfield/comexcolumnform.vue +85 -58
  104. package/src/views/privilege/exfield/comexfield.vue +15 -17
  105. package/src/views/privilege/exfield/comexfieldform.vue +71 -53
  106. package/src/views/privilege/exfield/comexfieldsub.vue +137 -46
  107. package/src/views/privilege/index.js +19 -20
  108. package/src/views/privilege/menu/comMenu.vue +49 -41
  109. package/src/views/privilege/menu/menu.vue +166 -49
  110. package/src/views/privilege/menu/menuinfo.vue +41 -34
  111. package/src/views/privilege/menu/rolelist.vue +78 -33
  112. package/src/views/privilege/menu/userlist.vue +76 -33
  113. package/src/views/privilege/mobile/authmobileupdate.vue +119 -43
  114. package/src/views/privilege/mobile/authmobileupdateform.vue +76 -46
  115. package/src/views/privilege/orgDept/authOrgn.vue +157 -65
  116. package/src/views/privilege/orgDept/authorgnform.vue +50 -38
  117. package/src/views/privilege/orgDept/orgDept.vue +38 -37
  118. package/src/views/privilege/orgDept/orgTree.vue +99 -88
  119. package/src/views/privilege/orgDept/orgnselect.vue +132 -111
  120. package/src/views/privilege/personDept/authuser.vue +197 -91
  121. package/src/views/privilege/personDept/authuserform.vue +123 -71
  122. package/src/views/privilege/personDept/facerec.vue +128 -83
  123. package/src/views/privilege/personDept/orgncascader.vue +134 -115
  124. package/src/views/privilege/personDept/personDept.vue +9 -7
  125. package/src/views/privilege/quartz/comquartzjob.vue +123 -38
  126. package/src/views/privilege/quartz/comquartzjobform.vue +67 -51
  127. package/src/views/privilege/quartz/comquartzlog.vue +116 -32
  128. package/src/views/privilege/role/btnRole.vue +123 -67
  129. package/src/views/privilege/role/menuRole.vue +65 -45
  130. package/src/views/privilege/role/orgnRole.vue +63 -41
  131. package/src/views/privilege/role/role.vue +26 -9
  132. package/src/views/privilege/role/rolelist.vue +114 -45
  133. package/src/views/privilege/role/roleselect.vue +34 -17
  134. package/src/views/privilege/search/comsearch.vue +164 -73
  135. package/src/views/privilege/search/menu.vue +38 -22
  136. package/src/views/privilege/syscode/syscode.vue +157 -69
  137. package/src/views/privilege/syscode/sysfield.vue +96 -43
  138. package/src/views/privilege/syscode/sysfieldframe.vue +30 -30
  139. package/src/views/privilege/syslog/menulog.vue +38 -22
  140. package/src/views/privilege/syslog/syslog.vue +145 -78
  141. package/src/views/privilege/syslog/syslogconfig.vue +91 -24
  142. package/src/views/privilege/syslog/syslogform.vue +45 -43
  143. package/src/views/privilege/syslog/syslogframe.vue +26 -26
  144. package/src/views/privilege/userRole/userRole.vue +187 -89
  145. package/vite.config.js +7 -0
  146. package/dist/assets/index.774ef40e.css +0 -1
  147. package/src/views/privilege.zip +0 -0
@@ -1,88 +1,99 @@
1
- <template>
2
- <hd-tree ref="tree" :show-checkbox="false" :highlight-current="true" :expand-on-click-node="false" :data="hdResult"
3
- :props="opts" @node-click="handleNodeClick" node-key="id" :filter-node-method="filterNode"
4
- :default-expanded-keys="defaultExpandedKeys"></hd-tree>
5
- </template>
6
-
7
- <script>
8
-
9
- export default {
10
- name: 'orgTree',
11
- data() {
12
- return {
13
- hdQuery: new HdQuery(this),
14
- hdResult: [],
15
- listLoading: true,
16
- visible: false,
17
- opts: {
18
- label: 'text'
19
- },
20
- currentNodeData: {}
21
- }
22
- },
23
- props: { idVal: String }, // 设置value为props属性-必须
24
- mounted() {
25
- this.doQuery()
26
- },
27
- methods: {
28
- doQuery() {
29
- // 显示loading框
30
- this.listLoading = true
31
- this.$http.post('/webresources/login/privilege/AuthOrgn/gentree', this.hdQuery).then(response => {
32
- const data = response.data
33
- this.hdResult = data
34
- this.listLoading = false
35
- })
36
- },
37
- handleNodeClick(data) {
38
- this.$emit('org-node-click', data)
39
- this.currentNodeData = data
40
- },
41
- refresh: function(data) {
42
- const tree = this.$refs.tree.$refs.eltree
43
- if (data.type === 'add') {
44
- this.currentNodeData.children.push(data.data)
45
- } else if (data.type === 'edit') {
46
- const array = this.currentNodeData.children
47
- for (let i = 0; i < array.length; i++) {
48
- const obj = array[i]
49
- if (obj.id === data.data.id) {
50
- Object.assign(array[i], data.data)
51
- break
52
- }
53
- }
54
- } else if (data.type === 'remove') {
55
- const array = this.currentNodeData.children
56
- for (let i = 0; i < array.length; i++) {
57
- const obj = array[i]
58
- if (obj.id === data.data.id) {
59
- array.splice(i, 1)
60
- break
61
- }
62
- }
63
- }
64
- },
65
- filterNode(value, data) {
66
- if (!value) return true
67
- return data.text.indexOf(value) !== -1
68
- },
69
- filter(val) {
70
- this.$refs.tree.$refs.eltree.filter(val)
71
- }
72
- },
73
- watch: {
74
- // 都有值才适合查询
75
- idVal: function(newVal) {
76
- this.$refs.tree.$refs.eltree.setCurrentKey(this.idVal)
77
- }
78
- },
79
- computed: {// 给外层v-model赋值
80
- defaultExpandedKeys() {
81
- if (this.idVal) {
82
- return [this.idVal]
83
- }
84
- return []
85
- }
86
- }
87
- }
88
- </script>
1
+ <template>
2
+ <hd-tree
3
+ ref="tree"
4
+ :show-checkbox="false"
5
+ :highlight-current="true"
6
+ :expand-on-click-node="false"
7
+ :data="hdResult"
8
+ :props="opts"
9
+ @node-click="handleNodeClick"
10
+ node-key="id"
11
+ :filter-node-method="filterNode"
12
+ :default-expanded-keys="defaultExpandedKeys"
13
+ ></hd-tree>
14
+ </template>
15
+
16
+ <script>
17
+ export default {
18
+ name: 'orgTree',
19
+ data() {
20
+ return {
21
+ hdQuery: new HdQuery(this),
22
+ hdResult: [],
23
+ listLoading: true,
24
+ visible: false,
25
+ opts: {
26
+ label: 'text',
27
+ },
28
+ currentNodeData: {},
29
+ }
30
+ },
31
+ props: { idVal: String }, // 设置value为props属性-必须
32
+ mounted() {
33
+ this.doQuery()
34
+ },
35
+ methods: {
36
+ doQuery() {
37
+ // 显示loading框
38
+ this.listLoading = true
39
+ this.$http
40
+ .post('/webresources/login/privilege/AuthOrgn/gentree', this.hdQuery)
41
+ .then((response) => {
42
+ const data = response.data
43
+ this.hdResult = data
44
+ this.listLoading = false
45
+ })
46
+ },
47
+ handleNodeClick(data) {
48
+ this.$emit('org-node-click', data)
49
+ this.currentNodeData = data
50
+ },
51
+ refresh: function (data) {
52
+ const tree = this.$refs.tree.$refs.eltree
53
+ if (data.type === 'add') {
54
+ this.currentNodeData.children.push(data.data)
55
+ } else if (data.type === 'edit') {
56
+ const array = this.currentNodeData.children
57
+ for (let i = 0; i < array.length; i++) {
58
+ const obj = array[i]
59
+ if (obj.id === data.data.id) {
60
+ Object.assign(array[i], data.data)
61
+ break
62
+ }
63
+ }
64
+ } else if (data.type === 'remove') {
65
+ const array = this.currentNodeData.children
66
+ for (let i = 0; i < array.length; i++) {
67
+ const obj = array[i]
68
+ if (obj.id === data.data.id) {
69
+ array.splice(i, 1)
70
+ break
71
+ }
72
+ }
73
+ }
74
+ },
75
+ filterNode(value, data) {
76
+ if (!value) return true
77
+ return data.text.indexOf(value) !== -1
78
+ },
79
+ filter(val) {
80
+ this.$refs.tree.$refs.eltree.filter(val)
81
+ },
82
+ },
83
+ watch: {
84
+ // 都有值才适合查询
85
+ idVal: function (newVal) {
86
+ this.$refs.tree.$refs.eltree.setCurrentKey(this.idVal)
87
+ },
88
+ },
89
+ computed: {
90
+ // 给外层v-model赋值
91
+ defaultExpandedKeys() {
92
+ if (this.idVal) {
93
+ return [this.idVal]
94
+ }
95
+ return []
96
+ },
97
+ },
98
+ }
99
+ </script>
@@ -1,134 +1,155 @@
1
1
  <template>
2
2
  <div>
3
- <el-popover :disabled="disabled" placement="bottom-start" ref="popSel" v-model="visible">
4
- <div :style="{height: height}">
5
- <orgTree :idVal="idVal" @org-node-click='doSel' ref='orgTree'></orgTree>
3
+ <el-popover
4
+ :disabled="disabled"
5
+ placement="bottom-start"
6
+ ref="popSel"
7
+ v-model="visible"
8
+ >
9
+ <div :style="{ height: height }">
10
+ <orgTree :idVal="idVal" @org-node-click="doSel" ref="orgTree"></orgTree>
6
11
  </div>
7
12
  </el-popover>
8
13
  <div>
9
14
  <!--readonly 在选择区隐藏时,不能输入-->
10
- <el-input :clearable="false" :disabled="disabled"
11
- :placeholder="placeholder?this.$t(placeholder):this.$t('请选择')" :readonly="!visible"
12
- @focus="focus" @mouseenter.native="doMouseEnter"
13
- @mouseleave.native="doMouseLeave" ref="sel" v-model="searchVal" v-popover:popSel>
14
- <i @click.stop="doClear" class="el-input__icon el-icon-circle-close" slot="suffix" style="cursor:pointer "
15
- v-if="!threePointShow"></i>
16
- <i @click="$emit('pop')" class="el-input__icon el-icon-more" slot="suffix" style="cursor:pointer"
17
- v-if="threePointShow"></i>
15
+ <el-input
16
+ :clearable="false"
17
+ :disabled="disabled"
18
+ :placeholder="placeholder ? this.$t(placeholder) : this.$t('请选择')"
19
+ :readonly="!visible"
20
+ @focus="focus"
21
+ @mouseenter.native="doMouseEnter"
22
+ @mouseleave.native="doMouseLeave"
23
+ ref="sel"
24
+ v-model="searchVal"
25
+ v-popover:popSel
26
+ >
27
+ <el-icon class="el-input__icon" style="cursor: pointer"
28
+ ><el-icon-circle-close
29
+ /></el-icon>
30
+ <el-icon class="el-input__icon" style="cursor: pointer"
31
+ ><el-icon-more
32
+ /></el-icon>
18
33
  </el-input>
19
34
  </div>
20
35
  </div>
21
36
  </template>
22
- <style>
23
- .lucencyInput .el-input__inner {
24
- border: 0px;
25
- }
26
- </style>
37
+
27
38
  <script>
28
- import orgTree from './orgTree'
39
+ import {
40
+ CircleClose as ElIconCircleClose,
41
+ More as ElIconMore,
42
+ } from '@element-plus/icons'
43
+ import orgTree from './orgTree'
29
44
 
45
+ export default {
46
+ components: {
47
+ orgTree,
48
+ ElIconCircleClose,
49
+ ElIconMore,
50
+ },
51
+ name: 'orgnselect',
52
+ data() {
53
+ return {
54
+ threePointShow: true,
55
+ searchVal: this.txtVal,
56
+ // isFocus: false,
57
+ visible: false,
58
+ isFirst: true, // 是否第一次打开
59
+ searchHandler: Object,
60
+ isSoftFocus: false, // 点击弹窗内容时,input重新获得焦点,但是不能触发focus
61
+ // focusTime: 0
62
+ }
63
+ },
64
+ inheritAttrs: false,
30
65
  /**
31
- * 自定义列表下拉
32
- * @module orgnselect
66
+ * Props 继承hd-com-grid的属性和事件
67
+ * @prop {String} txtVal 双向绑定 这里是为了clear清空用
68
+ * @prop {String} idVal 双向绑定 这里是为了clear清空用
69
+ * @prop {String} placeholder
70
+ * @prop {String} disabled 只读
71
+ * @prop {Object} hdQuery 查询封装类
72
+ * @prop {String} height 默认为40vh
73
+ * @prop {Function} beforeQuery 查询前的事件,通常需要绑定anyQuery
33
74
  */
34
- export default {
35
- name: 'orgnselect',
36
- components: {
37
- orgTree
75
+ // 设置value为props属性-必须
76
+ props: {
77
+ txtVal: String,
78
+ idVal: String,
79
+ placeholder: String,
80
+ disabled: Boolean,
81
+ hdQuery: Object,
82
+ url: String, // 全路径
83
+ height: {
84
+ // 高度
85
+ type: String,
86
+ default: '40vh',
38
87
  },
39
- data() {
40
- return {
41
- threePointShow: true,
42
- searchVal: this.txtVal,
43
- // isFocus: false,
44
- visible: false,
45
- isFirst: true, // 是否第一次打开
46
- searchHandler: Object,
47
- isSoftFocus: false // 点击弹窗内容时,input重新获得焦点,但是不能触发focus
48
- // focusTime: 0
88
+ beforeQuery: Function,
89
+ },
90
+ mounted() {
91
+ $(this.$parent.$el).find('.el-popover__reference').removeAttr('tabIndex') // 焦点用
92
+ },
93
+ methods: {
94
+ focus() {
95
+ // this.focusTime = new Date().getTime()
96
+ this.$emit('focus')
97
+ if (this.isSoftFocus) {
98
+ // click时
99
+ this.isSoftFocus = false // 点击时,防止焦点触发
100
+ return false
49
101
  }
102
+ setTimeout(() => {
103
+ // 否则会和默认的冲突
104
+ this.visible = true
105
+ }, 150)
106
+ // this.isFocus = true
50
107
  },
51
- inheritAttrs: false,
52
- /**
53
- * Props 继承hd-com-grid的属性和事件
54
- * @prop {String} txtVal 双向绑定 这里是为了clear清空用
55
- * @prop {String} idVal 双向绑定 这里是为了clear清空用
56
- * @prop {String} placeholder
57
- * @prop {String} disabled 只读
58
- * @prop {Object} hdQuery 查询封装类
59
- * @prop {String} height 默认为40vh
60
- * @prop {Function} beforeQuery 查询前的事件,通常需要绑定anyQuery
61
- */
62
- props: {
63
- txtVal: String,
64
- idVal: String,
65
- placeholder: String,
66
- disabled: Boolean,
67
- hdQuery: Object,
68
- url: String, // 全路径
69
- height: {// 高度
70
- type: String,
71
- default: '40vh'
72
- },
73
- beforeQuery: Function
74
- }, // 设置value为props属性-必须
75
- mounted() {
76
- $(this.$parent.$el).find('.el-popover__reference').removeAttr('tabIndex')// 焦点用
108
+ doClear() {
109
+ this.$emit('update:txtVal', '')
110
+ this.$emit('update:idVal', '')
111
+ this.$emit('clear')
77
112
  },
78
- methods: {
79
- focus() {
80
- // this.focusTime = new Date().getTime()
81
- this.$emit('focus')
82
- if (this.isSoftFocus) { // click时
83
- this.isSoftFocus = false // 点击时,防止焦点触发
84
- return false
85
- }
86
- setTimeout(() => { // 否则会和默认的冲突
87
- this.visible = true
88
- }, 150)
89
- // this.isFocus = true
90
- },
91
- doClear() {
92
- this.$emit('update:txtVal', '')
93
- this.$emit('update:idVal', '')
94
- this.$emit('clear')
95
- },
96
- doMouseEnter() {
97
- if (this.disabled) {
98
- return false
99
- }
100
- if (this.idVal) {
101
- this.threePointShow = false
102
- }
103
- },
104
- doMouseLeave() {
105
- this.threePointShow = true
106
- },
107
- doSel(data) {
108
- this.$emit('update:txtVal', data.text)
109
- this.$emit('update:idVal', data.id)
110
- this.visible = false
113
+ doMouseEnter() {
114
+ if (this.disabled) {
115
+ return false
116
+ }
117
+ if (this.idVal) {
118
+ this.threePointShow = false
111
119
  }
112
120
  },
113
-
114
- watch: {
115
- // searchVal: function(newVal) {
116
- // this.$refs.orgTree.filter(newVal)
117
- // // this.visible = true
118
- // },
119
- txtVal: function (newVal) {
121
+ doMouseLeave() {
122
+ this.threePointShow = true
123
+ },
124
+ doSel(data) {
125
+ this.$emit('update:txtVal', data.text)
126
+ this.$emit('update:idVal', data.id)
127
+ this.visible = false
128
+ },
129
+ },
130
+ watch: {
131
+ // searchVal: function(newVal) {
132
+ // this.$refs.orgTree.filter(newVal)
133
+ // // this.visible = true
134
+ // },
135
+ txtVal: function (newVal) {
136
+ this.searchVal = this.txtVal
137
+ },
138
+ visible: function (newVal) {
139
+ console.log('newVal', newVal)
140
+ console.log(this.$refs.orgTree)
141
+ if (newVal) {
142
+ this.$refs.orgTree.filter('')
143
+ } else {
120
144
  this.searchVal = this.txtVal
121
- },
122
- visible: function (newVal) {
123
- console.log('newVal', newVal)
124
- console.log(this.$refs.orgTree)
125
- if (newVal) {
126
- this.$refs.orgTree.filter('')
127
- } else {
128
- this.searchVal = this.txtVal
129
- }
130
145
  }
131
- }
132
- }
133
-
146
+ },
147
+ },
148
+ }
134
149
  </script>
150
+
151
+ <style>
152
+ .lucencyInput .el-input__inner {
153
+ border: 0px;
154
+ }
155
+ </style>