@ddwl/ddwl-ui 1.3.7 → 1.3.10
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/dist/index.common.js +128 -128
- package/dist/index.umd.js +141 -141
- package/dist/index.umd.min.js +3 -3
- package/package.json +1 -1
- package/src/packages/search-form/index.vue +1 -1
- package/src/packages/search-table/index.vue +1 -0
- package/src/packages/table/index.vue +1 -1
package/package.json
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
<el-col v-if="hasSlot && expend && !suffixSlot" :span="24 - submitSpan" class="mb16">
|
|
23
23
|
<slot />
|
|
24
24
|
</el-col>
|
|
25
|
-
<el-col :span="submitSpan">
|
|
25
|
+
<el-col v-if="config.length" :span="submitSpan">
|
|
26
26
|
<div
|
|
27
27
|
:style="{
|
|
28
28
|
'margin-top': hasSlot && expend && !suffixSlot ? '0px' : '24px'
|
|
@@ -398,7 +398,7 @@ export default {
|
|
|
398
398
|
const el = this.$refs.table.$el.querySelector('.el-table__body-wrapper > table > tbody')
|
|
399
399
|
/* eslint-disable no-new */
|
|
400
400
|
new Sortable(el, {
|
|
401
|
-
handle: '.table-drag-icon',
|
|
401
|
+
handle: '.d-table-drag-icon',
|
|
402
402
|
onEnd: (evt) => {
|
|
403
403
|
// 拖拽后数据位置置换
|
|
404
404
|
const data = this.list.splice(evt.oldIndex, 1)[0]
|