123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989 |
- <template>
- <div class="assayResult-container">
-
-
- <el-row>
- <el-form
- style="
- display: flex;
- flex-wrap: wrap;
- justify-content: flex-start;
- align-items: flex-start;
- "
- >
- <el-form-item label="化验结果名称:" style="width: 300px; display: inline-block; margin-bottom: 6px">
- <el-input v-model="assayResultName" size="mini" placeholder="请输入化验结果名称" style="width: 200px" clearable />
- </el-form-item>
- <el-form-item label="化验时间:" prop="times" style="display: inline-block; width: 440px; margin-bottom: 6px">
- <el-date-picker
- v-model="times"
- size="mini"
- type="daterange"
- align="right"
- unlink-panels
- range-separator="至"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- format="yyyy-MM-dd"
- value-format="yyyy-MM-dd"
- />
- </el-form-item>
- <el-form-item style="display: inline-block; width: 300px; margin-bottom: 6px">
- <el-button size="mini" type="primary" @click="queryAssayResult">查询</el-button>
- <el-button size="mini" type="primary" @click="addAssayResult">新增</el-button>
- <el-button size="mini" type="primary" @click="exportData">导出</el-button>
- </el-form-item>
- </el-form>
- </el-row>
-
-
- <div style="height: calc(100% - 35px)">
-
- <el-table
- id="siteMonitor"
- v-loading="loading"
- class="mapTable"
- :data="assayResultData"
- :total="pageInfo.total"
- border
- height="calc(100% - 40px)"
- >
-
- <el-table-column
- type="index"
- align="center"
- width="50"
- label="序号"
- />
- <el-table-column
- prop="assayResultNo"
- align="center"
- label="化验结果编号"
- show-overflow-tooltip
- />
- <el-table-column
- prop="assayResultName"
- align="center"
- label="化验结果名称"
- show-overflow-tooltip
- />
- <el-table-column
- prop="assayConfigName"
- align="center"
- label="化验配置项"
- show-overflow-tooltip
- />
- <el-table-column
- prop="collectNo"
- align="center"
- label="水样编号"
- show-overflow-tooltip
- />
- <el-table-column
- prop="createUserName"
- align="center"
- label="创建人"
- show-overflow-tooltip
- />
- <el-table-column
- prop="createTime"
- align="center"
- label="创建时间"
- show-overflow-tooltip
- />
- <el-table-column
- prop="remark"
- align="center"
- label="描述"
- show-overflow-tooltip
- />
-
- <el-table-column label="操作" width="160" align="center">
- <template slot-scope="scope">
- <el-button type="text" icon="el-icon-document" title="详情" @click="showInfo(scope.row)" />
- <el-button type="text" icon="el-icon-edit" title="修改" @click="showYearInfo1(scope.row)" />
- <el-button
- type="text"
- style="color: red"
- icon="el-icon-delete"
- title="删除"
- @click="deleteAssayResult(scope.row)"
- />
- </template>
- </el-table-column>
- </el-table>
-
- <el-row style="margin-top: 0px">
- <el-col :span="24">
- <el-pagination
- ref="pagination"
- small
- layout="total, sizes, prev, pager, next, jumper"
- :pager-count="5"
- :current-page="pageInfo.current"
- :page-sizes="[40, 80, 120, 200]"
- style="margin-top: 4px"
- :page-size="pageInfo.size"
- :total="pageInfo.total"
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- />
- </el-col>
- </el-row>
- </div>
-
-
- <el-dialog
- v-show="dialogVisible"
- v-dialogDrag
- top="1vh"
- :title="dialogTitle"
- :visible.sync="dialogVisible"
- width="90%"
- >
- <div v-if="infoDialog" id="resultAss" v-loading="dialogLoading" style="width: 100%; height: auto">
- <el-form
- ref="ruleForm"
- :model="ruleForm"
- :rules="rules"
- label-width="150px"
- >
- <el-row type="flex" justify="space-between" :gutter="10">
- <el-col :span="12">
- <el-form-item label="化验结果名称:" prop="assayResultName">
- <el-input
- v-model="ruleForm.assayResultName"
- placeholder="请输入化验结果名称"
- size="small"
- :disabled="editState"
- />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="化验项配置:" prop="assayConfigId">
- <el-select v-model="ruleForm.assayConfigId" placeholder="请选择化验项配置" size="small" style="width: 100%;" :disabled="editState" @change="choiceAssayConfig">
- <el-option v-for="(item, index) in assayDicData" :key="index" :label="item.assayConfigName" :value="item.id" />
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row type="flex" justify="space-between" :gutter="10">
- <el-col :span="24">
- <el-form-item label="描述:" prop="remark">
- <el-input
- v-model="ruleForm.remark"
- type="textarea"
- :row="2"
- placeholder="请输入描述"
- size="small"
- :disabled="editState"
- />
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
-
-
- <div style="width: 100%; height: calc(100vh - 280px)">
-
- <el-table
- id="siteMonitor"
- ref="tableData"
- v-loading="loading"
- highlight-current-row
- class="mapTable"
- :data="tableData"
- border
- height="calc(100% - 10px)"
- @header-click="eventClick"
- @row-dblclick="rowDblclick"
- >
- <template slot="empty">
- <img src="@/assets/icon/null.png" alt="">
- <p class="empty-p">暂无数据</p>
- </template>
-
- <el-table-column v-if="column.length" align="center" label="序号" type="index" show-overflow-tooltip />
- <el-table-column v-if="column.length" prop="assayTime" align="center" label="化验时间" width="100" show-overflow-tooltip />
- <el-table-column
- v-for="(item, index) in column"
- :key="index"
- :prop="item.prop"
- align="center"
- :label="item.label"
- :render-header="addRedStar"
- show-overflow-tooltip
- >
- <template slot-scope="{row}">
- <el-input v-if="row.isEdit" v-model="row[item.prop]" size="small" :disabled="editState" placeholder="请输入化验值" />
- <span v-else>{{ row[item.prop] }}</span>
- </template>
- </el-table-column>
- </el-table>
- </div>
- </div>
- <ReturnPdf
- v-else-if="printDialog"
- ref="ruleForm"
- :data="pdfData"
- />
-
- <div slot="footer" class="dialog-footer">
-
- <el-button v-loading="dialogLoading" size="mini" @click="dialogVisible = false">取 消</el-button>
- <el-button v-if="btnState1" v-loading="dialogLoading" type="primary" size="mini" @click="commit">确定</el-button>
- <el-button v-if="btnState2" v-loading="dialogLoading" type="primary" size="mini" @click="upData">修改</el-button>
-
- </div>
- </el-dialog>
-
- </div>
- </template>
- <script>
- import {
- getAssayResultPage,
- addAssayResult,
- editAssayResult,
- deleteAssayResultIds,
- getassayConfigById,
- getNoCollectRecordList,
- getassayConfigPage,
- getCollectRecordPage,
- getSampleplacedPage,
- addCollectRecord
- } from '@/api/dcApi/assayMngApi'
- import ReturnPdf from '../../../common/ReturnPdf'
- import { validyyyyMMdd } from '@/utils/validate'
- import XLSX from 'xlsx'
- import moment from 'moment'
- export default {
- name: 'AssayResult',
- components: { ReturnPdf },
- data() {
- return {
- dialogLoading: false,
- dialogTitle: '新增',
- dialogVisible: false,
- nameEditState: false,
- editState: false,
- btnState1: true,
- btnState2: true,
- btnState3: true,
- btnState4: false,
- assayResultName: '',
- times: [],
- loading: false,
- assayResultData: [],
- pageInfo: { current: 1, size: 40, total: 0 },
- ruleForm: {
- id: '',
- assayResultNo: '',
- assayResultName: '',
- collectNo: '',
- remark: '',
- collectNoId: '',
- assayConfigId: ''
- },
- rules: {
- assayResultName: [
- { required: true, message: '请输入化验结果名称', trigger: 'change' }
- ],
- assayConfigId: [
- { required: true, message: '请选择化验项配置', trigger: 'change' }
- ]
- },
-
- assayDicData: [],
-
- tableData: [],
- table: [],
-
- NoAssayResultData: [],
-
- infoDialog: false,
- printDialog: false,
- pdfData: [],
- column: [],
- samplingLocationData: []
- }
- },
- computed: {},
- watch: {},
- created() {
- getassayConfigPage({
- size: 999,
- current: 1
- }).then((res) => {
- if (res.code == 1) {
- this.assayDicData = res.result.records
- } else {
- this.$message.error('查询失败!')
- }
- })
- getSampleplacedPage({
- current: 1,
- size: 40
- }).then((res) => {
- if (res.code == 1) {
- this.samplingLocationData = res.result.records
- } else {
- this.$message.error('查询失败!')
- }
- })
- },
- mounted() {
-
- this.queryAssayResult()
- },
- methods: {
-
- queryNoAssayResultAssayDic(resultId) {
- const params = {
- resultId: resultId
- }
- getNoCollectRecordList(params)
- .then((res) => {
- if (res.code == 1) {
- this.NoAssayResultData = res.result
-
- } else {
- this.$message.error('查询失败!')
- }
- })
- },
-
- queryAssayResult() {
- const params = {
- size: this.pageInfo.size,
- current: this.pageInfo.current
- }
- if (this.assayResultName != '') { Object.assign(params, { assayResultName: this.assayResultName }) }
- if (!this.times) {
- this.times = []
- }
- if (this.times.length > 1) {
- Object.assign(params, {
- startTime: this.times[0] + ' 00:00:00',
- endTime: this.times[1] + ' 23:59:59'
- })
- }
- this.loading = true
- getAssayResultPage(params).then((res) => {
- if (res.code == 1) {
-
- this.pageInfo.total = res.result.total - 0
- this.assayResultData = res.result.records
- } else {
- this.$message.error('查询失败!')
- }
- })
- .catch((ex) => {
- this.$message.error('查询失败!')
- })
- .finally(() => {
- this.loading = false
- })
- },
-
- addAssayResult() {
-
- this.queryNoAssayResultAssayDic(0)
- this.tableData = []
- this.dialogTitle = '新增化验结果'
- this.dialogVisible = true
- this.nameEditState = true
- this.editState = false
- this.btnState1 = true
- this.btnState2 = false
- this.btnState3 = false
- this.btnState4 = false
- this.infoDialog = true
- this.printDialog = false
- this.ruleForm = this.$options.data().ruleForm
- this.$nextTick(() => {
- this.$refs.ruleForm.clearValidate()
- })
-
- const yy = new Date().getFullYear()
- const mm = new Date().getMonth() + 1
- const dd = new Date().getDate()
- const hh = new Date().getHours()
- const mf = new Date().getMinutes() < 10 ? '0' + new Date().getMinutes() : new Date().getMinutes()
- const ss = new Date().getSeconds() < 10 ? '0' + new Date().getSeconds() : new Date().getSeconds()
- const nowTime = yy + '/' + mm + '/' + dd + ' ' + hh + ':' + mf + ':' + ss
- this.ruleForm.createTime = nowTime
- this.ruleForm.createUserName = this.$store.state.user.realName
- },
-
- validationData() {
- if (this.tableData.length == 0) {
- this.$message.warning('请选择化验项配置!')
- return false
- }
- const formData = new FormData()
- let currentDay = moment().format('YYYY-MM-DD')
- const find = this.tableData.find(item => item.assayTime === currentDay)
- if (find) {
- const column = this.column
- for (let i = 0; i < column.length; i++) {
- if (!find[column[i].prop]) {
- this.$message.warning('请填写化验值!')
- return false
- }
- }
- } else {
- return false
- }
- let indexNum = 0
-
- for (let index = 0; index < this.tableData.length; index++) {
- const row = this.tableData[index]
- let flag = false
-
- for (const key in row) {
- if (key === 'assayTime' || key === 'isEdit') continue
- if (!row[key]) {
- flag = true
- break
- }
- }
- if (flag) continue
-
- for (const key in row) {
- if (key === 'isEdit') continue
- if (key === 'assayTime') {
- currentDay = row[key]
- continue
- }
- formData.append(`assayResultDetails[${indexNum}].assayDicId`, key.replace('value', ''))
- formData.append(`assayResultDetails[${indexNum}].assayCheckValue`, row[key])
- formData.append(`assayResultDetails[${indexNum}].assayUser`, this.$store.state.user.realName)
- formData.append(`assayResultDetails[${indexNum}].assayTime`, currentDay)
- formData.append(`assayResultDetails[${indexNum}].assayResult`, '合格')
- indexNum++
- }
- }
- return formData
- },
- commit() {
- this.$refs['ruleForm'].validate(async(valid) => {
- if (valid) {
- this.dialogLoading = true
- const formData = this.validationData()
- if (!formData) return
- if (!this.ruleForm.collectNo) {
- this.ruleForm.collectNo = await this.getItemList()
- if (!this.ruleForm.collectNo) {
- this.$message.error('生产采集记录失败')
- return
- }
- }
- formData.append('assayResultName', this.ruleForm.assayResultName)
- formData.append('assayConfigId', this.ruleForm.assayConfigId)
- formData.append('collectNo', this.ruleForm.collectNo)
- formData.append('remark', this.ruleForm.remark)
- addAssayResult(formData).then((res) => {
- if (res.code == 1) {
- this.$message.success('新增成功')
- this.dialogVisible = false
- this.dialogLoading = false
- this.queryAssayResult()
- } else {
- this.$message.error('新增失败!')
- }
- })
- } else {
- return false
- }
- })
- },
-
- showInfo(row) {
-
- this.pdfData = JSON.parse(JSON.stringify(row))
- this.dialogTitle = '化验结果详细报告'
- this.dialogVisible = true
- this.nameEditState = true
-
- this.editState = true
- this.btnState1 = false
- this.btnState2 = false
- this.btnState3 = true
- this.btnState4 = false
- this.infoDialog = true
- this.printDialog = false
- this.ruleForm.assayResultNo = row.assayResultNo
- this.ruleForm.assayResultName = row.assayResultName
- this.ruleForm.collectNo = row.collectNo
- this.ruleForm.remark = row.remark
- this.ruleForm.createUserName = row.createUserName
- this.ruleForm.createTime = row.createTime
- this.ruleForm.assayConfigId = row.assayConfigId
-
- this.getAssayData(row.assayConfigId, row.assayResultDetails)
- },
-
- showYearInfo1(row) {
- this.queryNoAssayResultAssayDic(row.id)
-
- this.dialogTitle = '修改'
- this.dialogVisible = true
- this.nameEditState = true
-
- this.editState = false
- this.btnState1 = false
- this.btnState2 = true
- this.btnState3 = false
- this.btnState4 = false
- this.infoDialog = true
- this.printDialog = false
- this.ruleForm.id = row.id
- this.ruleForm.assayResultNo = row.assayResultNo
- this.ruleForm.assayResultName = row.assayResultName
- this.ruleForm.collectNo = row.collectNo
- this.ruleForm.remark = row.remark
- this.ruleForm.createUserName = row.createUserName
- this.ruleForm.createTime = row.createTime
-
- this.ruleForm.assayConfigId = row.assayConfigId
- this.getAssayData(row.assayConfigId, row.assayResultDetails)
- },
-
- upData() {
- this.$refs['ruleForm'].validate(async(valid) => {
- if (valid) {
- const formData = this.validationData()
- if (!formData) return
- formData.append('id', this.ruleForm.id)
- formData.append('assayResultName', this.ruleForm.assayResultName)
- formData.append('assayConfigId', this.ruleForm.assayConfigId)
- formData.append('collectNo', this.ruleForm.collectNo)
- formData.append('remark', this.ruleForm.remark)
- editAssayResult(formData).then((res) => {
- if (res.code == 1) {
- this.$message.success('修改成功')
- this.dialogVisible = false
- this.queryAssayResult()
- this.$refs.ruleForm.resetFields()
- } else {
- this.$message.erroe('修改失败!')
- }
- })
- } else {
- return false
- }
- })
- },
-
- deleteAssayResult(row) {
- this.$confirm(
- `此操作将永久删除化验结果【${row.assayResultName}】,是否继续?`,
- '提示',
- {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }
- )
- .then(() => {
- this.delete(row)
- })
- .catch(() => {
- this.$message({
- type: 'info',
- message: '已取消删除'
- })
- })
- },
- delete(row) {
- const params = {
- ids: row.id
- }
- deleteAssayResultIds(params).then((res) => {
- if (res.code == 1) {
- this.$message({
- type: 'success',
- message: '已删除'
- })
- this.queryAssayResult()
- } else {
- this.$message({
- type: 'info',
- message: '删除失败'
- })
- }
- })
-
-
-
-
-
-
- },
-
- exportResult() {
-
-
-
-
- this.dialogTitle = '打印预览'
- this.infoDialog = false
- this.printDialog = true
- this.btnState3 = false
- this.btnState4 = true
- },
-
- submitForm() {
- this.$refs.ruleForm.exportPdf()
- this.dialogVisible = false
- },
-
- exportData() {
- for (var i = 0; i < this.assayResultData.length; i++) {
- const list = this.assayResultData[i].assayResultDetails
- for (var j = 0; j < list.length; j++) {
- this.assayResultData[i][`assayDicName${j}`] = list[j].assayDicName
- this.assayResultData[i][`assayCheckValue${j}`] = list[j].assayCheckValue
- this.assayResultData[i][`assayResult${j}`] = list[j].assayResult
- }
- }
-
- this.exportList(this.assayResultData)
- },
- exportList(list) {
- const tableData = [
- ['序号', '化验结果编号', '化验结果名称', '化验项配置', '水样编号', '创建人', '创建时间', '描述', '化验项', '化验值', '化验结果',
- '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果',
- '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果',
- '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果',
- '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果',
- '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果', '化验项', '化验值', '化验结果'
- ]
- ]
- list.forEach((item, index) => {
- let rowData = []
-
- rowData = [
- index + 1,
- item.assayResultNo,
- item.assayResultName,
- item.assayConfigName,
- item.collectNo,
- item.createUserName,
- item.createTime,
- item.remark,
- item.assayDicName0,
- item.assayCheckValue0,
- item.assayResult0,
- item.assayDicName1,
- item.assayCheckValue1,
- item.assayResult1,
- item.assayDicName2,
- item.assayCheckValue2,
- item.assayResult2,
- item.assayDicName3,
- item.assayCheckValue3,
- item.assayResult3,
- item.assayDicName4,
- item.assayCheckValue4,
- item.assayResult4,
- item.assayDicName5,
- item.assayCheckValue5,
- item.assayResult5,
- item.assayDicName6,
- item.assayCheckValue6,
- item.assayResult6,
- item.assayDicName7,
- item.assayCheckValue7,
- item.assayResult7,
- item.assayDicName8,
- item.assayCheckValue8,
- item.assayResult8,
- item.assayDicName9,
- item.assayCheckValue9,
- item.assayResult9,
- item.assayDicName10,
- item.assayCheckValue10,
- item.assayResult10,
- item.assayDicName11,
- item.assayCheckValue11,
- item.assayResult11,
- item.assayDicName12,
- item.assayCheckValue12,
- item.assayResult12
- ]
- tableData.push(rowData)
- })
- const ws = XLSX.utils.aoa_to_sheet(tableData)
- const wb = XLSX.utils.book_new()
- XLSX.utils.book_append_sheet(wb, ws, '化验结果')
- XLSX.writeFile(wb, '化验结果.xlsx')
- },
-
- downLoad(row) {
-
- if (row.fileUpLoadList != null) {
-
-
- const url = window.URL.createObjectURL(new Blob([row.fileUpLoadList.filePath]))
- const link = document.createElement('a')
- link.style.display = 'none'
- link.href = url
- link.setAttribute('download', row.fileUpLoadList.fileName)
- document.body.appendChild(link)
- link.click()
-
- window.URL.revokeObjectURL(link.href)
- } else {
- this.$message.error('该项报告暂未上传附件')
- }
- },
-
- getAssayData(val, tableData) {
- let tableDataObj = {}
- if (tableData && tableData.length) {
- tableDataObj = tableData.reduce((current, next) => {
- current[next.assayTime] = current[next.assayTime] || {}
- current[next.assayTime][`value${next.assayDicId}`] = next.assayCheckValue
- return current
- }, {})
- }
- const id = val
- this.column = []
- this.tableData = []
- getassayConfigById(id).then((res) => {
- if (res.code == 1) {
- const valueObj = {}
- res.result.listAssayDic.forEach(item => {
- this.column.push({
- prop: 'value' + item.id,
- label: item.assayDicName
- })
- valueObj[`value${item.id}`] = ''
- })
- const end = +(moment().endOf('month').format('DD'))
- for (let i = 1; i <= end; i++) {
- const dateTime = moment().format('YYYY-MM') + '-' + String(i).padStart(2, '0')
- this.tableData.push({
- assayTime: dateTime,
- isEdit: false,
- ...valueObj,
- ...(tableDataObj[dateTime] || {})
- })
- }
- } else {
- this.$message.error('查询失败!')
- }
- })
- .catch((ex) => {
- this.$message.error('查询失败!' + ex)
- })
- .finally(() => {
- this.loading = false
- })
- },
- choiceAssayConfig(val) {
- this.getAssayData(val)
- },
-
- addRedStar(h, { column }) {
- return [
- h('span', { style: 'color: red' }, '*'),
- h('span', ' ' + column.label)
- ]
- },
- handleSizeChange(val) {
- this.pageInfo.size = val
- this.queryAssayResult()
- },
- handleCurrentChange(val) {
- this.pageInfo.current = val
- this.queryAssayResult()
- },
-
- eventClick(column, event) {
- console.log('点击事件:', column, event)
- const that = this
- const clickTitle = column.label
- const columnAry = ['化验人', '化验时间', '化验结果', '化验值']
- const columnTable = {
- '化验时间': 'assayTime',
- '化验人': 'assayUser',
- '化验结果': 'assayResult',
- '化验值': 'assayCheckValue'
- }
- if (columnAry.includes(clickTitle)) {
- that.$prompt(`请输入${clickTitle}`, '系统提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- inputValue: ''
- }).then(({ value }) => {
- console.log('输入人员', value)
- if (clickTitle == '化验时间') {
- if (validyyyyMMdd(value)) {
- that.tableData.map(item => {
- item[columnTable[clickTitle]] = value
- })
- } else {
- this.$message({
- type: 'error',
- message: '请输入正确格式的数据'
- })
- return
- }
- }
- that.tableData.map(item => {
- item[columnTable[clickTitle]] = value
- })
- }).catch(() => {
- this.$message({
- type: 'info',
- message: '取消输入'
- })
- })
- }
- },
-
- getItemList() {
- return new Promise(async(resolve, reject) => {
- const nowTime = moment().format('YYYY-MM-DD HH:mm:ss')
- const find = this.assayDicData.find(item => item.id === this.ruleForm.assayConfigId)
- const findId = this.samplingLocationData.find(item => item.samplePlaceName === find.remark)
- if (!findId) {
- resolve()
- }
- await addCollectRecord({
- collectTime: nowTime,
- collectUser: this.$store.state.user.realName,
- samplePlaceId: findId.id,
- inspectionTime: nowTime,
- assayConfigId: this.ruleForm.assayConfigId,
- remark: this.ruleForm.remark
- })
- const res = await getCollectRecordPage({
- size: 1,
- current: 1,
- createUser: this.$store.state.user.userId
- })
- resolve(res.result.records[0]?.collectNo)
- })
- },
- rowDblclick(row, column, event) {
- this.tableData.forEach(item => {
- item.isEdit = false
- })
- row.isEdit = true
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .assayResult-container {
- height: 100%;
- width: 100%;
- padding: 10px;
- }
- </style>
|