st-comp 0.0.182 → 0.0.184
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/es/CustomFunction.cjs +1 -1
- package/es/CustomFunction.js +48 -42
- package/es/VarSelectDialog.cjs +2 -2
- package/es/VarSelectDialog.js +3 -2
- package/es/style.css +1 -1
- package/lib/bundle.js +1 -1
- package/lib/bundle.umd.cjs +29 -29
- package/lib/{index-9b7ac366.js → index-89193973.js} +12 -5
- package/lib/{python-46b66228.js → python-930b6755.js} +1 -1
- package/lib/style.css +1 -1
- package/package.json +1 -1
- package/packages/CustomFunction/index.vue +15 -0
- package/packages/VarSelectDialog/index.vue +1 -0
package/package.json
CHANGED
|
@@ -150,6 +150,8 @@ watch(
|
|
|
150
150
|
</el-icon>
|
|
151
151
|
<el-popconfirm
|
|
152
152
|
:title="`确认是否删除?`"
|
|
153
|
+
confirm-button-text="确认"
|
|
154
|
+
cancel-button-text="取消"
|
|
153
155
|
@confirm="handleDelete(item)"
|
|
154
156
|
>
|
|
155
157
|
<template #reference>
|
|
@@ -184,6 +186,10 @@ watch(
|
|
|
184
186
|
width="1000"
|
|
185
187
|
align-center
|
|
186
188
|
append-to-body
|
|
189
|
+
draggable
|
|
190
|
+
overflow
|
|
191
|
+
:modal="false"
|
|
192
|
+
:modal-penetrable="true"
|
|
187
193
|
:show-close="false"
|
|
188
194
|
>
|
|
189
195
|
<template #header="{ titleId, titleClass }">
|
|
@@ -292,3 +298,12 @@ watch(
|
|
|
292
298
|
}
|
|
293
299
|
}
|
|
294
300
|
</style>
|
|
301
|
+
|
|
302
|
+
<style>
|
|
303
|
+
.el-message {
|
|
304
|
+
position: fixed !important;
|
|
305
|
+
left: 50% !important;
|
|
306
|
+
transform: translateX(-50%) !important;
|
|
307
|
+
z-index: 10000 !important;
|
|
308
|
+
}
|
|
309
|
+
</style>
|