SbInfo.vue 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917
  1. <template>
  2. <div>
  3. <a-card :bordered="false" v-show="visible">
  4. <a-row :gutter="8" >
  5. <a-col :span="24">
  6. <div>
  7. <div class="table-page-search-wrapper">
  8. <a-form layout="inline">
  9. <a-row :gutter="48">
  10. <a-col :md="6" :sm="24">
  11. <a-form-item label="关键字">
  12. <a-input v-model.trim="queryParam.keyword" placeholder="设备编号"/>
  13. </a-form-item>
  14. </a-col>
  15. <a-col :md="6" :sm="24">
  16. <a-form-item label="车间位置">
  17. <a-select v-model="queryParam.positionId" placeholder="请选择">
  18. <a-select-option
  19. v-for="({id,name}) in sbPositionData"
  20. :key="id"
  21. :label="name"
  22. :value="id">{{ name }}
  23. </a-select-option>
  24. </a-select>
  25. </a-form-item>
  26. </a-col>
  27. <a-col :md="6" :sm="24">
  28. <a-form-item label="设备名称">
  29. <a-input v-model.trim="queryParam.name" placeholder="名称"/>
  30. </a-form-item>
  31. </a-col>
  32. <a-col :md="6" :sm="24">
  33. <a-form-item label="父位号">
  34. <a-input v-model.trim="queryParam.ppNo" placeholder="父位号"/>
  35. </a-form-item>
  36. </a-col>
  37. <a-col :md="6" :sm="24">
  38. <a-form-item label="设备位号">
  39. <a-input v-model.trim="queryParam.positionNo" placeholder="设备位号"/>
  40. </a-form-item>
  41. </a-col>
  42. <a-col :md="6" :sm="24">
  43. <a-form-item label="生产商">
  44. <a-input v-model.trim="queryParam.producerId" placeholder="生产商"/>
  45. </a-form-item>
  46. </a-col>
  47. <!-- <a-col :md="6" :sm="24">
  48. <a-form-item label="设备自编号">
  49. <a-input v-model="queryParam.zbh" placeholder="设备自编号"/>
  50. </a-form-item>
  51. </a-col>-->
  52. <a-col :md="6" :sm="24">
  53. <a-form-item label="设备等级">
  54. <a-select v-model="queryParam.level" placeholder="请选择">
  55. <a-select-option
  56. v-for="(label,value) in levelMap"
  57. :key="value"
  58. :label="label"
  59. :value="parseInt(value)">{{ label }}
  60. </a-select-option>
  61. </a-select>
  62. </a-form-item>
  63. </a-col>
  64. <!-- <a-col :md="6" :sm="24">
  65. <a-form-item label="自定义类型">
  66. <a-select v-model="queryParam.useType" placeholder="请选择">
  67. <a-select-option
  68. v-for="(label,value) in useTypeMap"
  69. :key="value"
  70. :label="label"
  71. :value="parseInt(value)">{{ label }}
  72. </a-select-option>
  73. </a-select>
  74. </a-form-item>
  75. </a-col>-->
  76. <a-col :md="6" :sm="24">
  77. <a-form-item label="检定日期范围">
  78. <a-range-picker v-model="dateRangeCheck" />
  79. </a-form-item>
  80. </a-col>
  81. <a-col :md="6" :sm="24">
  82. <a-form-item label="有效日期范围">
  83. <a-range-picker v-model="dateRange"/>
  84. </a-form-item>
  85. </a-col>
  86. <a-col :md="6" :sm="24">
  87. <a-form-item label="规格型号">
  88. <a-input v-model="queryParam.model" placeholder="规格型号"/>
  89. </a-form-item>
  90. </a-col>
  91. <a-col :md="6" :sm="24">
  92. <a-form-item label="设备类型">
  93. <a-tree-select
  94. style="width: 100%"
  95. :dropdownStyle="{ maxHeight: '400px', overflow: 'auto' }"
  96. :treeData="treeData"
  97. :treeNodeFilterProp="'title'"
  98. :showSearch="true"
  99. v-model="queryParam.typeId"
  100. placeholder="请选择"
  101. >
  102. </a-tree-select>
  103. </a-form-item>
  104. </a-col>
  105. <a-col :md="6" :sm="24">
  106. <a-form-item label="设备状态">
  107. <a-select v-model="queryParam.status" placeholder="请选择">
  108. <a-select-option
  109. v-for="(label,value) in statusMap"
  110. :key="value"
  111. :defaultValue="DictCache.VALUE.SB_INFO_STATUS.IN_USE"
  112. :label="label"
  113. :value="parseInt(value)">{{ label }}
  114. </a-select-option>
  115. </a-select>
  116. </a-form-item>
  117. </a-col>
  118. <a-col :md="6" :sm="24">
  119. <a-form-item label="主子设备">
  120. <a-select v-model="queryParam.isChild" placeholder="请选择">
  121. <a-select-option value="1">子设备</a-select-option>
  122. <a-select-option value="2">父设备</a-select-option>
  123. <a-select-option value="3">普通设备</a-select-option>
  124. </a-select>
  125. </a-form-item>
  126. </a-col>
  127. <a-col :md="6" :sm="24">
  128. <a-form-item label="电力线路">
  129. <a-select v-model="queryParam.baoyangTimes" placeholder="请选择">
  130. <a-select-option
  131. v-for="(label,value) in lineMap"
  132. :key="value"
  133. :label="label"
  134. :value="parseInt(value)">{{ label }}
  135. </a-select-option>
  136. </a-select>
  137. </a-form-item>
  138. </a-col>
  139. <a-col :md="6 || 24" :sm="24">
  140. <span class="table-page-search-submitButtons">
  141. <a-button type="primary" @click="handleOk">查询</a-button>
  142. <a-button style="margin-left: 8px" @click="resetSearchForm">重置</a-button>
  143. </span>
  144. </a-col>
  145. </a-row>
  146. </a-form>
  147. </div>
  148. <div class="table-operator" style="margin-bottom: 8px;">
  149. <a-button v-if="$auth('sb-infos-add')" type="primary" icon="plus" @click="handleAdd">新增</a-button>
  150. <a-button style="margin-left: 8px" v-if="$auth('sb-infos-export')" type="primary" icon="download" @click="doExport">导出</a-button>
  151. <!-- <a-button style="margin-left:8px;" type="primary" @click="doImport">
  152. <a-icon type="upload"/>
  153. 新增导入
  154. </a-button>-->
  155. <a-button style="margin-left:8px;" type="primary" @click="doImportStandard">
  156. <a-icon type="upload"/>
  157. 导入
  158. </a-button>
  159. <a-button style="margin-left:8px;" type="primary" @click="doImportForUpdate">
  160. <a-icon type="upload"/>
  161. 修改导入
  162. </a-button>
  163. <a-button style="margin-left: 8px" type="primary" icon="printer" @click="handlePrintBatch()">批量打印</a-button>
  164. <!-- <a-button style="margin-left: 8px" type="primary" icon="reload" @click="handleMeasureBatch()">批量检定</a-button> -->
  165. <a-button style="margin-left: 8px" v-if="$auth('sb-infos-generate-code-all')" :loading="confirmLoading" type="primary" @click="batchGenerate()">重新生成二维码</a-button>
  166. <a-dropdown v-action:edit v-if="selectedRowKeys.length > 0 && $auth('sb-infos-del')">
  167. <a-menu slot="overlay">
  168. <a-popconfirm title="是否要删除所选数据?" @confirm="batchDelete()">
  169. <a-menu-item key="1"><a-icon type="delete" /><a>删除</a></a-menu-item>
  170. </a-popconfirm>
  171. <a-popconfirm v-if="isMeasure===1" @visibleChange="batchIncorrect()">
  172. <a-menu-item key="2"><my-icon type="icon-pandian" /><a>检定</a></a-menu-item>
  173. </a-popconfirm>
  174. <a-popconfirm v-if="isMeasure===1" @visibleChange="batchIncorrectInStore()">
  175. <a-menu-item key="3"><my-icon type="icon-pandian" /><a>入库</a></a-menu-item>
  176. </a-popconfirm>
  177. <a-popconfirm :visible="false" @visibleChange="batchLocation()">
  178. <a-menu-item key="4"><my-icon type="icon-pandian" /><a>设备位号</a></a-menu-item>
  179. </a-popconfirm>
  180. </a-menu>
  181. <a-button style="margin-left: 8px">
  182. 批量操作 <a-icon type="down" />
  183. </a-button>
  184. </a-dropdown>
  185. </div>
  186. <s-table
  187. ref="table"
  188. @expand="onExpand"
  189. size="default"
  190. rowKey="id"
  191. :widthSpace="true"
  192. :columns="columns"
  193. :data="loadData"
  194. :alert="options.alert"
  195. :rowSelection="options.rowSelection"
  196. :scroll="{x: 1500, y: BaseTool.Constant.scrollY}"
  197. showPagination="auto"
  198. >
  199. <template #positionNo="text,record">
  200. <a @click="showChangeLog(record)">{{ text }}</a>
  201. </template>
  202. <span slot="action" slot-scope="record">
  203. <template>
  204. <div>
  205. <!--<a-divider type="vertical" />
  206. <a-popconfirm v-if="$auth('sb-infos-del')" title="是否要删除该设备?" @confirm="batchDelete(record.id)">
  207. <a>删除</a>
  208. </a-popconfirm>
  209. <a-divider type="vertical" />
  210. <a @click="handleCopy(record)">复制</a>-->
  211. <a-dropdown>
  212. <a-menu slot="overlay">
  213. <a-menu-item key="0">
  214. <a @click="handleView(record)">查看</a>
  215. </a-menu-item>
  216. <a-menu-item key="1">
  217. <a v-if="$auth('sb-infos-edit')" @click="handleEdit(record)">修改</a>
  218. </a-menu-item>
  219. <a-menu-item key="2" v-if="isMeasure===1" >
  220. <a @click="batchIncorrect(record)">检定</a>
  221. </a-menu-item>
  222. <a-menu-item key="3" v-if="isMeasure===1" >
  223. <a @click="batchIncorrectInStore(record)">入库</a>
  224. </a-menu-item>
  225. <a-menu-item v-if="record.status != 2" key="2">
  226. <a-popconfirm title="是否要启用该设备?" @confirm="handleStart(record)">
  227. <a>启用</a>
  228. </a-popconfirm>
  229. </a-menu-item>
  230. <a-menu-item v-if="record.status != 7" key="3">
  231. <a-popconfirm title="是否要停用该设备?" @confirm="handleStop(record)">
  232. <a>停用</a>
  233. </a-popconfirm>
  234. </a-menu-item>
  235. <a-menu-item key="10">
  236. <a v-if="$auth('sb-infos-edit')" @click="handleCopy(record)">复制</a>
  237. </a-menu-item>
  238. <a-menu-item key="4">
  239. <a @click="handlePrint(record)">打印</a>
  240. </a-menu-item>
  241. </a-menu>
  242. <a-button> 操作 <a-icon type="down" /> </a-button>
  243. </a-dropdown>
  244. </div>
  245. </template>
  246. </span>
  247. <span slot="status" slot-scope="text">
  248. <badge
  249. :status="DictCache.COLOR.SB_INFO_STATUS[text]"
  250. :text="statusMap[text]" />
  251. </span>
  252. <span slot="measureStatus" slot-scope="text">
  253. <badge
  254. :status="DictCache.COLOR.SB_MEASURE_STATUS[text]"
  255. :text="yesNoMap[text]" />
  256. </span>
  257. </s-table>
  258. </div>
  259. </a-col>
  260. </a-row>
  261. </a-card>
  262. <base-form ref="baseModal" :parent-id="queryParam.parentId" :parent-name="queryParam.parentName" @ok="handleOk"/>
  263. <base-form-status-log ref="baseModalStatusLog" @ok="handleOk"/>
  264. <detail ref="detailModal" @ok="handleOk"/>
  265. <download-modal ref="downloadModal"/>
  266. <preview-modal ref="previewModal"/>
  267. <import-form-add ref="importModal" @ok="handleOk"/>
  268. <import-form-add-standard ref="importModalStandard" @ok="handleOk"/>
  269. <import-form-update ref="importModalUpdate" @ok="handleOk"/>
  270. <print-sb-code ref="printSbCode"/>
  271. <print-in-sb-info-batch ref="printInSbInfoBatch" @ok="handleOk"/>
  272. <detail-sb-measure ref="detailSbMeasureModal" @ok="handleOk"/>
  273. <base-form-measure ref="baseModalMeasure" @ok="handleOk"/>
  274. <base-form-measure-in-store ref="baseModalMeasureInStore" @ok="handleOk"/>
  275. <base-form-location ref="baseFormLocation" @ok="handleOk" />
  276. <SbChangeLogSelectModal ref="sbChangeRecordSelectModal" @ok="handleOk" />
  277. </div>
  278. </template>
  279. <script>
  280. import { STable, Ellipsis } from '@/components'
  281. import BaseForm from './modules/BaseForm'
  282. import DetailSbMeasure from '@/views/sb/measurelog/modules/DetailSbCheckBatch'
  283. import BaseFormStatusLog from '@/views/sb/status-log/modules/BaseForm'
  284. import Detail from './modules/Detail'
  285. import BaseFormMeasure from './modules/BaseFormMeasure'
  286. import BaseFormMeasureInStore from './modules/BaseFormMeasureInStore'
  287. import BaseFormLocation from './modules/BaseFormLocation'
  288. import DownloadModal from '@/views/download/DownloadModal'
  289. import PreviewModal from '@/views/preview/PreviewModal'
  290. import { getSbInfoPage, deleteSbInfos, querySbInfo, fetchSbInfo, fetchSbInfos, exportSbInfo, batchLocationList } from '@/api/sb/info'
  291. import { queryDept } from '@/api/upms/dept'
  292. import { generateSbCodeAll } from '@/api/upms/code'
  293. import { fetchSbTypeTree } from '@/api/sb/type'
  294. import ImportFormAdd from './modules/ImportFormAdd'
  295. import ImportFormAddStandard from './modules/ImportFormAddStandard'
  296. import ImportFormUpdate from './modules/ImportFormUpdate'
  297. import PrintSbCode from '@/views/sb/info/modules/PrintSbCode'
  298. import PrintInSbInfoBatch from '@/views/sb/info/modules/PrintInSbInfoBatch'
  299. import { querySbPosition } from '@/api/sb/position'
  300. import SbChangeLogSelectModal from '@/views/sb/change-log/modules/SbChangeLogSelectModal'
  301. export default {
  302. name: 'SbInfoList',
  303. components: {
  304. STable,
  305. Ellipsis,
  306. BaseForm,
  307. DetailSbMeasure,
  308. Detail,
  309. DownloadModal,
  310. PreviewModal,
  311. PrintSbCode,
  312. ImportFormAdd,
  313. ImportFormAddStandard,
  314. ImportFormUpdate,
  315. PrintInSbInfoBatch,
  316. BaseFormMeasure,
  317. BaseFormMeasureInStore,
  318. BaseFormLocation,
  319. BaseFormStatusLog,
  320. SbChangeLogSelectModal
  321. },
  322. props: {
  323. filter: {
  324. type: Number,
  325. default: -1
  326. },
  327. useType: {
  328. type: Number,
  329. default: null
  330. },
  331. correctType: {
  332. type: Number,
  333. default: 1
  334. },
  335. measureStatus: {
  336. type: Number,
  337. default: null
  338. },
  339. isMeasure: {
  340. type: Number,
  341. default: null
  342. },
  343. isSelf: {
  344. type: Number,
  345. default: null
  346. },
  347. status: {
  348. type: Number,
  349. default: null
  350. }
  351. },
  352. data () {
  353. return {
  354. // 查询参数
  355. queryParam: {
  356. filter: this.filter,
  357. useType: this.useType,
  358. measureStatus: this.measureStatus,
  359. isMeasure: this.isMeasure,
  360. isSelf: this.isSelf,
  361. id: this.$route.query.id,
  362. typeId: this.$route.query.typeId,
  363. status: this.$route.query.status || this.status
  364. },
  365. depreciationTypeMap: {},
  366. visible: true,
  367. dateRange: [],
  368. dateRangeCheck: [],
  369. sbPositionData: [],
  370. levelMap: {},
  371. lineMap: {},
  372. unitMap: {},
  373. areaList: {},
  374. companyList: {},
  375. projectList: {},
  376. isChildMap: {},
  377. isShowMap: {},
  378. deptList: {},
  379. confirmLoading: false,
  380. useTypeMap: {},
  381. statusMap: {},
  382. yesNoMap: {},
  383. expandedKeys: [],
  384. selectedKeys: [],
  385. sourceTypeMap: {},
  386. treeData: [],
  387. // 表头
  388. columns: [
  389. /* {
  390. title: '序号',
  391. dataIndex: 'index',
  392. width: 100,
  393. checked: true,
  394. customRender: (text, record, index) => {
  395. return `${(this.$refs.table.localPagination.current - 1) * this.$refs.table.localPagination.pageSize + index + 1}`
  396. }
  397. }, */
  398. {
  399. title: '设备位置',
  400. checked: true,
  401. width: 200,
  402. dataIndex: 'positionName'
  403. },
  404. {
  405. title: '设备名称',
  406. checked: true,
  407. width: 200,
  408. dataIndex: 'name'
  409. },
  410. {
  411. title: '设备位号',
  412. dataIndex: 'positionNo',
  413. width: 150,
  414. scopedSlots: { customRender: 'positionNo' },
  415. checked: true
  416. },
  417. {
  418. title: '父位号',
  419. dataIndex: 'ppNo',
  420. width: 120,
  421. checked: true
  422. },
  423. {
  424. title: '设备类型',
  425. checked: true,
  426. dataIndex: 'type',
  427. width: 150,
  428. customRender: (text, record, index) => {
  429. return record.typeName
  430. }
  431. },
  432. /* {
  433. title: '设备等级',
  434. checked: true,
  435. dataIndex: 'level',
  436. width: 120,
  437. customRender: (text, record, index) => {
  438. return this.BaseTool.Object.getField(this.levelMap, text)
  439. }
  440. }, */
  441. {
  442. title: '规格型号',
  443. dataIndex: 'model',
  444. width: 150,
  445. checked: true
  446. },
  447. {
  448. title: '设备编号',
  449. dataIndex: 'no',
  450. width: 150,
  451. checked: true
  452. },
  453. {
  454. title: '巡检序号',
  455. dataIndex: 'sortNum',
  456. width: 120,
  457. checked: true
  458. },
  459. /* {
  460. title: '自定义类型',
  461. checked: true,
  462. dataIndex: 'useType',
  463. width: 150,
  464. customRender: (text, record, index) => {
  465. return this.BaseTool.Object.getField(this.useTypeMap, text)
  466. }
  467. }, */
  468. /* {
  469. title: '使用机台',
  470. checked: true,
  471. width: 200,
  472. dataIndex: 'saveUserName'
  473. },
  474. {
  475. title: '生产商',
  476. dataIndex: 'producerId',
  477. width: 120,
  478. checked: true
  479. }, */
  480. /* {
  481. title: '大小尺寸',
  482. dataIndex: 'zz',
  483. width: 120,
  484. checked: true
  485. }, */
  486. {
  487. title: '出厂编号',
  488. dataIndex: 'zzh',
  489. width: 120,
  490. checked: true
  491. },
  492. /* {
  493. title: '是否显示',
  494. dataIndex: 'isShow',
  495. width: 120,
  496. checked: true,
  497. customRender: (text, record, index) => {
  498. return this.BaseTool.Object.getField(this.isShowMap, text)
  499. }
  500. }, */
  501. /* {
  502. title: '是否子设备',
  503. dataIndex: 'isChild',
  504. width: 120,
  505. checked: true,
  506. customRender: (text, record, index) => {
  507. return this.BaseTool.Object.getField(this.isChildMap, text)
  508. }
  509. }, */
  510. /* {
  511. title: '资产编号',
  512. dataIndex: 'financingNo',
  513. width: 120,
  514. checked: true
  515. },
  516. {
  517. title: '设备原值',
  518. dataIndex: 'initialValue',
  519. width: 100,
  520. checked: true,
  521. customRender: (text, record, index) => {
  522. return this.BaseTool.Amount.formatter(text)
  523. }
  524. },
  525. {
  526. title: '购置日期',
  527. dataIndex: 'buyDate',
  528. width: 120,
  529. checked: true
  530. },
  531. {
  532. title: '投用日期',
  533. dataIndex: 'startDate',
  534. width: 120,
  535. checked: true
  536. }, */
  537. /* {
  538. title: '检定日期',
  539. dataIndex: 'checkDate',
  540. width: 150,
  541. checked: true
  542. },
  543. {
  544. title: '检定周期',
  545. dataIndex: 'checkPeriod',
  546. width: 100,
  547. checked: true,
  548. customRender: (text, record, index) => {
  549. if (record.nextCheckDate == null) {
  550. return '未知'
  551. } else {
  552. return text + '月'
  553. }
  554. }
  555. }, */
  556. {
  557. title: '检定有效期',
  558. dataIndex: 'nextCheckDate',
  559. fixed: 'right',
  560. width: 150,
  561. checked: true
  562. },
  563. /* {
  564. title: '检定截止',
  565. dataIndex: 'restDay',
  566. width: 100,
  567. checked: true,
  568. customRender: (text, record, index) => {
  569. if (record.nextCheckDate == null) {
  570. return '未知'
  571. } else {
  572. return this.BaseTool.Date.getCountBetween(new Date(), record.nextCheckDate, 1) + '天'
  573. }
  574. }
  575. }, */
  576. {
  577. title: '状态',
  578. checked: true,
  579. dataIndex: 'status',
  580. fixed: 'right',
  581. width: 100,
  582. scopedSlots: { customRender: 'status' }
  583. },
  584. {
  585. title: '检定状态',
  586. checked: true,
  587. dataIndex: 'measureStatus',
  588. fixed: 'right',
  589. width: 100,
  590. scopedSlots: { customRender: 'measureStatus' }
  591. },
  592. {
  593. title: '操作',
  594. key: 'action',
  595. checked: true,
  596. fixed: 'right',
  597. align: 'center',
  598. width: '120',
  599. scopedSlots: { customRender: 'action' }
  600. }
  601. ],
  602. // 加载数据方法 必须为 Promise 对象
  603. loadData: parameter => {
  604. parameter = {
  605. ...parameter,
  606. ...this.queryParam,
  607. dataScope: {
  608. sortBy: 'asc',
  609. sortName: 'no'
  610. }
  611. }
  612. this.selectedRowKeys = []
  613. return getSbInfoPage(Object.assign(parameter, this.queryParam))
  614. .then(res => {
  615. return res.data
  616. })
  617. },
  618. selectedRowKeys: [],
  619. selectedRows: [],
  620. options: {
  621. alert: { show: true, clear: () => { this.selectedRowKeys = [] } },
  622. rowSelection: {
  623. selectedRowKeys: this.selectedRowKeys,
  624. onChange: this.onSelectChange
  625. }
  626. },
  627. optionAlertShow: false
  628. }
  629. },
  630. created () {
  631. console.log('this.$route.query.parentId: ' + this.$route.query.parentId)
  632. this.queryParam.parentId = this.$route.query.parentId
  633. this.queryParam.parentName = this.$route.query.parentName
  634. this.tableOption()
  635. this.depreciationTypeMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SBINFO_DEPRECIATIONTYPE)
  636. this.levelMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SBINFO_LEVEL)
  637. this.statusMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SB_INFO_STATUS)
  638. this.unitMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SBINFO_UNIT)
  639. this.sourceTypeMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SBTYPE_SOURCETYPE)
  640. this.useTypeMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SB_USE_TYPE)
  641. this.isChildMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SB_IS_CHILD)
  642. this.isShowMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SB_IS_SHOW)
  643. this.lineMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.REMOTE_LINE)
  644. this.yesNoMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.YES_NO)
  645. querySbPosition().then(res => {
  646. this.sbPositionData = res.data
  647. })
  648. },
  649. methods: {
  650. tableOption () {
  651. this.setTree()
  652. if (!this.optionAlertShow) {
  653. this.options = {
  654. alert: { show: true, clear: () => { this.selectedRowKeys = [] } },
  655. rowSelection: {
  656. selectedRowKeys: this.selectedRowKeys,
  657. onChange: this.onSelectChange,
  658. getCheckboxProps: record => ({
  659. props: {
  660. disabled: false,
  661. name: record.id
  662. }
  663. })
  664. }
  665. }
  666. this.optionAlertShow = true
  667. } else {
  668. this.options = {
  669. alert: false,
  670. rowSelection: null
  671. }
  672. this.optionAlertShow = false
  673. }
  674. },
  675. batchDelete (id) {
  676. let ids = []
  677. if (this.BaseTool.String.isBlank(id)) {
  678. const length = this.selectedRows.length
  679. if (length === 0) {
  680. this.$message.info('请选择要删除的记录')
  681. return
  682. }
  683. ids = this.selectedRows.map(item => item.id)
  684. } else {
  685. ids = [id]
  686. }
  687. deleteSbInfos(ids).then(res => {
  688. this.$message.info('删除成功')
  689. this.handleOk()
  690. this.$refs.table.clearSelected()
  691. })
  692. },
  693. batchGenerate () {
  694. this.confirmLoading = true
  695. this.$message.info('正在生成请稍后')
  696. generateSbCodeAll().then(res => {
  697. this.confirmLoading = false
  698. this.$message.info('生成成功')
  699. this.handleOk()
  700. this.$refs.table.clearSelected()
  701. })
  702. },
  703. handleEdit (record) {
  704. fetchSbInfo({ id: record.id }).then(res => {
  705. this.visible = false
  706. const modal = this.$refs.baseModal
  707. modal.base(res.data)
  708. })
  709. },
  710. handlePrint (record) {
  711. this.visible = false
  712. fetchSbInfo({ id: record.id }).then(res => {
  713. const modal = this.$refs.printInSbInfoBatch
  714. modal.base([res.data])
  715. })
  716. },
  717. batchLocation () {
  718. let ids = []
  719. const length = this.selectedRows.length
  720. if (length === 0) {
  721. this.$message.info('请选择设备')
  722. return
  723. }
  724. ids = this.selectedRows.map(item => item.id)
  725. console.log(ids)
  726. batchLocationList({ ids }).then(res => {
  727. this.visible = false
  728. const modal = this.$refs.baseFormLocation
  729. modal.base(res.data)
  730. })
  731. },
  732. batchIncorrect (id) {
  733. let ids = []
  734. if (this.BaseTool.String.isBlank(id)) {
  735. const length = this.selectedRows.length
  736. if (length === 0) {
  737. this.$message.info('请选择要填报的设备')
  738. return
  739. }
  740. ids = this.selectedRows
  741. } else {
  742. ids = [id]
  743. }
  744. this.visible = false
  745. const modal = this.$refs.baseModalMeasure
  746. modal.base(ids, this.correctType)
  747. },
  748. batchIncorrectInStore (id) {
  749. let ids = []
  750. if (this.BaseTool.String.isBlank(id)) {
  751. const length = this.selectedRows.length
  752. if (length === 0) {
  753. this.$message.info('请选择要填报的设备')
  754. return
  755. }
  756. ids = this.selectedRows
  757. } else {
  758. ids = [id]
  759. }
  760. this.visible = false
  761. const modal = this.$refs.baseModalMeasureInStore
  762. modal.base(ids, this.correctType)
  763. },
  764. handleMeasureBatch () {
  765. const modal = this.$refs.detailSbMeasureModal
  766. modal.base()
  767. },
  768. handlePrintBatch () {
  769. this.visible = false
  770. let ids = []
  771. const length = this.selectedRows.length
  772. if (length === 0) {
  773. this.$message.info('请选择要打印的设备')
  774. return
  775. }
  776. ids = this.selectedRows.map(item => item.id)
  777. fetchSbInfos(ids).then(res => {
  778. const modal = this.$refs.printInSbInfoBatch
  779. modal.base(res.data)
  780. })
  781. },
  782. handleStart (record) {
  783. const modal = this.$refs.baseModalStatusLog
  784. modal.base(null, {
  785. sbId: record.id,
  786. sbNo: record.no,
  787. changeUserId: this.$store.getters.userInfo.userId,
  788. actualUser: this.$store.getters.userInfo.realName,
  789. preStatus: record.status,
  790. afterStatus: this.DictCache.VALUE.SB_INFO_STATUS.IN_USE
  791. })
  792. },
  793. handleStop (record) {
  794. const modal = this.$refs.baseModalStatusLog
  795. modal.base(null, {
  796. sbId: record.id,
  797. sbNo: record.no,
  798. changeUserId: this.$store.getters.userInfo.userId,
  799. actualUser: this.$store.getters.userInfo.realName,
  800. preStatus: record.status,
  801. afterStatus: this.DictCache.VALUE.SB_INFO_STATUS.IN_STOP
  802. })
  803. },
  804. handleAdd () {
  805. this.visible = false
  806. this.$refs.baseModal.base()
  807. },
  808. handleView (record) {
  809. fetchSbInfo({ id: record.id }).then(res => {
  810. this.visible = false
  811. const modal = this.$refs.detailModal
  812. modal.base(res.data)
  813. })
  814. },
  815. showChangeLog (record) {
  816. console.log(record)
  817. console.log(this.$refs)
  818. this.$refs.sbChangeRecordSelectModal.base({}, { sbId: record.id })
  819. },
  820. handleCopy (record) {
  821. this.visible = false
  822. fetchSbInfo({ id: record.id }).then(res => {
  823. const modal = this.$refs.baseModal
  824. modal.base(res.data, 1)
  825. })
  826. },
  827. handleOk () {
  828. this.visible = true
  829. this.setTree()
  830. if (this.dateRange != null) {
  831. this.queryParam.nextCheckDateStart = this.dateRange[0]
  832. this.queryParam.nextCheckDateEnd = this.dateRange[1]
  833. this.queryParam.nextCheckDateStart = this.queryParam.nextCheckDateStart ? this.queryParam.nextCheckDateStart.format(this.BaseTool.Date.PICKER_NORM_DATE_PATTERN) : null
  834. this.queryParam.nextCheckDateEnd = this.queryParam.nextCheckDateEnd ? this.queryParam.nextCheckDateEnd.format(this.BaseTool.Date.PICKER_NORM_DATE_PATTERN) : null
  835. }
  836. if (this.dateRangeCheck != null) {
  837. this.queryParam.checkDateStart = this.dateRangeCheck[0]
  838. this.queryParam.checkDateEnd = this.dateRangeCheck[1]
  839. this.queryParam.checkDateStart = this.queryParam.checkDateStart ? this.queryParam.checkDateStart.format(this.BaseTool.Date.PICKER_NORM_DATE_PATTERN) : null
  840. this.queryParam.checkDateEnd = this.queryParam.checkDateEnd ? this.queryParam.checkDateEnd.format(this.BaseTool.Date.PICKER_NORM_DATE_PATTERN) : null
  841. }
  842. this.$refs.table.refresh()
  843. },
  844. onSelectChange (selectedRowKeys, selectedRows) {
  845. this.selectedRowKeys = selectedRowKeys
  846. this.selectedRows = selectedRows
  847. },
  848. resetSearchForm () {
  849. this.queryParam = {
  850. filter: this.filter,
  851. useType: this.useType,
  852. measureStatus: this.measureStatus,
  853. isMeasure: this.isMeasure,
  854. isSelf: this.isSelf,
  855. id: this.$route.query.id,
  856. typeId: this.$route.query.typeId,
  857. status: this.$route.query.status || this.status
  858. }
  859. this.visible = true
  860. this.$refs.table.refresh(true)
  861. },
  862. doExport () {
  863. const parameter = {
  864. ...this.queryParam,
  865. sbIds: this.selectedRowKeys,
  866. dataScope: {
  867. sortBy: 'asc',
  868. sortName: 'no'
  869. }
  870. }
  871. exportSbInfo(parameter).then(file => {
  872. this.BaseTool.UPLOAD.downLoadExportExcel(file)
  873. })
  874. },
  875. setTree (record = {}) {
  876. queryDept({ nature: this.DictCache.VALUE.SYS_DEPT_NATURE.JITUAN }).then(res => {
  877. this.areaList = res.data
  878. })
  879. fetchSbTypeTree().then(res => {
  880. this.treeData = res.data
  881. })
  882. },
  883. onSelect: function (selectedKeys, info) {
  884. this.selectedKeys = selectedKeys
  885. this.queryParam.typeId = selectedKeys.length > 0 ? selectedKeys[0] : ''
  886. this.$refs.table.refresh(true)
  887. },
  888. onExpand (expanded, record) { // expanded判断展开or收缩操作,record当前行数据
  889. console.log(expanded)
  890. if (expanded) {
  891. querySbInfo({ positionNo: record.positionNo }).then(res => {
  892. record.children = res.data
  893. })
  894. }
  895. },
  896. doImport () {
  897. this.$refs.importModal.base(null, null)
  898. },
  899. doImportStandard () {
  900. // this.$refs.importModalStandard.base()
  901. this.$refs.importModalUpdate.base(null, 1)
  902. },
  903. doImportForUpdate () {
  904. this.$refs.importModalUpdate.base(null, 2)
  905. }
  906. }
  907. }
  908. </script>