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.

192 lines
4.8 KiB

4 years ago
<template>
<view>
4 years ago
<view class="card" v-for="(item,index) in list" :key="index">
4 years ago
<view class="card-left">
<view class="card-up-list">
<view class="card-up-list-list">
4 years ago
<view>物料名称:</view><text>{{item.product_name}}</text>
</view>
4 years ago
<view class="card-right" @tap="open(item.plan_id,item.frequency)">
4 years ago
人员统计
4 years ago
</view>
</view>
<view class="card-up-list">
<view class="card-up-list-list">
4 years ago
<view>物料编号:</view><text>{{item.product_number}}</text>
4 years ago
</view>
</view>
<view class="card-dow-list">
<view class="card-up-list-list">
4 years ago
<view>规格:</view><text>{{item.product_size}}</text>
4 years ago
</view>
<view class="card-up-list-list">
4 years ago
<view>产线:</view><text>{{item.line_title}}</text>
4 years ago
</view>
</view>
</view>
<view class="btn-grounp">
4 years ago
<view v-if="item.status!=1" @tap="openLine(item.plan_id)">开线</view>
<view class="btn-tx" @tap="stopLine(item)">停线</view>
<view v-if="item.status==1" class="btn-xx" @tap="offLine(item.plan_id)">下线</view>
4 years ago
<view class="btn-blp" @tap="badProduct(item)">不良品统计</view>
<view class="btn-back" @tap="rework(item)">返修</view>
4 years ago
</view>
</view>
4 years ago
<uni-popup ref="popup" type="center">
<view class="card-pop">
<view class="pop-list">
<text>班次:</text>
<view class="right-pic">
4 years ago
<text v-if="frequencyId==0">夜班</text>
<text v-if="frequencyId==1">白班</text>
<!-- <image src="../../static/next.png"></image> -->
4 years ago
</view>
</view>
<view class="pop-list">
<text>上线人数:</text>
<input type="number" v-model="froms.in_line" placeholder="请输入上线人数" />
</view>
4 years ago
<!-- <view class="pop-list">
4 years ago
<text>工时投入:</text>
<input type="number" v-model="froms.peoples" placeholder="请输入工时投入" />
4 years ago
</view> -->
4 years ago
<!-- <picker @change="bindStatus" :value="froms.status" :range="status">
4 years ago
<view class="pop-list">
<text>状态:</text>
<view class="right-pic">
4 years ago
<text>{{status[froms.status-1]}}</text>
4 years ago
<image src="../../static/next.png"></image>
</view>
</view>
4 years ago
</picker> -->
4 years ago
<view class="submit" :disabled="buttonState==false?true:false" @tap="tjrsBtn()">提交</view>
4 years ago
</view>
</uni-popup>
4 years ago
</view>
</template>
<script>
4 years ago
import {
4 years ago
firstCheckLists,
4 years ago
openLine,
trtj
4 years ago
} from "../../api/user.js";
4 years ago
import {
mapGetters,
mapMutations
} from 'vuex';
4 years ago
export default {
4 years ago
computed: {
...mapGetters(['userInfo', 'roleType'])
},
4 years ago
onLoad() {
4 years ago
4 years ago
this.getArr();
this.isMenu();
4 years ago
},
4 years ago
onShow() {
this.getData()
},
4 years ago
data() {
return {
4 years ago
list:[],
status:["冲压","喷涂"],
frequency:["夜班", "白班"],
4 years ago
buttonState:false,
4 years ago
froms:{
plan_id:'',
4 years ago
//in_line:'',
4 years ago
peoples:'',
4 years ago
status:1,
frequency:0
4 years ago
},
4 years ago
frequencyId:'',
4 years ago
power: [],
jurisdiction: [],
4 years ago
};
},methods:{
4 years ago
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);
},
4 years ago
bindline: function(e) {
this.froms.frequency = e.target.value
},
bindStatus: function(e) {
4 years ago
console.log("状态",e.target.value)
4 years ago
this.froms.status = e.target.value+1
},
4 years ago
openLine(plan_id){
openLine({id:plan_id}).then(res=>{
4 years ago
this.$functions.success('操作成功').then(() => {
this.getData()
});
4 years ago
})
4 years ago
},
getData(){
4 years ago
firstCheckLists({type:1}).then(res => {
4 years ago
this.list = res;
})
},
4 years ago
stopLine(item){
4 years ago
uni.navigateTo({
4 years ago
url: `../stopLine/stopLine?planInfo=${encodeURIComponent(JSON.stringify(item))}`
4 years ago
});
},
4 years ago
offLine(plan_id){
4 years ago
uni.navigateTo({
4 years ago
url: `../offLine/offLine?plan_id=${plan_id}`
4 years ago
});
},
4 years ago
badProduct(item){
4 years ago
uni.navigateTo({
4 years ago
url: `../badProduct/badProduct?badProduct=${encodeURIComponent(JSON.stringify(item))}`
4 years ago
});
}
,
4 years ago
rework(item){
4 years ago
uni.navigateTo({
4 years ago
url: `../rework/rework?badProduct=${encodeURIComponent(JSON.stringify(item))}`
4 years ago
});
4 years ago
},
open(e){
this.froms.plan_id=e;
console.log("id",this.froms)
// 通过组件定义的ref调用uni-popup方法 ,如果传入参数 ,type 属性将失效 ,仅支持 ['top','left','bottom','right','center']
this.$refs.popup.open('center')
},
4 years ago
tjrsBtn(id,frequencyId){
this.frequencyId=frequencyId;
4 years ago
this.buttonState = false;
4 years ago
trtj(this.froms).then(res=>{
4 years ago
this.$functions.success('提交成功').then(() => {
this.$refs.popup.close('center')
}).catch(res => {
this.buttonState = true;
});
4 years ago
})
4 years ago
}
}
}
</script>
<style lang="scss">
@import "./index.scss";
</style>