春风项目四线(合箱线、总装线)
hdy
2024-01-24 a0aea8a1fcb338516d94d82856e80bc558375f31
提交 | 用户 | 时间
f4d049 1 <template>
H 2   <div class="app-container">
a0aea8 3     <el-card   class="box-card"  style="height: 60px" >
f4d049 4       <template>
a0aea8 5         <div class="container" type="flex" justify="center" style="text-align:center">
H 6 <!--          <el-row   type="flex" justify="center" style="text-align:center;height: 12px" >-->
7 <!--            <el-col  type="flex" justify="center"  :span="14" style="text-align:center">-->
8               <span style="font-size:22px;color:black"><strong>发动机数据检查</strong></span>
9 <!--            </el-col>-->
10 <!--          </el-row>-->
f4d049 11         </div>
H 12       </template>
13     </el-card>
b51361 14    <el-row :gutter="0"  >
W 15      <el-col :span="14">
a0aea8 16        <el-card   class="box-card" style="margin-top: 5px" >
H 17              <el-form ref="form" :model="form"  label-width="25%"   >
18                <el-form-item prop="engineNo" style="margin-top: 16px">
19                <span slot="label" style="font-size:22px;color:black;"><strong>发动机号</strong></span>
20                  <el-input style="font-size:20px" v-model="form.engineNo" placeholder="请输入发动机号" clearable  @keyup.enter.native="EngineNohandleChange" >
95fb19 21                    <el-button slot="append" plain type="info" @click="EngineNohandleChange(form.engineNo)" icon="el-icon-search"></el-button>
8f6607 22                  </el-input>
f4d049 23                </el-form-item>
H 24              </el-form>
a0aea8 25              <el-form ref="form" :model="form"  label-width="25%"  >
H 26                <el-form-item   prop="productType"style="margin-top: 30px" >
27                   <span slot="label" style="font-size:22px;color:black"><strong>机型</strong></span>
28                  <el-input disabled style="font-size:20px"  value="form.productType" v-model="form.productType" placeholder="" />
f4d049 29                </el-form-item>
H 30              </el-form>
a0aea8 31              <el-form ref="form" :model="form"  label-width="25%"  >
H 32                <el-form-item   prop="orderNo" style="margin-top: 30px">
33                <span  slot="label" style="font-size:22px;color:black"><strong>工单编号</strong></span>
34                  <el-input disabled style="font-size:20px" v-model="form.orderNo" placeholder="" />
f4d049 35                </el-form-item>
H 36              </el-form>
a0aea8 37              <el-form ref="form" :model="form"  label-width="25%"  >
H 38                <el-form-item   prop="currentWorkstation" style="margin-top: 30px">
39                <span slot="label" style="font-size:22px;color:black"><strong>质量状态</strong></span>
40                  <el-input disabled style="font-size:20px" v-model:value="form.add" placeholder="" />
f4d049 41                </el-form-item>
H 42              </el-form>
43          <el-divider></el-divider>
a0aea8 44
f4d049 45          <el-row :gutter="10" class="mb8" type="flex" justify="center"  style="text-align: center">
H 46            <el-col :span="1.5">
95fb19 47              <el-button plain  :disabled="buttondisabled" type="primary" style="width:400px;height:160px" v-hasPermi="['bs:formula:add']" @click="forceOnline">
b51361 48                <span   class="el-icon-thumb"   style="font-size:40px;color:black"></span>
dbe5f1 49                <span style="font-size:45px;color:black"><strong>强制上线</strong></span>
50              </el-button>
f4d049 51            </el-col>
H 52          </el-row>
53        </el-card>
54      </el-col>
8f6607 55
a0aea8 56      <el-col :span="10"  inline style="margin-top: 5px">
8f6607 57        <el-tabs type="border-card"  >
a0aea8 58          <el-card class="custom-content"  style="height: 242px;width:800px">
H 59          <el-col :span="14">
8f6607 60            <span style="font-size:25px"><strong>质量状态</strong></span>
H 61            <el-divider></el-divider>
4b6839 62            {{this.form.engineCheckList}}
8f6607 63          </el-col>
H 64          </el-card>
a0aea8 65          <el-card class="custom-content" style="margin-top: 10px;height: 242px;width:800px" >
H 66          <el-col :span="14"style="  ">
8f6607 67            <span style="font-size:25px"><strong>最终结果</strong></span>
H 68            <el-divider></el-divider>
69            {{queryParams.productType}}
70          </el-col>
71          </el-card>
f4d049 72        </el-tabs>
H 73      </el-col>
74    </el-row>
75   </div>
76 </template>
77 <script>
8f6607 78
95fb19 79 import { listOrderScheduling, getOrderScheduling, delOrderScheduling, addOrderScheduling, updateOrderScheduling } from "@/api/main/bs/orderScheduling/orderScheduling";
H 80 import { listPassingStationCollection, getPassingStationCollection, delPassingStationCollection, addPassingStationCollection, updatePassingStationCollection } from "@/api/main/da/passingStationCollection/passingStationCollection";
81 import {listLineInfo} from "@/api/main/bs/lineInfo/lineInfo";
8f6607 82
f4d049 83 export default {
8f6607 84   components: { },
H 85   options: [],
f4d049 86   props: [],
H 87   data() {
88     return {
95fb19 89       options: [],
H 90       total: 0,
91       engineCheckList:[],
8f6607 92       showFlag:false,
95fb19 93       buttondisabled:true,
8f6607 94       // 查询参数
H 95       queryParams: {
96         pageNum: 1,
97         pageSize: 10,
98         engineNo: null,
95fb19 99         productType:null,
H 100         orderNo:null,
101         qualityStatus:null,
102         currentWorkstation: null,
4b6839 103         add: null,
H 104         engineCheckList:'暂无数据',
8f6607 105       },
H 106       // 表单参数
95fb19 107       form: {
H 108         engineNo: null,
109         productType:null,
110         orderNo:null,
111         qualityStatus:null,
112         currentWorkstation: null,
4b6839 113         add: null,
H 114         engineCheckList:'暂无数据',
95fb19 115       },
4b6839 116       add: null,
8f6607 117     };
f4d049 118   },
H 119   computed: {},
120   watch: {},
4b6839 121   created() {},
f4d049 122   mounted() {},
8f6607 123   methods: {
4b6839 124     reset() {
H 125       this.form = {
126         engineNo:null,
95fb19 127         productType:null,
H 128         orderNo:null,
129         qualityStatus:null,
130         currentWorkstation: null,
4b6839 131         add: null,
H 132         engineCheckList:'暂无数据',
133       };
134       this.resetForm("form");
135     },
8f6607 136     EngineNohandleChange(){
dbe5f1 137       if(this.form.engineNo !== null && this.form.engineNo !== undefined){
4b6839 138         let OrderSchedulingParam = {engineNo: null}
95fb19 139         OrderSchedulingParam.engineNo = this.form.engineNo;
H 140         listOrderScheduling(OrderSchedulingParam).then(response => {
4b6839 141           if(response.total === 1 ){
H 142             this.form.productType = response.rows[0].model
143             this.form.orderNo = response.rows[0].orderNo
144             this.form.qualityStatus = response.rows[0].qualityStatus
145             this.form.currentWorkstation = response.rows[0].currentWorkstation
146             this.form.add= response.rows[0].currentWorkstation+ response.rows[0].qualityStatus
147             if(this.form.qualityStatus ==='不合格'){
148               this.buttondisabled = false;
149             }
150             else{
151               this.buttondisabled = true;
152             }
153           }
154           else{
155             this.reset();
156             this.buttondisabled = true
a873f8 157             const h = this.$createElement;
H 158             this.$message({
159               message: h('p',null, [
160                        h('span', null, '警告 '),
161                        h('i', { style: 'color: black' }, '输入的发动机号有误'),
162                        h()]),
163               type: 'error',
164               center: true,
165               offset:300
166             });
167           }
8f6607 168         });
4b6839 169         let PassingStationCollectionParam = {sfcCode: null}
H 170         PassingStationCollectionParam.sfcCode = this.form.engineNo;
95fb19 171         listPassingStationCollection(PassingStationCollectionParam).then(ponse =>{
4b6839 172           this.engineCheckList = ponse.rows.locationCode ;
H 173           if(ponse.rows.length >= 1 && this.form.engineNo !== undefined){
174             this.form.engineCheckList = ''
175             for (let i = 0; i < ponse.rows.length; i++) {
176               this.form.engineCheckList += '   工位:'+ ponse.rows[i].locationCode+'['+ponse.rows[i].outRsSign+']'
177             }
178           }
179           else{
180             this.form.engineCheckList = '暂无数据'
181           }
95fb19 182         });
dbe5f1 183       }
8f6607 184     },
4b6839 185
95fb19 186
8f6607 187   },
H 188   }
189
f4d049 190
H 191 </script>
4b6839 192 <style scoped>
H 193 ::v-deep .el-input__inner{
a0aea8 194   height: 40px;
4b6839 195 }
H 196 ::v-deep .el-form-item__label {
a0aea8 197   line-height: 40px;
4b6839 198 }
a0aea8 199 .custom-content {
H 200   height: 50%; /* 设置高度为50% */
201 }
a873f8 202 /*.my-custom-modal .el-dialog__wrapper {*/
H 203 /*  width: 400px; !* 设置宽度 *!*/
204 /*  height: 200px; !* 设置高度 *!*/
205 /*  top: 50px; !* 设置距离页面顶部的位置 *!*/
206 /*  left: 50px; !* 设置距离页面左侧的位置 *!*/
207 /*}*/
4b6839 208 </style>