erp 新洋电子
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

153 lines
4.5 KiB

<template>
<view>
<view class="sm-box">
<view class="card">
<view class="title">:</view>
<view class="content">1.量化的需填写真实测量数据</view>
<view class="content">2.无量化检查项填写检查结果结果判定合格的填写OK不合格的填NG</view>
</view>
<view class="content-box-card">
<view class="content-box-card-ul-two">
<view class="content-box-card-list">
<view class="content-box-card-title">物料编号:</view>
<text>{{CyInfo.product_number}}</text>
</view>
<view class="content-box-card-list">
<view class="content-box-card-title">生产日期:</view>
<text>{{CyInfo.production}}</text>
</view>
</view>
<view class="content-box-card-ul-two">
<view class="content-box-card-list">
<view class="content-box-card-title">机型:</view>
<text>{{CyInfo.product_size}}</text>
</view>
<view class="content-box-card-list">
<view class="content-box-card-title">班次:</view>
<picker @change="bindline" :value="lineIndex" :range="line">
<view class="lin-div">
<text>{{line[lineIndex]}}</text>
<image src="../../static/xiala.png"></image>
</view>
</picker>
</view>
</view>
<view class="content-box-card-ul-two">
<!-- <view class="content-box-card-list">
<view class="content-box-card-title">时间段:</view>
<text>2021-07-15</text>
</view> -->
<view class="content-box-card-list">
<view class="content-box-card-title">检测员:</view>
<text>{{info.name}}</text>
</view>
</view>
</view>
</view>
<view class="cyxj-content" style="margin-top: 24upx;">
<view class="cyxj-content-card">
<view class="title">外观</view>
<view class="xx-card">
<view class="xx-title">料号/刻印线/日期清晰正确完整</view>
<view class="xx-ul">
<view class="xx-list" v-for="(item,index) in ifcomplete" :key="index" @tap="bindifcomplete(index)">
<image :src="ifcompleteIds==index?'../../static/xz.png':'../../static/wxz.png'" mode=""></image>
<text>{{item}}</text>
</view>
</view>
<view class="czyj-text">
<textarea value="" placeholder="不良情况分析" />
</view>
<view class="xx-title">不良处置情况</view>
<picker @change="bindMethod" :value="methIds" :range="methList">
<view class="slect-list">
<text>{{methList[methIds]}}</text>
<image src="../../static/xiala.png"></image>
</view>
</picker>
</view>
</view>
<view class="cyxj-content-card">
<view class="xx-card">
<view class="xx-title">无压痕/拉痕/变形</view>
<view class="xx-ul">
<view class="xx-list" v-for="(item,index) in ifcomplete" :key="index" @tap="bindifcomplete(index)">
<image :src="ifcompleteIds==index?'../../static/xz.png':'../../static/wxz.png'" mode=""></image>
<text>{{item}}</text>
</view>
</view>
</view>
</view>
<view class="mid-card">
<view class="left">V1</view>
<view class="right">
<view class="right-list">
<view class="titles">0°天地左右侧,±0.5°</view>
<view class="inp">
<input placeholder="输入" />
</view>
</view>
</view>
</view>
<view class="bzqk-card">
<textarea value="" placeholder="备注情况说明" />
</view>
<view class="submit-btn">
<button type="primary">提交并发起审核</button>
</view>
</view>
</view>
</template>
<script>
import {cyCheckAdd,cyCheckDetail} from "../../api/user.js"
export default {
data() {
return {
line:["白班","夜班"],
lineIndex:0,
ifcomplete:["OK","NG"],
ifcompleteIds:0,
methList:["更换丝锥","丝锥加油","调整丝锥位置","换冲针"],
methIds:0,
planId:0,
CyInfo:{},
info:{},
froms:{
plan_id:'',
model:'',
frequency:'',//班次
remake:'',//,备注
}
};
},
onLoad(e) {
this.pId = e.plan_id;
this.CyInfo = JSON.parse(decodeURIComponent(e.planInfo));
this.getInfo()
},
methods:{
getInfo(){
cyCheckDetail({plan_id:this.pId}).then(res=>{
this.info=res
console.log("详情",res)
})
},
bindline: function(e) {
console.log('picker发送选择改变,携带值为', e.target.value)
this.lineIndex = e.target.value
},
bindMethod(e){
this.methIds = e.target.value
},
bindifcomplete(index){
this.ifcompleteIds=index
}
}
}
</script>
<style lang="scss">
@import "./index.scss"
</style>