doway-coms 1.6.18 → 1.6.20
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/package.json +1 -1
- package/packages/BaseGrid/src/index.vue +4 -0
- package/packages/BaseSelect/src/index.vue +2 -0
- package/packages/utils/common.js +6 -0
- package/dist/css/chunk-vendors.7f83d8f9.css +0 -8
- package/dist/css/index.86478f73.css +0 -3
- package/dist/favicon.ico +0 -0
- package/dist/js/chunk-vendors.307eaa8f.js +0 -347
- package/dist/js/index.48e7f7ac.js +0 -2
package/package.json
CHANGED
|
@@ -108,6 +108,10 @@
|
|
|
108
108
|
</div>
|
|
109
109
|
</template>
|
|
110
110
|
|
|
111
|
+
<template #customCell_edit="{ row, column }">
|
|
112
|
+
<slot name="customCellEdit" :item="{ row, column }"></slot>
|
|
113
|
+
</template>
|
|
114
|
+
|
|
111
115
|
<template #text_edit="scope">
|
|
112
116
|
<div class="interceptor-class">
|
|
113
117
|
<a-input
|
package/packages/utils/common.js
CHANGED
|
@@ -554,6 +554,12 @@ export function setFormButtons(toolBtns,statusBtns,permissionBtns){
|
|
|
554
554
|
if(loopBtn.visibleStatus){
|
|
555
555
|
pushBtn['visibleStatuss'] = loopBtn.visibleStatus.split(',')
|
|
556
556
|
}
|
|
557
|
+
let extraInfo = loopBtn.extraInfo
|
|
558
|
+
? JSON.parse(loopBtn.extraInfo)
|
|
559
|
+
: {}
|
|
560
|
+
if (Object.keys(extraInfo).length) {
|
|
561
|
+
pushBtn = XEUtils.assign(extraInfo, pushBtn)
|
|
562
|
+
}
|
|
557
563
|
switch(loopBtn.buttonType){
|
|
558
564
|
case 'tool':
|
|
559
565
|
toolBtns.push(pushBtn)
|