licp
2024-12-24 e4bb381c896015c4b87faa002ba6875c06a2fd16
src/components/do/b1-inspect-order-plan/circuit-parameters2.vue
@@ -159,7 +159,7 @@
                  </tr>
                  <tr v-for="(item,index) in n.angleList" :key="index + 'eee'">
                    <td>
                      <el-input size="small" placeholder="角度" v-model="item.value" :disabled="state>1" @blur="handleAngle(item.value,index)"></el-input>
                      <el-input size="small" placeholder="角度" v-model="item.value" :disabled="state>1" @blur="handleAngle(item.value,index,h.band)"></el-input>
                    </td>
                    <td v-for="(m,i) in n.portList" :key="i+'ggg'">
                      <el-input size="small" placeholder="最差值" v-model="n.value[index][i]" v-if="n.value[index]" :disabled="state>1"></el-input>
@@ -310,9 +310,14 @@
    // 初始化数据
    initData(){
      this.allBandList = []
      this.intermodulationNum = 0
      // 处理项目
      this.insProductNew = JSON.parse(JSON.stringify(this.insProduct)).filter(m=>m.inspectionItem.includes('电路试验'))
      this.insProductNew.forEach(async item => {
      this.insProductNew.forEach( item => {
        // 是否存在互调检验项目
        if(item.inspectionItemSubclass.includes('互调')){
          this.intermodulationNum++
        }
        // 获取设备列表
        item.equipOptions = []
      })
@@ -320,6 +325,55 @@
        // 已经存在值时,赋值
        let bandList = this.insProductNew[0].insProductResult2.map(m=>m.frequency)
        bandList = Array.from(new Set(bandList))
        // 上传附件后,设置检验项数据为空的内容
        let sample = this.insProductNew[0];//获取驻波比的数据,如果驻波比值存在而其他检验项值不存在,则根据驻波比设置默认数据
        if(sample.insProductResult2&&sample.insProductResult2.length>0){
          this.insProductNew.forEach(item => {
            if(!item.inspectionItemSubclass.includes('驻波比')&&(!item.insProductResult2||item.insProductResult2.length==0||item.insProductResult2.length<bandList.length)){
              if(!(item.insProductResult2.length>0&&item.insProductResult2.length<bandList.length)){
                item.insProductResult2 = []
              }
              sample.insProductResult2.forEach(m=>{
                let obj = this.HaveJson(m)
                // 如果数据有,但是不够所有频段的数量,则补全数据
                if(item.insProductResult2.length>0&&item.insProductResult2.length<bandList.length){
                  let obj0 = item.insProductResult2.find(n=>m.frequency==n.frequency)
                  if(!obj0){
                    let port = '1,2,3,4'
                    let value = JSON.parse(m.value)
                    let value0 = []
                    value.forEach(n=>{
                      if(!item.inspectionItemSubclass.includes('耦合度')){
                        value0.push(['','','',''])
                      }else{
                        value0.push([''])
                      }
                    })
                    obj.port = port
                    obj.value = JSON.stringify(value0)
                    item.insProductResult2.push(obj)
                  }
                }else{
                  // 如果一条数据都没有,则补全数据
                  let port = '1,2,3,4'
                  let value = JSON.parse(m.value)
                  let value0 = []
                  value.forEach(n=>{
                    if(!item.inspectionItemSubclass.includes('耦合度')){
                      value0.push(['','','',''])
                    }else{
                      value0.push([''])
                    }
                  })
                  obj.port = port
                  obj.value = JSON.stringify(value0)
                  item.insProductResult2.push(obj)
                }
              })
            }
          })
        }
        // 继续回显数据
        this.allBandList = []
        for(let i = 0;i<bandList.length;i++){
          let arr = []
@@ -393,10 +447,6 @@
      }else{
        // 没有值时,初始化页面
        this.insProductNew.forEach(async item => {
          // 是否存在互调检验项目
          if(item.inspectionItemSubclass.includes('互调')){
            this.intermodulationNum++
          }
          // 赋值设备
          item.equipName = ''
          item.equipValue = ''
@@ -589,8 +639,8 @@
      }
      return arr
    },
    // 统一修改角度,如果角度没有带°,则拼接一个
    handleAngle(e,index){
    // 统一修改同一频段的角度,如果角度没有带°,则拼接一个
    handleAngle(e,index,band){
      if(!e){
        return
      }
@@ -599,15 +649,17 @@
        val = val + '°'
      }
      this.allBandList.forEach(item=>{
        item.projectList.forEach(m=>{
          if(m.inspectionItemSubclass.includes('互调')){
            m.angleList.forEach((n,i)=>{
              if(index==i){
                n.value = val
              }
            })
          }
        })
        if(item.band==band){
          item.projectList.forEach(m=>{
            if(m.inspectionItemSubclass.includes('互调')){
              m.angleList.forEach((n,i)=>{
                if(index==i){
                  n.value = val
                }
              })
            }
          })
        }
      })
    },
    handlePort(n){
@@ -674,15 +726,52 @@
        console.log(err)
      })
    },
    saveAll(){
    async saveAll(){
      if(this.allBandList.find(m=>!m.band)){
        this.$message.error('请先填写频段')
        return false
      }else{
        let arr0 = []
        this.allBandList.forEach((h,j)=>{
          this.save(h,j)
          // this.save(h,j)
          let arr = h.projectList.map(item=>{
            if(item.portList&&item.portList.length>0){
              item.value.forEach(m=>{
                m = m.splice(item.portList.length)
              })
            }
            let obj = {
              insProductId:item.id,
              equipValue:this.insProductNew.find(m=>m.id==item.id).equipValue,
              equipName:this.insProductNew.find(m=>m.id==item.id).equipName,
              port:item.portList.map(m=>m.value).join(','),
              angle:item.angleList.map(m=>m.value).join(','),
              value:JSON.stringify(item.value),
              often:item.often
            }
            return obj
          })
          let obj0 = {
            sampleId:this.orderId,
            sonLaboratory:h.projectList[0].sonLaboratory,
            frequency:h.band,
            insProductResult2s:arr
          }
          arr0.push(obj0)
        })
        return true
        let res = await this.$axios.post(this.$api.insOrderPlan.saveInsContext2s, {insProductResultDtos:arr0
        }, {
        headers: {
          'Content-Type': 'application/json'
        },
        noQs:true})
        if(res.code===201){
          this.$message.error('保存失败')
          return false
        }else{
          this.$message.success('已保存')
          return true
        }
      }
    },
    // 更新模板