|
@@ -94,6 +94,7 @@
|
|
|
<ibps-user-selector
|
|
<ibps-user-selector
|
|
|
v-if="$utils.isNotEmpty(scope.column)"
|
|
v-if="$utils.isNotEmpty(scope.column)"
|
|
|
v-model="scope.value"
|
|
v-model="scope.value"
|
|
|
|
|
+ :scope="scope"
|
|
|
:type="scope.column.field_options.selector_type || 'user'"
|
|
:type="scope.column.field_options.selector_type || 'user'"
|
|
|
:multiple="
|
|
:multiple="
|
|
|
$utils.toBoolean(scope.column.field_options.multiple, true)
|
|
$utils.toBoolean(scope.column.field_options.multiple, true)
|
|
@@ -108,6 +109,7 @@
|
|
|
<ibps-custom-dialog
|
|
<ibps-custom-dialog
|
|
|
v-if="$utils.isNotEmpty(scope.column)"
|
|
v-if="$utils.isNotEmpty(scope.column)"
|
|
|
v-model="scope.value"
|
|
v-model="scope.value"
|
|
|
|
|
+ :scope="scope"
|
|
|
:template-key="scope.column.field_options.dialog"
|
|
:template-key="scope.column.field_options.dialog"
|
|
|
:multiple="
|
|
:multiple="
|
|
|
$utils.toBoolean(scope.column.field_options.multiple, true)
|
|
$utils.toBoolean(scope.column.field_options.multiple, true)
|
|
@@ -379,9 +381,8 @@ import Scan from '@/views/system/jbdScan/scan.vue'
|
|
|
import IbpsExport from '@/plugins/export'
|
|
import IbpsExport from '@/plugins/export'
|
|
|
import IbpsImport from '@/plugins/import'
|
|
import IbpsImport from '@/plugins/import'
|
|
|
import Vue from 'vue'
|
|
import Vue from 'vue'
|
|
|
-Vue.component(
|
|
|
|
|
- 'ibps-data-template-render-dialog',
|
|
|
|
|
- () => import('@/business/platform/data/templaterender/preview/dialog.vue')
|
|
|
|
|
|
|
+Vue.component('ibps-data-template-render-dialog', () =>
|
|
|
|
|
+ import('@/business/platform/data/templaterender/preview/dialog.vue')
|
|
|
)
|
|
)
|
|
|
import generalModules from '@/views/system/jbdScan/generalModules.vue'
|
|
import generalModules from '@/views/system/jbdScan/generalModules.vue'
|
|
|
import { upload } from '@/api/upload/zip'
|
|
import { upload } from '@/api/upload/zip'
|
|
@@ -706,6 +707,7 @@ export default {
|
|
|
this.$emit('selected', this.multiple ? [] : '')
|
|
this.$emit('selected', this.multiple ? [] : '')
|
|
|
},
|
|
},
|
|
|
handleSelectionChange(selection) {
|
|
handleSelectionChange(selection) {
|
|
|
|
|
+ console.log('row===>', selection)
|
|
|
this.selection = selection
|
|
this.selection = selection
|
|
|
setTimeout(() => {
|
|
setTimeout(() => {
|
|
|
this.changePageCoreRecordData()
|
|
this.changePageCoreRecordData()
|
|
@@ -2271,6 +2273,7 @@ export default {
|
|
|
*/
|
|
*/
|
|
|
handleRowOneclick(row, event, column) {
|
|
handleRowOneclick(row, event, column) {
|
|
|
if (event.label !== '操作') {
|
|
if (event.label !== '操作') {
|
|
|
|
|
+ console.log(row)
|
|
|
this.setRowEvent('单击', row)
|
|
this.setRowEvent('单击', row)
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|