index.vue 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989
  1. <!--
  2. * @Author: tengmingxue 1473375109@qq.com
  3. * @Date: 2022-11-02 16:33:00
  4. * @LastEditors: zjz
  5. * @LastEditTime: 2023-12-25 14:23:27
  6. * @FilePath: \dcWaterService\src\views\dcSystem\assayWaterQuality\assayManage\assayResult\index.vue
  7. * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  8. -->
  9. <template>
  10. <div class="assayResult-container">
  11. <!-- 化验结果 -->
  12. <!-- 头部查询栏 --开始-->
  13. <el-row>
  14. <el-form
  15. style="
  16. display: flex;
  17. flex-wrap: wrap;
  18. justify-content: flex-start;
  19. align-items: flex-start;
  20. "
  21. >
  22. <el-form-item label="化验结果名称:" style="width: 300px; display: inline-block; margin-bottom: 6px">
  23. <el-input v-model="assayResultName" size="mini" placeholder="请输入化验结果名称" style="width: 200px" clearable />
  24. </el-form-item>
  25. <el-form-item label="化验时间:" prop="times" style="display: inline-block; width: 440px; margin-bottom: 6px">
  26. <el-date-picker
  27. v-model="times"
  28. size="mini"
  29. type="daterange"
  30. align="right"
  31. unlink-panels
  32. range-separator="至"
  33. start-placeholder="开始日期"
  34. end-placeholder="结束日期"
  35. format="yyyy-MM-dd"
  36. value-format="yyyy-MM-dd"
  37. />
  38. </el-form-item>
  39. <el-form-item style="display: inline-block; width: 300px; margin-bottom: 6px">
  40. <el-button size="mini" type="primary" @click="queryAssayResult">查询</el-button>
  41. <el-button size="mini" type="primary" @click="addAssayResult">新增</el-button>
  42. <el-button size="mini" type="primary" @click="exportData">导出</el-button>
  43. </el-form-item>
  44. </el-form>
  45. </el-row>
  46. <!-- 头部查询栏--结束 -->
  47. <!-- 正文表格 -->
  48. <div style="height: calc(100% - 35px)">
  49. <!-- 正文表格上面部分(不含下面翻页) -->
  50. <el-table
  51. id="siteMonitor"
  52. v-loading="loading"
  53. class="mapTable"
  54. :data="assayResultData"
  55. :total="pageInfo.total"
  56. border
  57. height="calc(100% - 40px)"
  58. >
  59. <!-- 列 -->
  60. <el-table-column
  61. type="index"
  62. align="center"
  63. width="50"
  64. label="序号"
  65. />
  66. <el-table-column
  67. prop="assayResultNo"
  68. align="center"
  69. label="化验结果编号"
  70. show-overflow-tooltip
  71. />
  72. <el-table-column
  73. prop="assayResultName"
  74. align="center"
  75. label="化验结果名称"
  76. show-overflow-tooltip
  77. />
  78. <el-table-column
  79. prop="assayConfigName"
  80. align="center"
  81. label="化验配置项"
  82. show-overflow-tooltip
  83. />
  84. <el-table-column
  85. prop="collectNo"
  86. align="center"
  87. label="水样编号"
  88. show-overflow-tooltip
  89. />
  90. <el-table-column
  91. prop="createUserName"
  92. align="center"
  93. label="创建人"
  94. show-overflow-tooltip
  95. />
  96. <el-table-column
  97. prop="createTime"
  98. align="center"
  99. label="创建时间"
  100. show-overflow-tooltip
  101. />
  102. <el-table-column
  103. prop="remark"
  104. align="center"
  105. label="描述"
  106. show-overflow-tooltip
  107. />
  108. <!-- 正文表格右边 -->
  109. <el-table-column label="操作" width="160" align="center">
  110. <template slot-scope="scope">
  111. <el-button type="text" icon="el-icon-document" title="详情" @click="showInfo(scope.row)" />
  112. <el-button type="text" icon="el-icon-edit" title="修改" @click="showYearInfo1(scope.row)" />
  113. <el-button
  114. type="text"
  115. style="color: red"
  116. icon="el-icon-delete"
  117. title="删除"
  118. @click="deleteAssayResult(scope.row)"
  119. />
  120. </template>
  121. </el-table-column>
  122. </el-table>
  123. <!-- 正文表格下面页数部分 --开始-->
  124. <el-row style="margin-top: 0px">
  125. <el-col :span="24">
  126. <el-pagination
  127. ref="pagination"
  128. small
  129. layout="total, sizes, prev, pager, next, jumper"
  130. :pager-count="5"
  131. :current-page="pageInfo.current"
  132. :page-sizes="[40, 80, 120, 200]"
  133. style="margin-top: 4px"
  134. :page-size="pageInfo.size"
  135. :total="pageInfo.total"
  136. @size-change="handleSizeChange"
  137. @current-change="handleCurrentChange"
  138. />
  139. </el-col>
  140. </el-row>
  141. </div>
  142. <!-- 正文表格下面页数部分 --结束 -->
  143. <!-- 弹出框 -->
  144. <el-dialog
  145. v-show="dialogVisible"
  146. v-dialogDrag
  147. top="1vh"
  148. :title="dialogTitle"
  149. :visible.sync="dialogVisible"
  150. width="90%"
  151. >
  152. <div v-if="infoDialog" id="resultAss" v-loading="dialogLoading" style="width: 100%; height: auto">
  153. <el-form
  154. ref="ruleForm"
  155. :model="ruleForm"
  156. :rules="rules"
  157. label-width="150px"
  158. >
  159. <el-row type="flex" justify="space-between" :gutter="10">
  160. <el-col :span="12">
  161. <el-form-item label="化验结果名称:" prop="assayResultName">
  162. <el-input
  163. v-model="ruleForm.assayResultName"
  164. placeholder="请输入化验结果名称"
  165. size="small"
  166. :disabled="editState"
  167. />
  168. </el-form-item>
  169. </el-col>
  170. <el-col :span="12">
  171. <el-form-item label="化验项配置:" prop="assayConfigId">
  172. <el-select v-model="ruleForm.assayConfigId" placeholder="请选择化验项配置" size="small" style="width: 100%;" :disabled="editState" @change="choiceAssayConfig">
  173. <el-option v-for="(item, index) in assayDicData" :key="index" :label="item.assayConfigName" :value="item.id" />
  174. </el-select>
  175. </el-form-item>
  176. </el-col>
  177. </el-row>
  178. <el-row type="flex" justify="space-between" :gutter="10">
  179. <el-col :span="24">
  180. <el-form-item label="描述:" prop="remark">
  181. <el-input
  182. v-model="ruleForm.remark"
  183. type="textarea"
  184. :row="2"
  185. placeholder="请输入描述"
  186. size="small"
  187. :disabled="editState"
  188. />
  189. </el-form-item>
  190. </el-col>
  191. </el-row>
  192. </el-form>
  193. <!-- 展示化验项配置里面的详情 -->
  194. <!-- <div style="width: 100%; height: auto" > -->
  195. <div style="width: 100%; height: calc(100vh - 280px)">
  196. <!-- 正文表格上面部分(不含下面翻页) -->
  197. <el-table
  198. id="siteMonitor"
  199. ref="tableData"
  200. v-loading="loading"
  201. highlight-current-row
  202. class="mapTable"
  203. :data="tableData"
  204. border
  205. height="calc(100% - 10px)"
  206. @header-click="eventClick"
  207. @row-dblclick="rowDblclick"
  208. >
  209. <template slot="empty">
  210. <img src="@/assets/icon/null.png" alt="">
  211. <p class="empty-p">暂无数据</p>
  212. </template>
  213. <!-- 列 -->
  214. <el-table-column v-if="column.length" align="center" label="序号" type="index" show-overflow-tooltip />
  215. <el-table-column v-if="column.length" prop="assayTime" align="center" label="化验时间" width="100" show-overflow-tooltip />
  216. <el-table-column
  217. v-for="(item, index) in column"
  218. :key="index"
  219. :prop="item.prop"
  220. align="center"
  221. :label="item.label"
  222. :render-header="addRedStar"
  223. show-overflow-tooltip
  224. >
  225. <template slot-scope="{row}">
  226. <el-input v-if="row.isEdit" v-model="row[item.prop]" size="small" :disabled="editState" placeholder="请输入化验值" />
  227. <span v-else>{{ row[item.prop] }}</span>
  228. </template>
  229. </el-table-column>
  230. </el-table>
  231. </div>
  232. </div>
  233. <ReturnPdf
  234. v-else-if="printDialog"
  235. ref="ruleForm"
  236. :data="pdfData"
  237. />
  238. <!-- 弹出的详情框右下角的确认取消 -->
  239. <div slot="footer" class="dialog-footer">
  240. <!-- <el-button v-if="btnState3" v-loading="dialogLoading" type="primary" size="mini" @click="exportResult">导出</el-button> -->
  241. <el-button v-loading="dialogLoading" size="mini" @click="dialogVisible = false">取 消</el-button>
  242. <el-button v-if="btnState1" v-loading="dialogLoading" type="primary" size="mini" @click="commit">确定</el-button>
  243. <el-button v-if="btnState2" v-loading="dialogLoading" type="primary" size="mini" @click="upData">修改</el-button>
  244. <!-- <el-button v-if="btnState4" v-loading="dialogLoading" type="primary" size="mini" @click="submitForm">打印</el-button> -->
  245. </div>
  246. </el-dialog>
  247. <!-- 弹出框结束 -->
  248. </div>
  249. </template>
  250. <script>
  251. import {
  252. getAssayResultPage,
  253. addAssayResult,
  254. editAssayResult,
  255. deleteAssayResultIds,
  256. getassayConfigById,
  257. getNoCollectRecordList,
  258. getassayConfigPage,
  259. getCollectRecordPage,
  260. getSampleplacedPage,
  261. addCollectRecord
  262. } from '@/api/dcApi/assayMngApi'
  263. import ReturnPdf from '../../../common/ReturnPdf'
  264. import { validyyyyMMdd } from '@/utils/validate'
  265. import XLSX from 'xlsx'
  266. import moment from 'moment'
  267. export default {
  268. name: 'AssayResult',
  269. components: { ReturnPdf },
  270. data() {
  271. return {
  272. dialogLoading: false,
  273. dialogTitle: '新增',
  274. dialogVisible: false,
  275. nameEditState: false,
  276. editState: false,
  277. btnState1: true,
  278. btnState2: true,
  279. btnState3: true,
  280. btnState4: false,
  281. assayResultName: '',
  282. times: [],
  283. loading: false,
  284. assayResultData: [],
  285. pageInfo: { current: 1, size: 40, total: 0 }, // 分页数据
  286. ruleForm: {
  287. id: '',
  288. assayResultNo: '',
  289. assayResultName: '',
  290. collectNo: '',
  291. remark: '',
  292. collectNoId: '',
  293. assayConfigId: ''
  294. },
  295. rules: {
  296. assayResultName: [
  297. { required: true, message: '请输入化验结果名称', trigger: 'change' }
  298. ],
  299. assayConfigId: [
  300. { required: true, message: '请选择化验项配置', trigger: 'change' }
  301. ]
  302. },
  303. // 化验项字典传过来的数据
  304. assayDicData: [],
  305. // 下拉框水样编号查询采集记录数据
  306. tableData: [],
  307. table: [],
  308. //
  309. NoAssayResultData: [],
  310. //
  311. infoDialog: false,
  312. printDialog: false,
  313. pdfData: [],
  314. column: [],
  315. samplingLocationData: []
  316. }
  317. },
  318. computed: {},
  319. watch: {},
  320. created() {
  321. getassayConfigPage({
  322. size: 999,
  323. current: 1
  324. }).then((res) => {
  325. if (res.code == 1) {
  326. this.assayDicData = res.result.records
  327. } else {
  328. this.$message.error('查询失败!')
  329. }
  330. })
  331. getSampleplacedPage({
  332. current: 1,
  333. size: 40
  334. }).then((res) => {
  335. if (res.code == 1) {
  336. this.samplingLocationData = res.result.records
  337. } else {
  338. this.$message.error('查询失败!')
  339. }
  340. })
  341. },
  342. mounted() {
  343. // this.queryAssayDic();
  344. this.queryAssayResult()
  345. },
  346. methods: {
  347. // 查询没有化验结果的采集记录
  348. queryNoAssayResultAssayDic(resultId) {
  349. const params = {
  350. resultId: resultId
  351. }
  352. getNoCollectRecordList(params)
  353. .then((res) => {
  354. if (res.code == 1) {
  355. this.NoAssayResultData = res.result
  356. // console.log("没有"+JSON.stringify(this.NoAssayResultData));
  357. } else {
  358. this.$message.error('查询失败!')
  359. }
  360. })
  361. },
  362. // 查询化验结果
  363. queryAssayResult() {
  364. const params = {
  365. size: this.pageInfo.size,
  366. current: this.pageInfo.current
  367. }
  368. if (this.assayResultName != '') { Object.assign(params, { assayResultName: this.assayResultName }) }
  369. if (!this.times) {
  370. this.times = []
  371. }
  372. if (this.times.length > 1) {
  373. Object.assign(params, {
  374. startTime: this.times[0] + ' 00:00:00',
  375. endTime: this.times[1] + ' 23:59:59'
  376. })
  377. }
  378. this.loading = true
  379. getAssayResultPage(params).then((res) => {
  380. if (res.code == 1) {
  381. // console.log("化验结果数据11"+JSON.stringify(res));
  382. this.pageInfo.total = res.result.total - 0
  383. this.assayResultData = res.result.records
  384. } else {
  385. this.$message.error('查询失败!')
  386. }
  387. })
  388. .catch((ex) => {
  389. this.$message.error('查询失败!')
  390. })
  391. .finally(() => {
  392. this.loading = false
  393. })
  394. },
  395. // 新增化验结果
  396. addAssayResult() {
  397. // this.ruleForm = {};
  398. this.queryNoAssayResultAssayDic(0)
  399. this.tableData = []
  400. this.dialogTitle = '新增化验结果'
  401. this.dialogVisible = true
  402. this.nameEditState = true
  403. this.editState = false
  404. this.btnState1 = true
  405. this.btnState2 = false
  406. this.btnState3 = false
  407. this.btnState4 = false
  408. this.infoDialog = true
  409. this.printDialog = false
  410. this.ruleForm = this.$options.data().ruleForm
  411. this.$nextTick(() => {
  412. this.$refs.ruleForm.clearValidate()
  413. })
  414. // 设置时间
  415. const yy = new Date().getFullYear()
  416. const mm = new Date().getMonth() + 1
  417. const dd = new Date().getDate()
  418. const hh = new Date().getHours()
  419. const mf = new Date().getMinutes() < 10 ? '0' + new Date().getMinutes() : new Date().getMinutes()
  420. const ss = new Date().getSeconds() < 10 ? '0' + new Date().getSeconds() : new Date().getSeconds()
  421. const nowTime = yy + '/' + mm + '/' + dd + ' ' + hh + ':' + mf + ':' + ss
  422. this.ruleForm.createTime = nowTime
  423. this.ruleForm.createUserName = this.$store.state.user.realName
  424. },
  425. /**
  426. * 验证数据
  427. */
  428. validationData() {
  429. if (this.tableData.length == 0) {
  430. this.$message.warning('请选择化验项配置!')
  431. return false
  432. }
  433. const formData = new FormData()
  434. let currentDay = moment().format('YYYY-MM-DD')
  435. const find = this.tableData.find(item => item.assayTime === currentDay)
  436. if (find) {
  437. const column = this.column
  438. for (let i = 0; i < column.length; i++) {
  439. if (!find[column[i].prop]) {
  440. this.$message.warning('请填写化验值!')
  441. return false
  442. }
  443. }
  444. } else {
  445. return false
  446. }
  447. let indexNum = 0
  448. // 循环写入数据
  449. for (let index = 0; index < this.tableData.length; index++) {
  450. const row = this.tableData[index]
  451. let flag = false
  452. // 验证是否每个值都存在
  453. for (const key in row) {
  454. if (key === 'assayTime' || key === 'isEdit') continue
  455. if (!row[key]) {
  456. flag = true
  457. break
  458. }
  459. }
  460. if (flag) continue
  461. // 保存存在的 值
  462. for (const key in row) {
  463. if (key === 'isEdit') continue
  464. if (key === 'assayTime') {
  465. currentDay = row[key]
  466. continue
  467. }
  468. formData.append(`assayResultDetails[${indexNum}].assayDicId`, key.replace('value', '')) // 化验项id
  469. formData.append(`assayResultDetails[${indexNum}].assayCheckValue`, row[key]) // 化验值
  470. formData.append(`assayResultDetails[${indexNum}].assayUser`, this.$store.state.user.realName) // 化验人员
  471. formData.append(`assayResultDetails[${indexNum}].assayTime`, currentDay) // 化验时间
  472. formData.append(`assayResultDetails[${indexNum}].assayResult`, '合格') // 化验结果
  473. indexNum++
  474. }
  475. }
  476. return formData
  477. },
  478. commit() {
  479. this.$refs['ruleForm'].validate(async(valid) => {
  480. if (valid) {
  481. this.dialogLoading = true
  482. const formData = this.validationData()
  483. if (!formData) return
  484. if (!this.ruleForm.collectNo) {
  485. this.ruleForm.collectNo = await this.getItemList()
  486. if (!this.ruleForm.collectNo) {
  487. this.$message.error('生产采集记录失败')
  488. return
  489. }
  490. }
  491. formData.append('assayResultName', this.ruleForm.assayResultName)
  492. formData.append('assayConfigId', this.ruleForm.assayConfigId)
  493. formData.append('collectNo', this.ruleForm.collectNo)
  494. formData.append('remark', this.ruleForm.remark)
  495. addAssayResult(formData).then((res) => {
  496. if (res.code == 1) {
  497. this.$message.success('新增成功')
  498. this.dialogVisible = false
  499. this.dialogLoading = false
  500. this.queryAssayResult()
  501. } else {
  502. this.$message.error('新增失败!')
  503. }
  504. })
  505. } else {
  506. return false
  507. }
  508. })
  509. },
  510. // 详细弹窗
  511. showInfo(row) {
  512. // console.log("shuju @@@@@@@@@@" + JSON.stringify(row));
  513. this.pdfData = JSON.parse(JSON.stringify(row))
  514. this.dialogTitle = '化验结果详细报告'
  515. this.dialogVisible = true
  516. this.nameEditState = true
  517. // 控制是否能够编辑
  518. this.editState = true
  519. this.btnState1 = false
  520. this.btnState2 = false
  521. this.btnState3 = true
  522. this.btnState4 = false
  523. this.infoDialog = true
  524. this.printDialog = false
  525. this.ruleForm.assayResultNo = row.assayResultNo
  526. this.ruleForm.assayResultName = row.assayResultName
  527. this.ruleForm.collectNo = row.collectNo
  528. this.ruleForm.remark = row.remark
  529. this.ruleForm.createUserName = row.createUserName
  530. this.ruleForm.createTime = row.createTime
  531. this.ruleForm.assayConfigId = row.assayConfigId
  532. // this.tableData = row.assayResultDetails
  533. this.getAssayData(row.assayConfigId, row.assayResultDetails)
  534. },
  535. // 修改弹窗
  536. showYearInfo1(row) {
  537. this.queryNoAssayResultAssayDic(row.id)
  538. // console.log("shuju @@@@@@@@@@" + JSON.stringify(row));
  539. this.dialogTitle = '修改'
  540. this.dialogVisible = true
  541. this.nameEditState = true
  542. // 控制是否能够编辑
  543. this.editState = false
  544. this.btnState1 = false
  545. this.btnState2 = true
  546. this.btnState3 = false
  547. this.btnState4 = false
  548. this.infoDialog = true
  549. this.printDialog = false
  550. this.ruleForm.id = row.id
  551. this.ruleForm.assayResultNo = row.assayResultNo
  552. this.ruleForm.assayResultName = row.assayResultName
  553. this.ruleForm.collectNo = row.collectNo
  554. this.ruleForm.remark = row.remark
  555. this.ruleForm.createUserName = row.createUserName
  556. this.ruleForm.createTime = row.createTime
  557. // this.tableData = row.assayResultDetails
  558. this.ruleForm.assayConfigId = row.assayConfigId
  559. this.getAssayData(row.assayConfigId, row.assayResultDetails)
  560. },
  561. // 提交修改数据
  562. upData() {
  563. this.$refs['ruleForm'].validate(async(valid) => {
  564. if (valid) {
  565. const formData = this.validationData()
  566. if (!formData) return
  567. formData.append('id', this.ruleForm.id)
  568. formData.append('assayResultName', this.ruleForm.assayResultName)
  569. formData.append('assayConfigId', this.ruleForm.assayConfigId)
  570. formData.append('collectNo', this.ruleForm.collectNo)
  571. formData.append('remark', this.ruleForm.remark)
  572. editAssayResult(formData).then((res) => {
  573. if (res.code == 1) {
  574. this.$message.success('修改成功')
  575. this.dialogVisible = false
  576. this.queryAssayResult()
  577. this.$refs.ruleForm.resetFields()
  578. } else {
  579. this.$message.erroe('修改失败!')
  580. }
  581. })
  582. } else {
  583. return false
  584. }
  585. })
  586. },
  587. // 删除
  588. deleteAssayResult(row) {
  589. this.$confirm(
  590. `此操作将永久删除化验结果【${row.assayResultName}】,是否继续?`,
  591. '提示',
  592. {
  593. confirmButtonText: '确定',
  594. cancelButtonText: '取消',
  595. type: 'warning'
  596. }
  597. )
  598. .then(() => {
  599. this.delete(row)
  600. })
  601. .catch(() => {
  602. this.$message({
  603. type: 'info',
  604. message: '已取消删除'
  605. })
  606. })
  607. },
  608. delete(row) {
  609. const params = {
  610. ids: row.id
  611. }
  612. deleteAssayResultIds(params).then((res) => {
  613. if (res.code == 1) {
  614. this.$message({
  615. type: 'success',
  616. message: '已删除'
  617. })
  618. this.queryAssayResult()
  619. } else {
  620. this.$message({
  621. type: 'info',
  622. message: '删除失败'
  623. })
  624. }
  625. })
  626. // .catch((ex) => {
  627. // this.$message({
  628. // type: "info",
  629. // message: "删除失败,失败原因:" + ex,
  630. // });
  631. // });
  632. },
  633. // 导出化验结果
  634. exportResult() {
  635. // console.log("1111");
  636. // htmlToPdf.downloadPDF("resultAss", this.ruleForm.assayResultName+"的化验结果报告");
  637. // console.log( this.getPdf )
  638. // this.getPdf('德昌毅欣水务回访工单', "resultAss")
  639. this.dialogTitle = '打印预览'
  640. this.infoDialog = false
  641. this.printDialog = true
  642. this.btnState3 = false
  643. this.btnState4 = true
  644. },
  645. // 打印
  646. submitForm() {
  647. this.$refs.ruleForm.exportPdf()
  648. this.dialogVisible = false
  649. },
  650. // // 导出数据
  651. exportData() {
  652. for (var i = 0; i < this.assayResultData.length; i++) {
  653. const list = this.assayResultData[i].assayResultDetails
  654. for (var j = 0; j < list.length; j++) {
  655. this.assayResultData[i][`assayDicName${j}`] = list[j].assayDicName
  656. this.assayResultData[i][`assayCheckValue${j}`] = list[j].assayCheckValue
  657. this.assayResultData[i][`assayResult${j}`] = list[j].assayResult
  658. }
  659. }
  660. // console.log("+++"+JSON.stringify(this.assayResultData));
  661. this.exportList(this.assayResultData)
  662. },
  663. exportList(list) {
  664. const tableData = [
  665. ['序号', '化验结果编号', '化验结果名称', '化验项配置', '水样编号', '创建人', '创建时间', '描述', '化验项', '化验值', '化验结果',
  666. '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果',
  667. '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果',
  668. '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果',
  669. '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果',
  670. '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果'
  671. ]// 导出表头,
  672. ] // 表格表头
  673. list.forEach((item, index) => {
  674. let rowData = []
  675. // 导出内容的字段
  676. rowData = [
  677. index + 1,
  678. item.assayResultNo,
  679. item.assayResultName,
  680. item.assayConfigName,
  681. item.collectNo,
  682. item.createUserName,
  683. item.createTime,
  684. item.remark,
  685. item.assayDicName0,
  686. item.assayCheckValue0,
  687. item.assayResult0,
  688. item.assayDicName1,
  689. item.assayCheckValue1,
  690. item.assayResult1,
  691. item.assayDicName2,
  692. item.assayCheckValue2,
  693. item.assayResult2,
  694. item.assayDicName3,
  695. item.assayCheckValue3,
  696. item.assayResult3,
  697. item.assayDicName4,
  698. item.assayCheckValue4,
  699. item.assayResult4,
  700. item.assayDicName5,
  701. item.assayCheckValue5,
  702. item.assayResult5,
  703. item.assayDicName6,
  704. item.assayCheckValue6,
  705. item.assayResult6,
  706. item.assayDicName7,
  707. item.assayCheckValue7,
  708. item.assayResult7,
  709. item.assayDicName8,
  710. item.assayCheckValue8,
  711. item.assayResult8,
  712. item.assayDicName9,
  713. item.assayCheckValue9,
  714. item.assayResult9,
  715. item.assayDicName10,
  716. item.assayCheckValue10,
  717. item.assayResult10,
  718. item.assayDicName11,
  719. item.assayCheckValue11,
  720. item.assayResult11,
  721. item.assayDicName12,
  722. item.assayCheckValue12,
  723. item.assayResult12
  724. ]
  725. tableData.push(rowData)
  726. })
  727. const ws = XLSX.utils.aoa_to_sheet(tableData)
  728. const wb = XLSX.utils.book_new()
  729. XLSX.utils.book_append_sheet(wb, ws, '化验结果') // 工作簿名称
  730. XLSX.writeFile(wb, '化验结果.xlsx') // 保存的文件名
  731. },
  732. // 下载文件
  733. downLoad(row) {
  734. // console.log("文件的星官信息" + JSON.stringify(row));
  735. if (row.fileUpLoadList != null) {
  736. // console.log(row);
  737. // let url = row.fileUpLoadList.filePath;
  738. const url = window.URL.createObjectURL(new Blob([row.fileUpLoadList.filePath]))
  739. const link = document.createElement('a')
  740. link.style.display = 'none'
  741. link.href = url
  742. link.setAttribute('download', row.fileUpLoadList.fileName) // 指定下载后的文件名,防跳转
  743. document.body.appendChild(link)
  744. link.click()
  745. // 释放内存
  746. window.URL.revokeObjectURL(link.href)
  747. } else {
  748. this.$message.error('该项报告暂未上传附件')
  749. }
  750. },
  751. // 通过id查询化验想配置数据
  752. getAssayData(val, tableData) {
  753. let tableDataObj = {}
  754. if (tableData && tableData.length) {
  755. tableDataObj = tableData.reduce((current, next) => {
  756. current[next.assayTime] = current[next.assayTime] || {}
  757. current[next.assayTime][`value${next.assayDicId}`] = next.assayCheckValue
  758. return current
  759. }, {})
  760. }
  761. const id = val
  762. this.column = []
  763. this.tableData = []
  764. getassayConfigById(id).then((res) => {
  765. if (res.code == 1) {
  766. const valueObj = {}
  767. res.result.listAssayDic.forEach(item => {
  768. this.column.push({
  769. prop: 'value' + item.id,
  770. label: item.assayDicName
  771. })
  772. valueObj[`value${item.id}`] = ''
  773. })
  774. const end = +(moment().endOf('month').format('DD'))
  775. for (let i = 1; i <= end; i++) {
  776. const dateTime = moment().format('YYYY-MM') + '-' + String(i).padStart(2, '0')
  777. this.tableData.push({
  778. assayTime: dateTime,
  779. isEdit: false,
  780. ...valueObj,
  781. ...(tableDataObj[dateTime] || {})
  782. })
  783. }
  784. } else {
  785. this.$message.error('查询失败!')
  786. }
  787. })
  788. .catch((ex) => {
  789. this.$message.error('查询失败!' + ex)
  790. })
  791. .finally(() => {
  792. this.loading = false
  793. })
  794. },
  795. choiceAssayConfig(val) {
  796. this.getAssayData(val)
  797. },
  798. // 增加红星
  799. addRedStar(h, { column }) {
  800. return [
  801. h('span', { style: 'color: red' }, '*'),
  802. h('span', ' ' + column.label)
  803. ]
  804. },
  805. handleSizeChange(val) {
  806. this.pageInfo.size = val
  807. this.queryAssayResult()
  808. },
  809. handleCurrentChange(val) {
  810. this.pageInfo.current = val
  811. this.queryAssayResult()
  812. },
  813. /**
  814. * @description 点击事件
  815. */
  816. eventClick(column, event) {
  817. console.log('点击事件:', column, event)
  818. const that = this
  819. const clickTitle = column.label
  820. const columnAry = ['化验人', '化验时间', '化验结果', '化验值']
  821. const columnTable = {
  822. '化验时间': 'assayTime',
  823. '化验人': 'assayUser',
  824. '化验结果': 'assayResult',
  825. '化验值': 'assayCheckValue'
  826. }
  827. if (columnAry.includes(clickTitle)) {
  828. that.$prompt(`请输入${clickTitle}`, '系统提示', {
  829. confirmButtonText: '确定',
  830. cancelButtonText: '取消',
  831. inputValue: ''
  832. }).then(({ value }) => {
  833. console.log('输入人员', value)
  834. if (clickTitle == '化验时间') {
  835. if (validyyyyMMdd(value)) {
  836. that.tableData.map(item => {
  837. item[columnTable[clickTitle]] = value
  838. })
  839. } else {
  840. this.$message({
  841. type: 'error',
  842. message: '请输入正确格式的数据'
  843. })
  844. return
  845. }
  846. }
  847. that.tableData.map(item => {
  848. item[columnTable[clickTitle]] = value
  849. })
  850. }).catch(() => {
  851. this.$message({
  852. type: 'info',
  853. message: '取消输入'
  854. })
  855. })
  856. }
  857. },
  858. // 生产采集记录
  859. getItemList() {
  860. return new Promise(async(resolve, reject) => {
  861. const nowTime = moment().format('YYYY-MM-DD HH:mm:ss')
  862. const find = this.assayDicData.find(item => item.id === this.ruleForm.assayConfigId)
  863. const findId = this.samplingLocationData.find(item => item.samplePlaceName === find.remark)
  864. if (!findId) {
  865. resolve()
  866. }
  867. await addCollectRecord({
  868. collectTime: nowTime,
  869. collectUser: this.$store.state.user.realName,
  870. samplePlaceId: findId.id, // 采集地点
  871. inspectionTime: nowTime,
  872. assayConfigId: this.ruleForm.assayConfigId,
  873. remark: this.ruleForm.remark
  874. })
  875. const res = await getCollectRecordPage({
  876. size: 1,
  877. current: 1,
  878. createUser: this.$store.state.user.userId
  879. })
  880. resolve(res.result.records[0]?.collectNo)
  881. })
  882. },
  883. rowDblclick(row, column, event) {
  884. this.tableData.forEach(item => {
  885. item.isEdit = false
  886. })
  887. row.isEdit = true
  888. }
  889. }
  890. }
  891. </script>
  892. <style lang="scss" scoped>
  893. .assayResult-container {
  894. height: 100%;
  895. width: 100%;
  896. padding: 10px;
  897. }
  898. </style>