From ee2882cff02d3545b66c7591f88ed4800f730a9a Mon Sep 17 00:00:00 2001 From: spring <2396852758@qq.com> Date: 星期三, 21 五月 2025 10:00:17 +0800 Subject: [PATCH] 消息通知数据自动筛选 --- src/components/do/b1-report-preparation/order.vue | 267 ++++++++++++++++++++++++++++++++++++++++++++++------- 1 files changed, 232 insertions(+), 35 deletions(-) diff --git a/src/components/do/b1-report-preparation/order.vue b/src/components/do/b1-report-preparation/order.vue index 5d001d0..e407b45 100644 --- a/src/components/do/b1-report-preparation/order.vue +++ b/src/components/do/b1-report-preparation/order.vue @@ -21,6 +21,14 @@ <div class="search_input"><el-input size="small" placeholder="璇疯緭鍏�" clearable v-model="componentData.entity.sampleCode" @keyup.enter.native="refreshTable()"></el-input></div> </div> + <div class="search_thing"> + <div class="search_label">璁㈠崟绫诲瀷锛�</div> + <div class="search_input"> + <el-select v-model="componentData.entity.formType" size="small"style="width: 100%;" @change="refreshTable()"> + <el-option v-for="(a,ai) in formType" :key="ai" :label="a.label" :value="a.value"></el-option> + </el-select> + </div> + </div> <div class="search_thing" style="margin-left: 20px;"> <el-button size="small" @click="refresh()">閲� 缃�</el-button> <el-button size="small" type="primary" @click="refreshTable()">鏌� 璇�</el-button> @@ -31,14 +39,100 @@ :url="$api.insOrder.selectInsOrderParameter" :componentData="componentData" :upIndex="upIndex" /> </div> + <el-dialog + title="鐢熸垚鎶ュ憡" + :visible.sync="dialogVisible" + width="60%" + :append-to-body="true" + :modal="!dialogVisible0" + > + <span style="font-size: 16px;">璇烽�夋嫨濮旀墭缂栧彿涓� <span style="color: #3A7BFA">{{currentInfo.entrustCode}}</span> 瑕佺敓鎴愮殑鏁版嵁</span> + <div style="max-height: 75vh;overflow-y: auto;"> + <template v-for="(a,b) in sampleList"> + <el-divider></el-divider> + <p style="margin: 10px 0;font-weight: 700;">鏍峰搧锛�<el-tag size="small">{{a.insSample.sample}}</el-tag> 鏍峰搧缂栧彿锛歿{a.insSample.sampleCode}}</p> + <el-card class="box-card" style="margin-top: 16px;" v-for="(item,index) in a.historyList" :key="index"> + <div slot="header" style="display: flex;justify-content: space-between;"> + <span>{{ item.laboratory }}</span> + </div> + <el-table + :data="item.insOrderUserList" + border + style="width: 100%" @selection-change="list=>handleSelectionChange(list,item.insOrderUserList)"> + <el-table-column + type="selection" + width="55"> + </el-table-column> + <el-table-column + prop="submitTime" + label="鎻愪氦鏃ユ湡" + min-width="150"> + </el-table-column> + <el-table-column + prop="submitUserName" + label="鎻愪氦浜�" + min-width="90"> + </el-table-column> + <el-table-column + prop="term" + label="瀹為獙闃舵" + min-width="120"> + </el-table-column> + <el-table-column + prop="note" + label="瀹為獙鎿嶄綔" + min-width="120"> + </el-table-column> + <el-table-column + prop="tell" + label="鍐嶆妫�楠屽師鍥�" + min-width="120"> + </el-table-column> + <el-table-column + fixed="right" + label="鎿嶄綔" + min-width="100"> + <template slot-scope="scope"> + <el-button @click="lookDetail(item,scope.row.num,a.insSample)" type="text" size="small">鏌ョ湅</el-button> + </template> + </el-table-column> + </el-table> + </el-card> + <p v-if="a.historyList.length==0" style="text-align: center;">鏆傛棤鍙敓鎴愮殑鏁版嵁</p> + </template> + </div> + <span slot="footer" class="dialog-footer"> + <el-button :loading="loading0" @click="handleNoCreate">涓嶇敓鎴�</el-button> + <el-button type="primary" @click="handleCreate" :loading="loading1">鐢� 鎴�</el-button> + </span> + </el-dialog> + <el-dialog + title="妫�楠岃鎯�" + :visible.sync="dialogVisible0" + width="100%" :fullscreen="true" :modal="false" :append-to-body="true"> + <Inspection v-if="dialogVisible0" + :orderId="sampleId" + :orderId0="orderId0" + :userInfo="{}" + :inspectorList="currentItem.inspectorList" + :sonLaboratory="currentItem.laboratory" + :state="2" + :orderStateId="currentItem.orderStateId" + :version="currentItem.version" + :isLook="true" + :num1="currentItem.num1" + :noBack="true"/> + </el-dialog> </div> </template> <script> import ValueTable from '../../tool/value-table.vue' +import Inspection from '../b1-inspect-order-plan/Inspection.vue' export default { components: { ValueTable, + Inspection, }, data() { return { @@ -50,10 +144,11 @@ sampleModel: null, sampleCode: null, outEntrustCode: null, - state: 1, + state: 4, name:null, engineering:null, production:null, + formType:null, }, isIndex: true, showSelect: false, @@ -124,12 +219,24 @@ needSort: ['createTime', 'sendTime', 'type', 'appointed'] }, upIndex: 0, - entityCopy: {} + entityCopy: {}, + dialogVisible:false, + historyList:[], + currentInfo:{}, + currentItem:{}, + loading0:false, + loading1:false, + dialogVisible0:false, + sampleList:[], + sampleId:null, + orderId0:null, + formType:[] } }, mounted() { this.entityCopy = this.HaveJson(this.componentData.entity) this.getPower() + this.selectEnumByCategoryForSampleForm() }, methods:{ // 鏉冮檺鍒嗛厤 @@ -154,42 +261,128 @@ this.refreshTable() }, handleCreateReport(row){ - this.$confirm(`鏄惁鐢熸垚姝ゅ鎵樺崟 ${row.entrustCode} 鐨勬�绘姤鍛�?`, "鎻愮ず", { - confirmButtonText: "鐢熸垚", - cancelButtonText: "涓嶇敓鎴�", - type: "success", - distinguishCancelAndClose: true, - }).then(() => { - this.$axios.post(this.$api.insReport.isReport, { - id:row.id, - state:1 - }).then(res => { - if (res.code === 201) { - return + this.currentInfo = row + this.$axios.get(this.$api.insReport.getInsOrderStateCount+'?id='+row.id).then(res => { + this.sampleList = res.data + this.sampleList.forEach(a=>{ + a.historyList = a.insOrderStates + a.historyList.forEach(item => { + item.arr = [] + this.$set(item,'numValue',1) + if(item.num>0){ + for(var i=0;i<item.num;i++){ + item.arr.push({ + label:'璁板綍'+(i+1), + value:i+1 + }) } - this.$message.success("宸茬敓鎴�") - this.refreshTable() - }).catch(err => { - - console.log(err) - }) - }).catch((e) => { - console.log(e) - if(e=='cancel'){ - this.$axios.post(this.$api.insReport.isReport, { - id:row.id, - state:0 - }).then(res => { - if (res.code === 201) { - return - } - this.refreshTable() - this.$message.success("宸插彇娑堢敓鎴�") - }).catch(err => { - console.log(err) - }) } }) + }) + this.dialogVisible = true + }) + }, + selectEnumByCategoryForSampleForm() { + this.$axios.post(this.$api.enums.selectEnumByCategory, { + category: "璁㈠崟绫诲瀷" + }).then(res => { + this.formType = res.data + }) + }, + // 鐢熸垚鎶ュ憡 + handleCreate(){ + let insReportDto1s = [] + let num = 0; + this.sampleList.forEach(a => { + let insReportDto2s = [] + a.historyList.forEach(item => { + item.insOrderUserList.forEach(item1 => { + if(item1.state==1){ + let obj0 = { + laboratory:item.laboratory, + num:item1.num, + insOrderUsersId:item1.id + } + insReportDto2s.push(obj0) + num++ + } + }) + }) + let obj0 = { + sampleId:a.insSample.id, + insReportDto2s:insReportDto2s + } + insReportDto1s.push(obj0) + }) + if(num==0){ + this.$message.error("璇峰厛閫夋嫨闇�瑕佺敓鎴愮殑璁板綍锛�") + return + } + this.loading1 = true + this.$axios.post(this.$api.insReport.isReport, { + id:this.currentInfo.id, + state:1, + insReportDto1s:insReportDto1s + },{ + headers: { + 'Content-Type': 'application/json' + }}).then(res => { + this.loading1 = false + if (res.code === 201) { + return + } + this.$message.success("宸茬敓鎴�") + this.refreshTable() + this.dialogVisible = false + }).catch(err => { + console.log(err) + }) + }, + // 涓嶇敓鎴� + handleNoCreate(){ + this.loading0 = true + this.$axios.post(this.$api.insReport.isReport, { + id:this.currentInfo.id, + state:0 + },{ + headers: { + 'Content-Type': 'application/json' + }}).then(res => { + this.loading0 = false; + if (res.code === 201) { + return + } + this.refreshTable() + this.$message.success("宸插彇娑堢敓鎴�") + this.dialogVisible = false + }).catch(err => { + console.log(err) + }) + }, + // 鏌ョ湅妫�楠岃鎯� + lookDetail(row,value,insSample){ + this.dialogVisible0 = true + let inspectorList = [] + if(row.userName){ + inspectorList = row.userName.split(',') + } + this.sampleId = insSample.id + this.orderId0 = insSample.insOrderId + this.currentItem = { + num1:value, + inspectorList:inspectorList, + ...row + } + }, + handleSelectionChange(list,list0){ + list0.forEach(item => { + let obj = list.find(item0 => item0.id == item.id) + if(obj){ + item.state = 1 + }else{ + item.state = 0 + } + }) } } } @@ -227,4 +420,8 @@ height: 100%; padding: 20px; } + >>>.el-card__header,>>>.el-card__body{ + padding-top: 10px; + padding-bottom: 10px; + } </style> -- Gitblit v1.9.3