|
|
|
@ -28,6 +28,7 @@
|
|
|
|
|
size="mini"
|
|
|
|
|
:loading="getBindValues.loading"
|
|
|
|
|
@cell-dblclick="dbclickVxeRow"
|
|
|
|
|
@checkbox-change="vxeCheckBoxChange"
|
|
|
|
|
>
|
|
|
|
|
<vxe-column type="checkbox" width="40"></vxe-column>
|
|
|
|
|
<vxe-column
|
|
|
|
@ -77,7 +78,6 @@
|
|
|
|
|
</template>
|
|
|
|
|
<script lang="ts">
|
|
|
|
|
import type { BasicTableProps, TableActionType, SizeType, ColumnChangeParam } from './types/table'
|
|
|
|
|
|
|
|
|
|
import { defineComponent, ref, computed, unref, toRaw, inject, watchEffect } from 'vue'
|
|
|
|
|
import { Table, Pagination } from 'ant-design-vue'
|
|
|
|
|
import { BasicForm, useForm } from '/@/components/Form/index'
|
|
|
|
@ -375,12 +375,16 @@ export default defineComponent({
|
|
|
|
|
emit('row-dbClick', row)
|
|
|
|
|
// props.rowDbClick(row)
|
|
|
|
|
}
|
|
|
|
|
const vxeCheckBoxChange = (v) => {
|
|
|
|
|
console.log(v)
|
|
|
|
|
}
|
|
|
|
|
return {
|
|
|
|
|
formRef,
|
|
|
|
|
tableElRef,
|
|
|
|
|
getBindValues,
|
|
|
|
|
getLoading,
|
|
|
|
|
registerForm,
|
|
|
|
|
vxeCheckBoxChange,
|
|
|
|
|
handleSearchInfoChange,
|
|
|
|
|
getEmptyDataIsShowTable,
|
|
|
|
|
handleTableChange,
|
|
|
|
|