Bläddra i källkod

完善工器具

hfxc226 2 år sedan
förälder
incheckning
63be7a229c

+ 1 - 0
src/router/generator-platform-routers.js

@@ -382,6 +382,7 @@ const constantRouterComponents = {
   'Preparation': () => import('@/views/preparation/preparation/Preparation'),
   // 工器具管理
   'Tool': () => import('@/views/tool/tool/Tool'),
+  'ToolWaitCheck': () => import('@/views/tool/tool/ToolWaitCheck'),
   'ToolLog': () => import('@/views/tool/tool-log/ToolLog'),
   // 日历
   'Calendar': () => import('@/views/calendar/Calendar')

+ 57 - 27
src/views/tool/tool/Tool.vue

@@ -35,6 +35,9 @@
                 <a-popconfirm title="是否要删除所选数据?" @confirm="batchDelete()">
                   <a-menu-item key="1"><a-icon type="delete" /><a>删除</a></a-menu-item>
                 </a-popconfirm>
+                <a-button title="是否要检定所选工器具?" @visibleChange="batchCheck()">
+                  <a-menu-item key="2"><my-icon type="icon-pandian" /><a>检定</a></a-menu-item>
+                </a-button>
               </a-menu>
               <a-button style="margin-left: 8px">
                 批量操作 <a-icon type="down" />
@@ -61,6 +64,10 @@
               v-if="$auth('tool-tools-edit')"
               @click="handleEdit(record)"
             >修改</operation-button>
+            <operation-button
+              v-if="$auth('tool-tools-edit')"
+              @click="batchCheck(record.id)"
+            >检定</operation-button>
             <operation-button
               v-if="$auth('tool-tools-del')"
               :type="2"
@@ -89,12 +96,24 @@ export default {
     BaseForm,
     Detail
   },
+  props: {
+    status: {
+      type: Number,
+      default: null
+    },
+    checkFlag: {
+      type: Number,
+      default: null
+    }
+  },
   data () {
     return {
       advanced: false,
       visible: true,
       // 查询参数
       queryParam: {
+        checkFlag: this.checkFlag,
+        status: this.status
       },
       // 表头
       columns: [
@@ -130,28 +149,18 @@ export default {
           dataIndex: 'producer'
         },
         {
-          title: '是否合格:0否,1是',
-          dataIndex: 'hgFlag'
-        },
-        {
-          title: '是否需要检验:0否,1是',
-          dataIndex: 'checkFlag'
-        },
-        {
-          title: '检测内容',
-          dataIndex: 'content'
-        },
-        {
-          title: '备注',
-          dataIndex: 'remark'
-        },
-        {
-          title: '创建日期',
-          dataIndex: 'createdTime'
+          title: '是否合格',
+          dataIndex: 'hgFlag',
+          customRender: (text, record, index) => {
+            return this.BaseTool.Object.getField(this.yesNoMap, text)
+          }
         },
         {
-          title: '创建人名称',
-          dataIndex: 'createdUserName'
+          title: '是否需要检验',
+          dataIndex: 'checkFlag',
+          customRender: (text, record, index) => {
+            return this.BaseTool.Object.getField(this.yesNoMap, text)
+          }
         },
         {
           title: '存放地点',
@@ -172,10 +181,6 @@ export default {
             return this.BaseTool.Amount.formatter(text)
           }
         },
-        {
-          title: '预警天数',
-          dataIndex: 'warnDay'
-        },
         {
           title: '操作',
           key: 'action',
@@ -202,7 +207,7 @@ export default {
       },
       selectedRowKeys: [],
       selectedRows: [],
-
+      yesNoMap: {},
       options: {
         alert: { show: true, clear: () => { this.selectedRowKeys = [] } },
         rowSelection: {
@@ -215,6 +220,7 @@ export default {
   },
   created () {
     // 下拉框map
+    this.yesNoMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.YES_NO)
     this.tableOption()
   },
   methods: {
@@ -279,6 +285,23 @@ export default {
         modal.base(res.data)
       })
     },
+    batchCheck (id) {
+      let ids = []
+      if (this.BaseTool.String.isBlank(id)) {
+        const length = this.selectedRows.length
+        if (length === 0) {
+          this.$message.info('请选择要检定的工器具')
+          return
+        }
+        ids = this.selectedRows
+      } else {
+        ids = [id]
+      }
+      this.$message.info('开发中')
+      // this.visible = false
+      // const modal = this.$refs.baseModalMeasure
+      // modal.base(ids, this.correctType)
+    },
     handleOk (values) {
       this.visible = true
       this.$refs.table.refresh()
@@ -289,15 +312,22 @@ export default {
     },
     resetSearchForm () {
       this.queryParam = {
+        checkFlag: this.checkFlag,
+        status: this.status
       }
       this.$refs.table.refresh(true)
     },
     doExport () {
       const parameter = {
-        ...this.queryParam
+        ...this.queryParam,
+        ids: this.selectedRowKeys,
+        dataScope: {
+          sortBy: 'asc',
+          sortName: 'name'
+        }
       }
       exportTool(parameter).then(file => {
-        this.BaseTool.Util.downLoadExportExcel(file)
+        this.BaseTool.UPLOAD.downLoadExportExcel(file)
       })
     },
     handleEnter () {

+ 17 - 0
src/views/tool/tool/ToolWaitCheck.vue

@@ -0,0 +1,17 @@
+<template>
+  <Tool :check-flag="1" :status="1" />
+</template>
+
+<script>
+import Tool from './Tool'
+export default {
+  name: 'ToolWaitCheck',
+  components: {
+    Tool
+  }
+}
+</script>
+
+<style scoped>
+
+</style>

+ 84 - 83
src/views/tool/tool/modules/Detail.vue

@@ -1,90 +1,91 @@
 <template>
-    <a-card :bordered="false" v-show="visible" class="card" :title="modalTitle">
-        <a-row :gutter="48" slot="extra">
-            <a-col :md="48" :sm="48">
-              <span class="table-page-search-submitButtons" style="float: right">
-                <a-button style="margin-left: 8px" type="default" @click="handleCancel()">返回</a-button>
-              </span>
-            </a-col>
-        </a-row>
-        <detail-list title="" :col="2">
-                                                                                                    <detail-list-item term="工器具名称">{{ model.name }}</detail-list-item>
-                                                                                                            <detail-list-item term="工器具型号">{{ model.ggxh }}</detail-list-item>
-                                                                                                            <detail-list-item term="编号">{{ model.no }}</detail-list-item>
-                                                                                                            <detail-list-item term="数量">{{ model.num }}</detail-list-item>
-                                                                                                            <detail-list-item term="负责人">{{ model.checkUserId }}</detail-list-item>
-                                                                                                            <detail-list-item term="生产厂家">{{ model.producer }}</detail-list-item>
-                                                                                                            <detail-list-item term="是否合格:0否,1是">{{ model.hgFlag }}</detail-list-item>
-                                                                                                            <detail-list-item term="是否需要检验:0否,1是">{{ model.checkFlag }}</detail-list-item>
-                                                                                                            <detail-list-item term="检测内容">{{ model.content }}</detail-list-item>
-                                                                                                            <detail-list-item term="备注">{{ model.remark }}</detail-list-item>
-                                                                                                                                        <detail-list-item term="更新日期">{{ model.updateTime }}</detail-list-item>
-                                                                                                            <detail-list-item term="创建人">{{ model.createdUserId }}</detail-list-item>
-                                                                                                                                        <detail-list-item term="更新人">{{ model.updateUserId }}</detail-list-item>
-                                                                                                            <detail-list-item term="更新人名称">{{ model.updateUserName }}</detail-list-item>
-                                                                                                            <detail-list-item term="存放地点">{{ model.position }}</detail-list-item>
-                                                                                                            <detail-list-item term="检测日期">{{ model.checkDate }}</detail-list-item>
-                                                                                                            <detail-list-item term="下次检测日期">{{ model.nextCheckDate }}</detail-list-item>
-                                                                                                            <detail-list-item term="检测周期">{{ model.period }}</detail-list-item>
-                                                                                                            <detail-list-item term="预警天数">{{ model.warnDay }}</detail-list-item>
-                                                        </detail-list>
-    </a-card>
+  <a-card :bordered="false" v-show="visible" class="card" :title="modalTitle">
+    <a-row :gutter="48" slot="extra">
+      <a-col :md="48" :sm="48">
+        <span class="table-page-search-submitButtons" style="float: right">
+          <a-button style="margin-left: 8px" type="default" @click="handleCancel()">返回</a-button>
+        </span>
+      </a-col>
+    </a-row>
+    <detail-list title="" :col="2">
+      <detail-list-item term="工器具名称">{{ model.name }}</detail-list-item>
+      <detail-list-item term="工器具型号">{{ model.ggxh }}</detail-list-item>
+      <detail-list-item term="编号">{{ model.no }}</detail-list-item>
+      <detail-list-item term="数量">{{ model.num }}</detail-list-item>
+      <detail-list-item term="负责人">{{ model.checkUserId }}</detail-list-item>
+      <detail-list-item term="生产厂家">{{ model.producer }}</detail-list-item>
+      <detail-list-item term="是否合格:0否,1是">{{ model.hgFlag }}</detail-list-item>
+      <detail-list-item term="是否需要检验:0否,1是">{{ model.checkFlag }}</detail-list-item>
+      <detail-list-item term="检测内容">{{ model.content }}</detail-list-item>
+      <detail-list-item term="备注">{{ model.remark }}</detail-list-item>
+      <detail-list-item term="更新日期">{{ model.updateTime }}</detail-list-item>
+      <detail-list-item term="创建人">{{ model.createdUserId }}</detail-list-item>
+      <detail-list-item term="更新人">{{ model.updateUserId }}</detail-list-item>
+      <detail-list-item term="更新人名称">{{ model.updateUserName }}</detail-list-item>
+      <detail-list-item term="存放地点">{{ model.position }}</detail-list-item>
+      <detail-list-item term="检测日期">{{ model.checkDate }}</detail-list-item>
+      <detail-list-item term="下次检测日期">{{ model.nextCheckDate }}</detail-list-item>
+      <detail-list-item term="检测周期">{{ model.period }}</detail-list-item>
+      <detail-list-item term="预警天数">{{ model.warnDay }}</detail-list-item>
+    </detail-list>
+  </a-card>
 </template>
 
 <script>
-    import DetailList from '@/components/tools/DetailList'
-    const DetailListItem = DetailList.Item
+import DetailList from '@/components/tools/DetailList'
+const DetailListItem = DetailList.Item
 
-    export default {
-        name: 'ToolDetail',
-        components: {
-            DetailList,
-            DetailListItem
-        },
-        data () {
-            return {
-                confirmLoading: false,
-                mdl: {},
-                modalTitle: null,
-                visible: false,
-                // 下拉框map
-                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            model: {
-                                                                                                                    'name': null,
-                                                                                                'ggxh': null,
-                                                                                                'no': null,
-                                                                                                'num': null,
-                                                                                                'checkUserId': null,
-                                                                                                'producer': null,
-                                                                                                'hgFlag': null,
-                                                                                                'checkFlag': null,
-                                                                                                'content': null,
-                                                                                                'remark': null,
-                                                                                                                                            'updateTime': null,
-                                                                                                'createdUserId': null,
-                                                                                                                                            'updateUserId': null,
-                                                                                                'updateUserName': null,
-                                                                                                'position': null,
-                                                                                                'checkDate': null,
-                                                                                                'nextCheckDate': null,
-                                                                                                'period': null,
-                                                                                                'warnDay': null,
-                                                            }
-            }
-        },
-        created () {
-            // 下拉框map
-            
-                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        },
-        methods: {
-            base (record) {
-                this.visible = true
-                this.modalTitle = '详情'
-                this.model = record
-            },
-            handleCancel () {
-                this.visible = false
-                this.confirmLoading = false
-            }
-                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
+export default {
+  name: 'ToolDetail',
+  components: {
+    DetailList,
+    DetailListItem
+  },
+  data () {
+    return {
+      confirmLoading: false,
+      mdl: {},
+      modalTitle: null,
+      yesNoMap: {},
+      visible: false,
+      // 下拉框map
+      model: {
+        'name': null,
+        'ggxh': null,
+        'no': null,
+        'num': null,
+        'checkUserId': null,
+        'producer': null,
+        'hgFlag': null,
+        'checkFlag': null,
+        'content': null,
+        'remark': null,
+        'updateTime': null,
+        'createdUserId': null,
+        'updateUserId': null,
+        'updateUserName': null,
+        'position': null,
+        'checkDate': null,
+        'nextCheckDate': null,
+        'period': null,
+        'warnDay': null
+      }
     }
+  },
+  created () {
+    // 下拉框map
+    this.yesNoMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.YES_NO)
+  },
+  methods: {
+    base (record) {
+      this.visible = true
+      this.modalTitle = '详情'
+      this.model = record
+    },
+    handleCancel () {
+      this.visible = false
+      this.confirmLoading = false
+    }
+  }
+}
 </script>

+ 303 - 323
src/views/tool/tool/modules/ToolSelectModal.vue

@@ -1,339 +1,319 @@
 <template>
-    <a-modal
-            :title="modalTitle"
-            :width="1000"
-            :visible="visible"
-            :confirmLoading="confirmLoading"
-            class="ant-modal2"
-            @cancel="handleCancel"
-    >
-        <a-card :bordered="false">
-            <div class="table-page-search-wrapper">
-                <a-form layout="inline">
-                    <a-row :gutter="48">
-                        <a-col :md="6" :sm="24">
-                            <a-form-item label="关键字">
-                                <a-input v-model="queryParam.keyword" placeholder="请输入名称/类型名称"/>
-                            </a-form-item>
-                        </a-col>
-                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <a-col :md="6 || 24" :sm="24">
-                            <span class="table-page-search-submitButtons">
-                                <a-button type="primary" @click="$refs.table.refresh(true)">查询</a-button>
-                                <a-button style="margin-left: 8px" @click="resetSearchForm">重置</a-button>
-                                <a @click="()=>{ this.advanced = !this.advanced}" style="margin-left: 8px">
-                                  {{ advanced ? '收起' : '展开' }}
-                                  <a-icon :type="advanced ? 'up' : 'down'"/>
-                                </a>
-                            </span>
-                        </a-col>
-                    </a-row>
-                </a-form>
-            </div>
+  <a-modal
+    :title="modalTitle"
+    :width="1000"
+    :visible="visible"
+    :confirmLoading="confirmLoading"
+    class="ant-modal2"
+    @cancel="handleCancel"
+  >
+    <a-card :bordered="false">
+      <div class="table-page-search-wrapper">
+        <a-form layout="inline">
+          <a-row :gutter="48">
+            <a-col :md="6" :sm="24">
+              <a-form-item label="关键字">
+                <a-input v-model="queryParam.keyword" placeholder="请输入名称/类型名称"/>
+              </a-form-item>
+            </a-col>
+            <a-col :md="6 || 24" :sm="24">
+              <span class="table-page-search-submitButtons">
+                <a-button type="primary" @click="$refs.table.refresh(true)">查询</a-button>
+                <a-button style="margin-left: 8px" @click="resetSearchForm">重置</a-button>
+                <a @click="()=>{ this.advanced = !this.advanced}" style="margin-left: 8px">
+                  {{ advanced ? '收起' : '展开' }}
+                  <a-icon :type="advanced ? 'up' : 'down'"/>
+                </a>
+              </span>
+            </a-col>
+          </a-row>
+        </a-form>
+      </div>
 
-            <div class="table-operator">
-            </div>
+      <div class="table-operator">
+      </div>
 
-            <s-table
-                    ref="table"
-                    size="default"
-                    rowKey="id"
-                    :columns="columns"
-                    :data="loadData"
-                    :alert="options.alert"
-                    :customRow="options.customRow"
-                    :rowSelection="options.rowSelection"
-                    showPagination="auto"
-            >
-                <span slot="action" slot-scope="record1">
-                  <template>
-                    <a @click="handleView(record1)">查看</a>
-                  </template>
-                </span>
-            </s-table>
-            <detail ref="detailModal"/>
-        </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>
+      <s-table
+        ref="table"
+        size="default"
+        rowKey="id"
+        :columns="columns"
+        :data="loadData"
+        :alert="options.alert"
+        :customRow="options.customRow"
+        :rowSelection="options.rowSelection"
+        showPagination="auto"
+      >
+        <span slot="action" slot-scope="record1">
+          <template>
+            <a @click="handleView(record1)">查看</a>
+          </template>
+        </span>
+      </s-table>
+      <detail ref="detailModal"/>
+    </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 Detail from './Detail'
-    import { getToolPage, fetchTool } from '@/api/tool/tool'
+import { STable, Ellipsis } from '@/components'
+import Detail from './Detail'
+import { getToolPage, fetchTool } from '@/api/tool/tool'
 
-    export default {
-        name: 'ToolSelectModal',
-        components: {
-            STable,
-            Ellipsis,
-            Detail
+export default {
+  name: 'ToolSelectModal',
+  components: {
+    STable,
+    Ellipsis,
+    Detail
+  },
+  props: {
+    type: {
+      type: String,
+      default: 'radio'
+    },
+    selectedRowKey: {
+      type: Array,
+      default: () => {
+        return []
+      }
+    },
+    selectedRow: {
+      type: Array,
+      default: () => {
+        return []
+      }
+    }
+  },
+  data () {
+    return {
+      advanced: false,
+      confirmLoading: false,
+      mdl: {},
+      modalTitle: null,
+      visible: false,
+      record: null,
+      // 查询参数
+      queryParam: {
+      },
+      extraQueryParam: {
+      },
+      // 表头
+      columns: [
+        {
+          title: '序号',
+          dataIndex: 'index',
+          customRender: (text, record, index) => {
+            return `${(this.$refs.table.localPagination.current - 1) * this.$refs.table.localPagination.pageSize + index + 1}`
+          }
         },
-        props: {
-            type: {
-                type: String,
-                default: 'radio'
-            },
-            selectedRowKey: {
-                type: Array,
-                default: () => {
-                    return []
-                }
-            },
-            selectedRow: {
-                type: Array,
-                default: () => {
-                    return []
-                }
-            }
+        {
+          title: '工器具名称',
+          dataIndex: 'name'
+        },
+        {
+          title: '工器具型号',
+          dataIndex: 'ggxh'
+        },
+        {
+          title: '编号',
+          dataIndex: 'no'
+        },
+        {
+          title: '数量',
+          dataIndex: 'num',
+          customRender: (text, record, index) => {
+            return this.BaseTool.Amount.formatter(text)
+          }
+        },
+        {
+          title: '负责人',
+          dataIndex: 'checkUserId'
         },
-        data () {
+        {
+          title: '生产厂家',
+          dataIndex: 'producer'
+        },
+        {
+          title: '是否合格',
+          dataIndex: 'hgFlag'
+        },
+        {
+          title: '是否需要检验',
+          dataIndex: 'checkFlag'
+        },
+        {
+          title: '检测日期',
+          dataIndex: 'checkDate'
+        },
+        {
+          title: '下次检测日期',
+          dataIndex: 'nextCheckDate'
+        },
+        {
+          title: '检测周期',
+          dataIndex: 'period',
+          customRender: (text, record, index) => {
+            return this.BaseTool.Amount.formatter(text)
+          }
+        },
+        {
+          title: '预警天数',
+          dataIndex: 'warnDay',
+          customRender: (text, record, index) => {
+            return this.BaseTool.Amount.formatter(text)
+          }
+        },
+        {
+          title: '操作',
+          key: 'action',
+          width: '200px',
+          align: 'center',
+          scopedSlots: { customRender: 'action' }
+        }
+      ],
+      // 下拉框map
+      // 加载数据方法 必须为 Promise 对象
+      loadData: parameter => {
+        parameter = {
+          ...parameter,
+          ...this.queryParam,
+          ...this.extraQueryParam,
+          dataScope: {
+            sortBy: 'desc',
+            sortName: 'update_time'
+          }
+        }
+        return getToolPage(Object.assign(parameter, this.queryParam))
+          .then(res => {
+            return res.data
+          })
+      },
+      selectedRowKeys: [],
+      selectedRows: [],
+      yesNoMap: {},
+      options: {
+        alert: { show: true, clear: () => { this.selectedRowKeys = [] } },
+        rowSelection: {
+          selectedRowKeys: this.selectedRowKeys,
+          onChange: this.onSelectChange
+        }
+      },
+      optionAlertShow: false,
+      isCreated: false
+    }
+  },
+  created () {
+    // 下拉框map
+    this.yesNoMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.YES_NO)
+  },
+  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 {
-                advanced: false,
-                confirmLoading: false,
-                mdl: {},
-                modalTitle: null,
-                visible: false,
-                record: null,
-                // 查询参数
-                queryParam: {
-                },
-                extraQueryParam: {
+              on: { // 事件
+                click: (event) => { // 点击行
+                  // 选择对象
+                  this.mySelect([record.id], [record])
                 },
-                // 表头
-                columns: [
-                    {
-                        title: '序号',
-                        dataIndex: 'index',
-                        customRender: (text, record, index) => {
-                            return `${(this.$refs.table.localPagination.current - 1) * this.$refs.table.localPagination.pageSize + index + 1}`
-                        }
-                    },
-                                                                                                                                                {
-                                title: '工器具名称',
-                                dataIndex: 'name'
-                            },
-                                                                                                                                                        {
-                                title: '工器具型号',
-                                dataIndex: 'ggxh'
-                            },
-                                                                                                                                                        {
-                                title: '编号',
-                                dataIndex: 'no'
-                            },
-                                                                                                                                                            {
-                                    title: '数量',
-                                    dataIndex: 'num',
-                                    customRender: (text, record, index) => {
-                                        return this.BaseTool.Amount.formatter(text)
-                                    }                                ,
-                                },
-                                                                                                                                                        {
-                                title: '负责人',
-                                dataIndex: 'checkUserId'
-                            },
-                                                                                                                                                        {
-                                title: '生产厂家',
-                                dataIndex: 'producer'
-                            },
-                                                                                                                                                        {
-                                title: '是否合格:0否,1是',
-                                dataIndex: 'hgFlag'
-                            },
-                                                                                                                                                        {
-                                title: '是否需要检验:0否,1是',
-                                dataIndex: 'checkFlag'
-                            },
-                                                                                                                                                        {
-                                title: '检测内容',
-                                dataIndex: 'content'
-                            },
-                                                                                                                                                        {
-                                title: '备注',
-                                dataIndex: 'remark'
-                            },
-                                                                                                                                                        {
-                                title: '创建日期',
-                                dataIndex: 'createdTime'
-                            },
-                                                                                                                                                                                                                                                {
-                                title: '创建人名称',
-                                dataIndex: 'createdUserName'
-                            },
-                                                                                                                                                                                                                                                {
-                                title: '存放地点',
-                                dataIndex: 'position'
-                            },
-                                                                                                                                                        {
-                                title: '检测日期',
-                                dataIndex: 'checkDate'
-                            },
-                                                                                                                                                        {
-                                title: '下次检测日期',
-                                dataIndex: 'nextCheckDate'
-                            },
-                                                                                                                                                            {
-                                    title: '检测周期',
-                                    dataIndex: 'period',
-                                    customRender: (text, record, index) => {
-                                        return this.BaseTool.Amount.formatter(text)
-                                    }                                ,
-                                },
-                                                                                                                                                            {
-                                    title: '预警天数',
-                                    dataIndex: 'warnDay',
-                                    customRender: (text, record, index) => {
-                                        return this.BaseTool.Amount.formatter(text)
-                                    }                                ,
-                                },
-                                                                                            {
-                        title: '操作',
-                        key: 'action',
-                        width: '200px',
-                        align: 'center',
-                        scopedSlots: { customRender: 'action' }
-                    }
-                ],
-                // 下拉框map
-                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            // 加载数据方法 必须为 Promise 对象
-                loadData: parameter => {
-                    parameter = {
-                        ...parameter,
-                        ...this.queryParam,
-                        ...this.extraQueryParam,
-                        dataScope: {
-                            sortBy: 'desc',
-                            sortName: 'update_time'
-                        }
-                    }
-                    return getToolPage(Object.assign(parameter, this.queryParam))
-                            .then(res => {
-                                return res.data
-                            })
-                },
-                selectedRowKeys: [],
-                selectedRows: [],
-
-                options: {
-                    alert: { show: true, clear: () => { this.selectedRowKeys = [] } },
-                    rowSelection: {
-                        selectedRowKeys: this.selectedRowKeys,
-                        onChange: this.onSelectChange
-                    }
-                },
-                optionAlertShow: false,
-                isCreated: false
-            }
-        },
-        created () {
-            // 下拉框map
-                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        },
-        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
-                }
-            },
-            handleView (record) {
-                fetchTool({ id: record.id }).then(res => {
-                    const modal = this.$refs.detailModal
-                    modal.base(res.data)
-                })
-            },
-            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
-                this.record = record
-                if (this.isCreated) {
-                    this.$refs.table.clearSelected()
-                    this.options.rowSelection.type = this.type
-                    this.handleOk()
-                } else {
-                    this.tableOption()
-                    this.isCreated = true
-                }
-            },
-            handleCancel () {
-                this.visible = false
-                this.confirmLoading = false
-            },
-            handleSelect () {
-                if (this.selectedRowKeys.length === 0) {
-                    this.$message.warn('请至少选择一项信息')
-                } else {
-                    this.confirmLoading = true
-                    this.$emit('selected', this.record, this.selectedRowKeys, this.selectedRows)
-                    this.confirmLoading = false
-                    this.visible = false
+                dblclick: (event) => {
+                  this.mySelect([record.id], [record])
+                  this.handleSelect()
                 }
-            },
-            mySelect(selectedRowKeys, selectedRows) {
-                if (this.type === 'radio') {
-                    this.$refs.table.updateSelect(selectedRowKeys, selectedRows)
-                            this.$refs.table.rowSelection.onChange(selectedRowKeys, selectedRows)
-                } else {
-                    let mySelectedRowKeys
-                    let mySelectedRows = this.selectedRows.filter(item => item.id !== selectedRowKeys[0])
-                    if (this.selectedRowKeys.includes(selectedRowKeys[0])) {
-                        mySelectedRowKeys = this.selectedRowKeys.filter(item => item !== selectedRowKeys[0])
-                    } else {
-                        mySelectedRowKeys = [...selectedRowKeys, ...this.selectedRowKeys]
-                        mySelectedRows = [...mySelectedRows, ...selectedRows]
-                    }
-                    this.$refs.table.updateSelect(mySelectedRowKeys, mySelectedRows)
-                            this.$refs.table.rowSelection.onChange(mySelectedRowKeys, mySelectedRows)
-                }
-
+              }
             }
+          }
+        }
+        this.optionAlertShow = true
+      } else {
+        this.options = {
+          alert: false,
+          rowSelection: null
+        }
+        this.optionAlertShow = false
+      }
+    },
+    handleView (record) {
+      fetchTool({ id: record.id }).then(res => {
+        const modal = this.$refs.detailModal
+        modal.base(res.data)
+      })
+    },
+    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
+      this.record = record
+      if (this.isCreated) {
+        this.$refs.table.clearSelected()
+        this.options.rowSelection.type = this.type
+        this.handleOk()
+      } else {
+        this.tableOption()
+        this.isCreated = true
+      }
+    },
+    handleCancel () {
+      this.visible = false
+      this.confirmLoading = false
+    },
+    handleSelect () {
+      if (this.selectedRowKeys.length === 0) {
+        this.$message.warn('请至少选择一项信息')
+      } else {
+        this.confirmLoading = true
+        this.$emit('selected', this.record, this.selectedRowKeys, this.selectedRows)
+        this.confirmLoading = false
+        this.visible = false
+      }
+    },
+    mySelect (selectedRowKeys, selectedRows) {
+      if (this.type === 'radio') {
+        this.$refs.table.updateSelect(selectedRowKeys, selectedRows)
+        this.$refs.table.rowSelection.onChange(selectedRowKeys, selectedRows)
+      } else {
+        let mySelectedRowKeys
+        let mySelectedRows = this.selectedRows.filter(item => item.id !== selectedRowKeys[0])
+        if (this.selectedRowKeys.includes(selectedRowKeys[0])) {
+          mySelectedRowKeys = this.selectedRowKeys.filter(item => item !== selectedRowKeys[0])
+        } else {
+          mySelectedRowKeys = [...selectedRowKeys, ...this.selectedRowKeys]
+          mySelectedRows = [...mySelectedRows, ...selectedRows]
         }
+        this.$refs.table.updateSelect(mySelectedRowKeys, mySelectedRows)
+        this.$refs.table.rowSelection.onChange(mySelectedRowKeys, mySelectedRows)
+      }
     }
+  }
+}
 </script>