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.

263 lines
6.5 KiB

4 years ago
<template>
4 years ago
<view>
<view class="white-card">
<view class="list-list">
<view class="list-title">物料编号</view>
<view class="list-right">
4 years ago
<text>{{ planInfo.product_number }}</text>
4 years ago
</view>
</view>
<view class="list-list">
<view class="list-title">填报日期</view>
<view class="list-right">
4 years ago
<text>{{ planInfo.production }}</text>
4 years ago
</view>
</view>
<view class="list-list">
<view class="list-title">线别</view>
<view class="list-right">
4 years ago
<text>{{ planInfo.line_title }}</text>
<!-- <image class="next" src="../../static/next.png"></image> -->
4 years ago
</view>
</view>
</view>
4 years ago
<view v-for="(item, index) in froms" :key="index" class="white-card"
style="margin-top: 24upx;padding-top: 30upx;padding-bottom: 30upx;">
4 years ago
<view class="mid-card">
4 years ago
<view class="list-reson">
<view class="left">班次</view>
<view class="right">
<text>{{ planInfo.frequency==0?'夜班':'白班' }}</text>
4 years ago
</view>
4 years ago
</view>
<picker @change="reasonChange($event, index)" data-id="item.reason_no_id" mode="selector"
:value="item.reason_no_id" range-key="title" :range="reason">
4 years ago
<view class="list-reson">
<view class="left">不良原因</view>
<view class="right">
4 years ago
<text>{{ reason[item.reasonIndex]?reason[item.reasonIndex].title:'' }}</text>
4 years ago
<image src="../../static/next.png"></image>
</view>
4 years ago
</view>
</picker>
<view class="list-reson">
<view class="left">数量</view>
3 years ago
<view class="right"><input v-model="item.math" type="number" placeholder="请输入" /></view>
4 years ago
</view>
3 years ago
<picker mode="selector"
@change="changeMothod($event, index)"
:value="item.remake" :range="methodList" >
<view class="list-reson">
<view class="left">不良品处置</view>
<view class="right">
<text>{{ methodList[item.remake]?methodList[item.remake]:'请选择' }}</text>
<image src="../../static/next.png"></image>
</view>
</view>
</picker>
3 years ago
<view class="btn-jian" @tap="froms.splice(index, 1)" v-if="index > 0&&type==1&&isMenu(53)">
4 years ago
<image src="../../static/jian.png"></image>
<text>删除</text>
</view>
</view>
</view>
3 years ago
<view class="btn-jia" @tap="add" v-if="type==1&&isMenu(53)">
4 years ago
<image src="../../static/jia.png"></image>
<text>添加</text>
</view>
3 years ago
<view class="submit-btn"><button v-if="type==1&&isMenu(53)" :disabled="buttonState==false?true:false" type="primary"
4 years ago
@tap="submit">提交</button></view>
3 years ago
<view class="submit-btn" v-if="type==2&&isMenu(55)"><button :disabled="buttonState==false?true:false"
4 years ago
type="primary" @tap="examine">
审核</button></view>
4 years ago
</view>
</template>
<script>
4 years ago
import {
reasonNo,
badReasons
} from '../../api/index.js';
import {
4 years ago
noDetail,
noExamine
4 years ago
} from "../../api/user.js";
4 years ago
import {
mapGetters,
mapMutations
} from 'vuex';
4 years ago
export default {
onLoad(e) {
3 years ago
this.type=e.type;
4 years ago
this.planInfo = JSON.parse(decodeURIComponent(e.badProduct));
this.froms[0].plan_id = this.planInfo.plan_id;
reasonNo({
status: 1
}).then(res => {
this.reason = res;
3 years ago
this.getInfo();
4 years ago
});
4 years ago
const index = this.reason.findIndex((role) => role.id === id)
console.log("是三手", this.reason[index])
3 years ago
4 years ago
this.power = this.userInfo.power;
this.getArr();
this.isMenu();
4 years ago
4 years ago
},
data() {
return {
3 years ago
methodList:["返修","报废"],
3 years ago
methodIds:0,
3 years ago
type:0,
4 years ago
planInfo: {},
ifEdit: 0,
frequency: ['白班', '夜班'],
reason: [],
froms: [{
4 years ago
plan_id: 0,
reason_no_id: 0,
4 years ago
math: "",
4 years ago
remake: '',
status: 1,
4 years ago
frequency: 0,
3 years ago
reasonIndex: 0
4 years ago
}],
buttonState: true,
4 years ago
power: [],
3 years ago
jurisdiction: [],
examId:[]
4 years ago
};
4 years ago
},
4 years ago
computed: {
...mapGetters(['userInfo', 'roleType'])
4 years ago
4 years ago
},
4 years ago
methods: {
3 years ago
changeMothod(e, index){
this.froms[index].remake = e.detail.value;
},
4 years ago
getReasonIndex(item) {
return this.reason.findIndex(value => {
return value.id == item.reason_no_id;
});
},
4 years ago
getArr() {
4 years ago
if (this.power.length > 0) {
let newArr = this.power.map(item => {
this.jurisdiction.push(item.id)
})
}
console.log("xinshuzu", this.jurisdiction)
},
isMenu(id) {
console.log("id", id)
return this.jurisdiction.includes(id);
},
4 years ago
frequencyChange(e, index) {
this.froms[index].frequency = e.detail.value;
},
getReasonContent(id) {
let info = this.reason.find(item => {
return (item.id = id);
});
4 years ago
if (info) {
4 years ago
return info.title;
4 years ago
}
4 years ago
return '请选择';
},
reasonChange(e, index) {
4 years ago
this.froms[index].reasonIndex = e.detail.value;
4 years ago
},
add() {
this.froms.push({
plan_id: this.planInfo.plan_id,
reason_no_id: 0,
math: '',
remake: '',
status: 1,
4 years ago
frequency: 0,
3 years ago
reasonIndex: 0
4 years ago
});
},
4 years ago
examine() {
3 years ago
let params = JSON.parse(JSON.stringify(this.froms));
params = params.map(item => {
item.reason_no_id = this.reason[item.reasonIndex].id;
return item;
});
4 years ago
this.$functions.confirm("是否进行此操作?").then(() => {
4 years ago
noExamine({
3 years ago
id: this.examId,
4 years ago
status: 1,
3 years ago
remark: '',
data:params
4 years ago
}).then(res => {
4 years ago
}).then(res => {
this.$functions.success('审核成功').then(() => {
uni.navigateBack();
})
}).catch(res => {
this.buttonState = true;
});
})
4 years ago
4 years ago
},
4 years ago
getInfo() {
noDetail({
plan_id: this.planInfo.plan_id
}).then(res => {
if (res) {
res.map(items => {
3 years ago
this.examId.push(items.id)
4 years ago
this.froms.map(its => {
its.id = items.id
})
})
3 years ago
this.froms = res.map(item => {
item.reasonIndex = this.getReasonIndex(item);
4 years ago
return item;
})
4 years ago
this.ifEdit = 1
3 years ago
console.log("不良品详情", this.examId)
4 years ago
}
})
},
submit() {
3 years ago
console.log("是三手",this.froms);
4 years ago
let params = JSON.parse(JSON.stringify(this.froms));
params = params.map(item => {
4 years ago
item.reason_no_id = this.reason[item.reasonIndex].id;
4 years ago
return item;
});
this.buttonState = false;
this.$functions.confirm("是否进行此操作?").then(() => {
badReasons({
data: params
}).then(res => {
this.$functions.success('提交成功').then(() => {
uni.navigateBack();
})
4 years ago
}).catch(res => {
this.buttonState = true;
4 years ago
});
3 years ago
}).catch(res => {
this.buttonState = true;
});
4 years ago
}
4 years ago
}
4 years ago
};
4 years ago
</script>
<style lang="scss">
4 years ago
@import './index.scss';
4 years ago
</style>