From ae8b90c76912a7796b7c23c78f1a59bac434457d Mon Sep 17 00:00:00 2001 From: licp <lichunping@guanfang.com.cn> Date: 星期一, 14 十月 2024 13:37:15 +0800 Subject: [PATCH] 完成普通项目的项目检验 --- src/components/view/b1-inspection-order.vue | 203 +++++++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 188 insertions(+), 15 deletions(-) diff --git a/src/components/view/b1-inspection-order.vue b/src/components/view/b1-inspection-order.vue index 1f25b27..8778c55 100644 --- a/src/components/view/b1-inspection-order.vue +++ b/src/components/view/b1-inspection-order.vue @@ -152,6 +152,19 @@ line-height: 1.5em; /* 琛岄珮 */ height: 3.0em; /* 楂樺害涓鸿楂樼殑涓ゅ�� */ } + .thermal-table{ + min-width: calc(100% - 10px); + margin: 5px 5px 0; + table-layout: fixed; + } + .thermal-table td { + min-width: 70px; + text-align: center; + font-size: 14px; + word-wrap: break-word; + white-space: normal; + padding: 5px; + } </style> <template> @@ -166,7 +179,7 @@ </el-col> </el-row> </div> - <div class="search" :style="`height: ${more?130:80}px;`"> + <div class="search" :style="`height: ${more?150:80}px;`"> <el-row :gutter="10" style="width: 100%;"> <el-col :span="20" style="display: flex;flex-wrap: wrap;"> <div class="search_thing" style="width: 20%;"> @@ -206,6 +219,37 @@ placeholder="閫夋嫨鏃ユ湡"> </el-date-picker> </div> + </div> + <div class="search_thing" style="width: 20%;" v-if="more"> + <div class="search_label">绾﹀畾鏃堕棿锛�</div> + <div class="search_input"> + <el-date-picker style="width:100%" v-model="componentData.entity.appointed" + type="date" + size="small" + format="yyyy-MM-dd" + value-format="yyyy-MM-dd" + clearable + placeholder="閫夋嫨鏃ユ湡"> + </el-date-picker> + </div> + </div> + <div class="search_thing" style="width: 20%;" v-if="more"> + <div class="search_label" style="width: 130px;">鏍锋満瀹屾垚鏃堕棿锛�</div> + <div class="search_input"> + <el-date-picker style="width:100%" v-model="componentData.entity.issueTime" + type="date" + size="small" + format="yyyy-MM-dd" + value-format="yyyy-MM-dd" + clearable + placeholder="閫夋嫨鏃ユ湡"> + </el-date-picker> + </div> + </div> + <div class="search_thing" style="width: 20%;" v-if="more"> + <div class="search_label">鐢垫満缂栧彿锛�</div> + <div class="search_input"><el-input size="small" placeholder="璇疯緭鍏�" clearable + v-model="componentData.entity.motorNumber" @keyup.enter.native="refreshTable()"></el-input></div> </div> <div class="search_thing" style="width: 20%;" v-if="more"> <div class="search_label">涓嬪崟浜猴細</div> @@ -375,6 +419,9 @@ <el-row style="margin-top: 1px;font-size: 14px;"> <el-col style="font-weight: bold;"><span>鏍峰搧鍚嶇О: </span>{{ item.sample }}</el-col> </el-row> + <el-row style="margin-top: 1px;font-size: 14px;"> + <el-col style="font-weight: bold;"><span>鐢垫満缂栧彿: </span>{{ item.motorNumber }}</el-col> + </el-row> <el-row style="margin-top: 1px;font-size: 14px;" class="ellipsis-multiline"> <el-col style="font-weight: bold;"><span>妫�娴嬮」鐩�: </span>{{ item.item }}</el-col> </el-row> @@ -421,6 +468,9 @@ <el-row style="font-size: 0.20cm;"> <el-col ><span>鏍峰搧鍚嶇О: </span>{{ item.sample }}</el-col> </el-row> + <el-row style="font-size: 0.20cm;"> + <el-col ><span>鐢垫満缂栧彿: </span>{{ item.motorNumber }}</el-col> + </el-row> <el-row style="font-size: 0.20cm;width: 4cm;"> <el-col class="ellipsis-multiline"><span>妫�娴嬮」鐩�: </span>{{ item.item }}</el-col> </el-row> @@ -443,6 +493,36 @@ </el-card> </div> </div> + <el-dialog title="鏍锋満缂栧彿" :visible.sync="BZDialogVisible" width="60%"> + <div class="body" style="max-height: 60vh;" v-if="BZDialogVisible"> + </div> + <table border="1" class="thermal-table" cellpadding="10"> + <tr> + <td>濮旀墭鍗曞彿</td> + <td>鏍峰搧</td> + <td>鏍峰搧缂栧彿</td> + <td>鏍峰搧鍨嬪彿</td> + <td>鐢垫満缂栧彿</td> + </tr> + <template v-for="(item,index) in BZinfo"> + <tr v-for="(m,i) in item.arr" :key="i"> + <td :rowspan="item.arr.length" v-if="i==0">{{item.name}}</td> + <td>{{ m.sample }}</td> + <td>{{ m.sampleCode }}</td> + <td>{{ m.model }}</td> + <td> + <el-input v-model="m.motorNumber" size="small"></el-input> + </td> + </tr> + </template> + </table> + <span slot="footer" class="dialog-footer"> + <el-row> + <el-button @click="BZDialogVisible=false">鍙� 娑�</el-button> + <el-button type="primary" @click="submitForm3" :loading="upLoad">纭� 瀹�</el-button> + </el-row> + </span> + </el-dialog> </div> </template> @@ -451,6 +531,7 @@ import Add from '../do/b1-ins-order/add.vue' import vueQr from 'vue-qr' import PrintJS from 'print-js' +import { Header } from 'iview'; export default { components: { ValueTable, @@ -499,6 +580,9 @@ name:null, engineering:null, production:null, + appointed:null, + issueTime:null, + motorNumber:null, // orderBy: { // field: '', // order: '' @@ -530,7 +614,21 @@ type: 'text', method: 'handleVerify', disabFun: (row, index) => { - return row.state != 0 + let state0 = false + if(this.currentRole=='妫�娴嬩腑蹇冧富浠�'){ + if(row.checkState1||row.checkState1User){ + state0 = true + } + }else if(this.currentRole=='鐮斿彂閮ㄧ粡鐞�'){ + if(row.checkState2||row.checkState2User){ + state0 = true + } + }else if(this.currentRole=='鎶�鏈礋璐d汉'){ + if(row.checkState3||row.checkState3User){ + state0 = true + } + } + return row.state != 0 || state0 ||(this.currentRole!='妫�娴嬩腑蹇冧富浠�'&&this.currentRole!='鐮斿彂閮ㄧ粡鐞�'&&this.currentRole!='鎶�鏈礋璐d汉') } }, { id: 'quash', @@ -549,15 +647,17 @@ disabFun: (row, index) => { return (row.state != 1 && row.state != 0)||(this.tabIndex!=1)||row.isRevocation!=1 } - }, { - font: '鍒嗛厤', - type: 'text', - method: 'handleIssued', - disabFun: (row, index) => { - // return row.state != 1 || !!row.assign - return row.appointed || row.state != 1 - } - }], + }, + // { + // font: '鍒嗛厤', + // type: 'text', + // method: 'handleIssued', + // disabFun: (row, index) => { + // // return row.state != 1 || !!row.assign + // return row.appointed || row.state != 1 + // } + // } + ], linkEvent: { sampleName: { method: 'selectAllByOne' @@ -745,7 +845,10 @@ ], qrData:[], multipleSelection:[], - sonLaboratoryList:[] + sonLaboratoryList:[], + currentRole:'', + BZinfo:[], + BZDialogVisible:false, } }, watch:{ @@ -758,6 +861,9 @@ } } }, + created() { + this.getAuthorizedPersonRole() + }, mounted() { this.entityCopy = this.HaveJson(this.componentData.entity) this.getPower() @@ -769,6 +875,64 @@ methods: { selectMethod(val){ this.multipleSelection = val + }, + async searchPrint(selection){ + let res = await this.$axios.post(this.$api.insOrder.checkNumber,{ + ids:selection.map(m=>m.id).join(',') + }) + if(res.data){ + let arr = [] + for(let i in res.data){ + let obj = { + name:i, + arr:res.data[i], + motorNumber:null, + } + arr.push(obj) + } + this.BZinfo = arr + this.BZDialogVisible = true + return true + }else{ + return false + } + }, + submitForm3(){ + let arr = [] + let num = 0; + this.BZinfo.forEach(m=>{ + arr = arr.concat(m.arr) + }) + arr.forEach(m=>{ + if(!m.motorNumber){ + num++ + } + }) + if(num>0){ + return this.$message.warning("璇疯緭鍏ョ數鏈虹紪鍙�") + } + this.upLoad = true + this.$axios.post(this.$api.insOrder.addNumber,{ + insSamples:arr.map(m=>{ + return { + id:m.id, + motorNumber:m.motorNumber + } + }) + },{ + header: { + 'Content-Type': 'application/json;charset=UTF-8', + }, + noQs:true + }).then(res => { + this.upLoad = false; + if(res.code == 200){ + this.BZDialogVisible = false + this.getLabelPrinting(this.multipleSelection) + this.printDialogVisible = true + this.refreshTable() + } + }) }, getLabelPrinting(selection){ this.loadPint = true; @@ -842,14 +1006,17 @@ font_size: '0.20cm', }); }, - print(){ + async print(){ if(this.multipleSelection.length==0){ this.$message.warning('璇烽�夋嫨涓�鏉℃暟鎹�') return } let selection = this.multipleSelection - this.getLabelPrinting(selection) - this.printDialogVisible = true + let isAdd = await this.searchPrint(selection) + if(!isAdd){ + this.getLabelPrinting(selection) + this.printDialogVisible = true + } }, getAuthorizedPerson() { this.$axios.get(this.$api.user.getUserMenu).then(res => { @@ -861,6 +1028,11 @@ }) }) this.personList = data + }) + }, + getAuthorizedPersonRole() { + this.$axios.get(this.$api.role.getRole).then(res => { + this.currentRole = res.message }) }, refreshTable(e) { @@ -1115,6 +1287,7 @@ playOrder(num) { this.active = num this.examine = 0 + this.getAuthorizedPersonRole() this.refreshTable('page') }, handleTab(m, i) { -- Gitblit v1.9.3