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.
155 lines
4.0 KiB
155 lines
4.0 KiB
<template> |
|
<view> |
|
<view class="sm-box"> |
|
<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>{{ info.product_number }}</text> |
|
</view> |
|
<view class="content-box-card-list"> |
|
<view class="content-box-card-title">规格:</view> |
|
<text>{{ info.product_size }}</text> |
|
</view> |
|
</view> |
|
<view class="content-box-card-ul-two"> |
|
<view class="content-box-card-list"> |
|
<view class="content-box-card-title">生产线:</view> |
|
<text>{{ info.line_title }}</text> |
|
</view> |
|
<view class="content-box-card-list"> |
|
<view class="content-box-card-title">物料名称:</view> |
|
<text>{{ info.product_name }}</text> |
|
</view> |
|
</view> |
|
</view> |
|
</view> |
|
<view class="big-title"> |
|
巡检记录 |
|
</view> |
|
<view class="white-card" > |
|
<view class="lists" v-for="(item,index) in list" :key="index"> |
|
<view class="list-left"> |
|
<view class="list-left-up"> |
|
<view class="list-left-up-left">巡检人:{{item.one}}</view> |
|
<view class="list-left-up-mid">巡检时间:{{item.create_time}}</view> |
|
<view class="list-left-up-right-ok" v-if="item.result==1">OK</view> |
|
<view class="list-left-up-right-no" v-if="item.result==2">NG</view> |
|
</view> |
|
<view class="list-left-dow"> |
|
<view class="list-left-dow-left">审核人:{{item.two}}</view> |
|
<view class="list-left-dow-btn"> |
|
<view @tap="firstInspectionInfo(item.id,item)"> |
|
查看详情 |
|
</view> |
|
<view class="red" v-if="isMenu('首检审核')&&item.two_id==0" @tap="firstInspectionInfo(item.id,item)"> |
|
审核 |
|
</view> |
|
</view> |
|
</view> |
|
</view> |
|
<view class="list-right" v-if="list.length==1||index==0"> |
|
首 |
|
</view> |
|
<view class="list-right" v-if="list.length>=2&&list.length-1==index"> |
|
末 |
|
</view> |
|
</view> |
|
<view class="submit-btn"> |
|
<button type="primary" v-if="isMenu('首检提交')" @tap="addRecord()">新增巡检记录</button> |
|
</view> |
|
</view> |
|
</view> |
|
</template> |
|
|
|
<script> |
|
import {newFirstCheckList,firstCheckSure} from "../../api/user.js" |
|
import { |
|
mapGetters, |
|
mapMutations |
|
} from 'vuex'; |
|
export default { |
|
computed: { |
|
...mapGetters(['userInfo', 'roleType']) |
|
}, |
|
data() { |
|
return { |
|
plan_id:'', |
|
CyInfo:{}, |
|
info:{}, |
|
product_id:0, |
|
list:[], |
|
limit:10, |
|
page:1, |
|
power: [], |
|
jurisdiction: [], |
|
}; |
|
}, |
|
onShow() { |
|
this.isMenu(); |
|
}, |
|
onLoad(e) { |
|
|
|
this.plan_id=e.plan_id; |
|
this.CyInfo = JSON.parse(decodeURIComponent(e.planInfo)); |
|
this.product_id=this.CyInfo.product_id; |
|
this.getData() |
|
this.getArr(); |
|
|
|
}, |
|
computed: { |
|
...mapGetters(['userInfo', 'roleType']) |
|
|
|
}, |
|
methods:{ |
|
getArr() { |
|
let newArr = this.power.map(item => { |
|
if (item.children) { |
|
|
|
item.children.map(items => { |
|
this.jurisdiction.push(items.title) |
|
return items |
|
}) |
|
} |
|
|
|
}) |
|
console.log("xinshuzu", this.jurisdiction) |
|
}, |
|
isMenu(title) { |
|
return this.jurisdiction.includes(title); |
|
}, |
|
getData(){ |
|
let param={ |
|
plan_id:this.plan_id, |
|
limit:this.limit, |
|
page:this.page |
|
}; |
|
newFirstCheckList(param).then(res=>{ |
|
this.info=res, |
|
this.list=this.info.lists.data; |
|
console.log("详情",res) |
|
}) |
|
} |
|
,addRecord(){ |
|
uni.navigateTo({ |
|
url: `../firstInspectionInfo/firstInspectionInfo?plan_id=${this.plan_id}&product_id=${this.product_id}&planInfo=${encodeURIComponent(JSON.stringify(this.CyInfo))}&type=1`, |
|
success: res => {}, |
|
fail: () => {}, |
|
complete: () => {} |
|
}); |
|
}, |
|
firstInspectionInfo(id){ |
|
uni.navigateTo({ |
|
url: `../firstInspectionInfo/firstInspectionInfo?plan_id=${this.plan_id}&product_id=${this.product_id}&id=${id}&planInfo=${encodeURIComponent(JSON.stringify(this.CyInfo))}&type=2`, |
|
success: res => {}, |
|
fail: () => {}, |
|
complete: () => {} |
|
}); |
|
} |
|
} |
|
} |
|
</script> |
|
|
|
<style lang="scss"> |
|
@import "./index.scss" |
|
</style>
|
|
|