|
@@ -0,0 +1,226 @@
|
|
|
+<template>
|
|
|
+ <a-modal
|
|
|
+ :title="modalTitle"
|
|
|
+ :width="1300"
|
|
|
+ :visible="visible"
|
|
|
+ :confirmLoading="confirmLoading"
|
|
|
+ class="ant-modal2"
|
|
|
+ @cancel="handleCancel"
|
|
|
+ >
|
|
|
+ <a-card :bordered="false">
|
|
|
+ <div class="table-operator" style="margin-bottom: 8px;">
|
|
|
+ </div>
|
|
|
+ <s-table
|
|
|
+ ref="table"
|
|
|
+ size="default"
|
|
|
+ rowKey="id"
|
|
|
+ :columns="columns"
|
|
|
+ :data="loadData"
|
|
|
+ :alert="options.alert"
|
|
|
+ :customRow="options.customRow"
|
|
|
+ :rowSelection="options.rowSelection"
|
|
|
+ :scroll="{ x: 1300, y: BaseTool.Constant.scrollY }"
|
|
|
+ showPagination="auto"
|
|
|
+ >
|
|
|
+ <span slot="status" slot-scope="text">
|
|
|
+ <badge :status="DictCache.COLOR.SB_INFO_STATUS[text]" :text="statusMap[text]" />
|
|
|
+ </span>
|
|
|
+ </s-table>
|
|
|
+ </a-card>
|
|
|
+ <template slot="footer">
|
|
|
+ <a-button :loading="confirmLoading" type="primary" @click="handleCancel()">取消</a-button>
|
|
|
+ <a-button :loading="confirmLoading" type="primary" @click="handleSelect()">选择</a-button>
|
|
|
+ </template>
|
|
|
+ </a-modal>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import { STable, Ellipsis } from '@/components'
|
|
|
+import { getsbPositionNoPage } from '@/api/sb/info'
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: 'SbInfoSelectModal',
|
|
|
+ components: {
|
|
|
+ STable,
|
|
|
+ Ellipsis
|
|
|
+ },
|
|
|
+ props: {
|
|
|
+ type: {
|
|
|
+ type: String,
|
|
|
+ default: 'radio'
|
|
|
+ },
|
|
|
+ selectedRowKey: {
|
|
|
+ type: Array,
|
|
|
+ default: () => {
|
|
|
+ return []
|
|
|
+ }
|
|
|
+ },
|
|
|
+ selectedRow: {
|
|
|
+ type: Array,
|
|
|
+ default: () => {
|
|
|
+ return []
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ data () {
|
|
|
+ return {
|
|
|
+ confirmLoading: false,
|
|
|
+ mdl: {},
|
|
|
+ modalTitle: null,
|
|
|
+ visible: false,
|
|
|
+ // 查询参数
|
|
|
+ queryParam: {
|
|
|
+ },
|
|
|
+ extraQueryParam: {
|
|
|
+ },
|
|
|
+ depreciationTypeMap: {},
|
|
|
+ levelMap: {},
|
|
|
+ statusMap: {},
|
|
|
+ unitMap: {},
|
|
|
+ useTypeMap: {},
|
|
|
+ sourceTypeMap: {},
|
|
|
+ // 表头
|
|
|
+ columns: [
|
|
|
+ {
|
|
|
+ title: '部位名称',
|
|
|
+ checked: true,
|
|
|
+ dataIndex: 'name'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '部位编号',
|
|
|
+ dataIndex: 'no',
|
|
|
+ checked: true
|
|
|
+ },
|
|
|
+
|
|
|
+ {
|
|
|
+ title: '部位类型',
|
|
|
+ dataIndex: 'type',
|
|
|
+ checked: true,
|
|
|
+ width: 200,
|
|
|
+ customRender: (text, record, index) => {
|
|
|
+ return record.typeName
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ // 加载数据方法 必须为 Promise 对象
|
|
|
+ loadData: parameter => {
|
|
|
+ parameter = {
|
|
|
+ ...parameter,
|
|
|
+ ...this.queryParam
|
|
|
+ }
|
|
|
+ return getsbPositionNoPage(Object.assign(parameter))
|
|
|
+ .then(res => {
|
|
|
+ return res.data
|
|
|
+ })
|
|
|
+ },
|
|
|
+ selectedRowKeys: [],
|
|
|
+ selectedRows: [],
|
|
|
+
|
|
|
+ options: {
|
|
|
+ alert: { show: true, clear: () => { this.selectedRowKeys = [] } },
|
|
|
+ rowSelection: {
|
|
|
+ selectedRowKeys: this.selectedRowKeys,
|
|
|
+ onChange: this.onSelectChange
|
|
|
+ }
|
|
|
+ },
|
|
|
+ optionAlertShow: true,
|
|
|
+ isCreated: false
|
|
|
+ }
|
|
|
+ },
|
|
|
+ created () {
|
|
|
+ this.tableOption()
|
|
|
+ this.depreciationTypeMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SBINFO_DEPRECIATIONTYPE)
|
|
|
+ this.levelMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SBINFO_LEVEL)
|
|
|
+ this.statusMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SB_INFO_STATUS)
|
|
|
+ this.unitMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SBINFO_UNIT)
|
|
|
+ this.sourceTypeMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SBTYPE_SOURCETYPE)
|
|
|
+ this.useTypeMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SB_UES_TYPE)
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ tableOption () {
|
|
|
+ if (!this.optionAlertShow) {
|
|
|
+ this.options = {
|
|
|
+ alert: { show: true, clear: () => { this.selectedRowKeys = [] } },
|
|
|
+ rowSelection: {
|
|
|
+ selectedRowKeys: this.selectedRowKeys,
|
|
|
+ onChange: this.onSelectChange,
|
|
|
+ type: this.type,
|
|
|
+ getCheckboxProps: record => ({
|
|
|
+ props: {
|
|
|
+ disabled: false,
|
|
|
+ name: record.id
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ customRow: (record) => {
|
|
|
+ return {
|
|
|
+ on: { // 事件
|
|
|
+ click: (event) => { // 点击行
|
|
|
+ // 选择对象
|
|
|
+ this.mySelect([record.id], [record])
|
|
|
+ },
|
|
|
+ dblclick: (event) => {
|
|
|
+ this.mySelect([record.id], [record])
|
|
|
+ this.handleSelect()
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.optionAlertShow = true
|
|
|
+ } else {
|
|
|
+ this.options = {
|
|
|
+ alert: false,
|
|
|
+ rowSelection: null
|
|
|
+ }
|
|
|
+ this.optionAlertShow = false
|
|
|
+ }
|
|
|
+ },
|
|
|
+ handleOk () {
|
|
|
+ this.$refs.table.refresh()
|
|
|
+ },
|
|
|
+ onSelectChange (selectedRowKeys, selectedRows) {
|
|
|
+ this.selectedRowKeys = selectedRowKeys
|
|
|
+ this.selectedRows = selectedRows
|
|
|
+ },
|
|
|
+ resetSearchForm () {
|
|
|
+ this.queryParam = {
|
|
|
+ }
|
|
|
+ this.$refs.table.refresh(true)
|
|
|
+ },
|
|
|
+ base (record, queryParam = {}) {
|
|
|
+ this.visible = true
|
|
|
+ this.modalTitle = '选择设备'
|
|
|
+ this.extraQueryParam = queryParam
|
|
|
+ if (this.isCreated) {
|
|
|
+ console.log(this.$refs.table)
|
|
|
+ this.$refs.table.clearSelected()
|
|
|
+ this.options.rowSelection.type = this.type
|
|
|
+ this.handleOk()
|
|
|
+ } else {
|
|
|
+ this.tableOption()
|
|
|
+ this.isCreated = true
|
|
|
+ }
|
|
|
+ // this.mySelect(this.selectedRowKeys, this.selectedRows)
|
|
|
+ },
|
|
|
+ handleCancel () {
|
|
|
+ this.visible = false
|
|
|
+ this.confirmLoading = false
|
|
|
+ },
|
|
|
+ handleSelect () {
|
|
|
+ if (this.selectedRowKeys.length === 0) {
|
|
|
+ this.$message.warn('请至少选择一项信息')
|
|
|
+ } else {
|
|
|
+ this.confirmLoading = true
|
|
|
+ this.$emit('selected', this.selectedRowKeys, this.selectedRows)
|
|
|
+ this.confirmLoading = false
|
|
|
+ this.visible = false
|
|
|
+ }
|
|
|
+ },
|
|
|
+ mySelect (selectedRowKeys, selectedRows) {
|
|
|
+ this.$refs.table.updateSelect(selectedRowKeys, selectedRows)
|
|
|
+ this.$refs.table.rowSelection.onChange(selectedRowKeys, selectedRows)
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|