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.

520 lines
13 KiB

10 months ago
<template>
<!-- 添加维修工单 -->
10 months ago
<view class="add-form-container">
<u-form :model="form" ref="form1" label-width="160rpx">
<u-form-item label="申请主题" prop="name" required>
<u-input v-model="form.name" placeholder="请输入申请主题" />
</u-form-item>
</u-form>
<view class="list">
<view class="title">
<span>*</span>申请备件
</view>
<view class="item " v-for="(item,index) in form.subList" :key="index">
<view class="item-box">
<view class="spare-title">
<view class="title-txt">
{{item.name}}
</view>
</view>
<u-row gutter="16">
<u-col :span="24">
<view class="dec">
类型:{{`${item.type=='DEVICE'?'设备' : '模具'}`}}
</view>
</u-col>
<u-col :span="24">
<view class="dec">
{{`${item.type=='DEVICE'?'设备' : '模具'}`}}:{{item.deviceName}}
</view>
</u-col>
<u-col :span="24">
<view class="dec">
是否以旧换新:{{item.isRadeIn=='TRUE'?'是' :'否'}}
</view>
</u-col>
<u-col :span="24">
<view class="dec">
库存:{{item.currentQty}}
</view>
</u-col>
<u-col :span="24">
<view class="dec">
数量:{{item.qty}}
</view>
</u-col>
</u-row>
</view>
<u-icon name="minus-circle" color="#aaaaaa" size="60" @click="delSpareParts(index)"></u-icon>
</view>
<view class="add-btn">
<u-button type="primary" @click="open"><u-icon name="plus-circle" color="#ffffff"
size="36"></u-icon>添加备件</u-button>
</view>
</view>
10 months ago
<view class="footer">
<view class="btns">
<button class="reset" @click="reset">重置</button>
<button class="sure" @click="submit" :loading='loading' :disabled='loading'>确定</button>
10 months ago
</view>
<view style="height: constant(safe-area-inset-bottom); height: env(safe-area-inset-bottom);"></view>
</view>
<!-- 添加备件 -->
10 months ago
<u-popup v-model="isPopupShow" mode="center" border-radius="14">
<view class="popup-title">添加备件</view>
<view class="popup">
<u-form :model="form1" ref="form1" label-width="200rpx">
<u-form-item :label="`备件`" prop="number" required>
<view class="select" @click="openSingleColumn('itemNumber',form1.itemNumber,sparePartsList)">
<view class="input" v-if='form1.itemNumber'>
{{selectFormat(form1.itemNumber,sparePartsList)}}
</view>
<view class="placeholder" v-else>
请选择备件
</view>
<u-icon name="arrow-right" color="#aaaaaa" size="28"></u-icon>
</view>
</u-form-item>
<u-form-item label="类型" prop="type" required>
<view class="select" @click="openSingleColumn('type',form1.type,deviceMoldType)">
<view class="input" v-if='form1.type'>
{{selectFormat(form1.type,deviceMoldType)}}
</view>
<view class="placeholder" v-else>
{{`请选择类型`}}
</view>
<u-icon name="arrow-right" color="#aaaaaa" size="28"></u-icon>
</view>
</u-form-item>
<u-form-item :label="`${form1.type=='DEVICE'?'设备' : '模具'}`" prop="deviceNumber" required>
<view class="select" @click="openSingleColumn('deviceNumber',form1.deviceNumber,deviceList)">
<view class="input" v-if='form1.deviceNumber'>
{{selectFormat(form1.deviceNumber,deviceList)}}
</view>
<view class="placeholder" v-else>
{{`请选择${form1.type=='DEVICE'?'设备' : '模具'}`}}
</view>
<u-icon name="arrow-right" color="#aaaaaa" size="28"></u-icon>
</view>
</u-form-item>
<u-form-item label="是否以旧换新" prop="isRadeIn" required class="disabled">
<u-radio-group v-model="form1.isRadeIn" disabled>
<u-radio name="TRUE"></u-radio>
<u-radio name="FALSE"></u-radio>
</u-radio-group>
</u-form-item>
<u-form-item label="库存" prop="currentQty" required class="disabled">
<u-input v-model="form1.currentQty" type="number" disabled placeholder="请输入库存" />
</u-form-item>
<u-form-item label="数量" prop="qty" required>
<u-input v-model="form1.qty" type="number" placeholder="请输入数量" />
</u-form-item>
</u-form>
10 months ago
</view>
<view class="popup-footer">
<view @click="isPopupShow = false">取消</view>
10 months ago
<view class="sure" @click="addSpare">确认</view>
</view>
</u-popup>
<u-select v-model="singleColumnShow" mode="single-column" :default-value='singleColumnDefaultValue'
:list="singleColumnList" @confirm="chooseSingleColumn"></u-select>
10 months ago
</view>
</template>
<script>
import * as sparePartsApplicationApi from "@/api/sparePartsApplication.js"
import * as sparePartsApi from "@/api/spareParts.js"
import * as deviceApi from "@/api/device.js"
import * as deptApi from "@/api/dept.js"
import * as dictApi from "@/api/dict.js"
import * as moldApi from "@/api/mold.js"
10 months ago
export default {
data() {
return {
loading: false,
type: "",
// 备件弹窗
isPopupShow: false,
sparePartsList: [],
deviceList: [], //设备列表
// 下拉框字段
singleColumnShow: false,
singleColumnDefaultValue: [],
singleColumnList: [],
field: '',
10 months ago
form: {
name: '',
subList:[]
10 months ago
},
form1: {
itemNumber: "",
type:'',
deviceNumber: '',
isRadeIn: '',
currentQty: '',
qty: ''
10 months ago
},
deviceMoldType:[],
10 months ago
}
},
methods: {
// 触发提交表单
submit() {
// 校验
if (!this.form.name) {
this.$modal.showToast('请输入主题')
return;
}
if (this.form.subList.length === 0) {
this.$modal.showToast('请选择备件')
10 months ago
return;
}
this.$modal.confirm('是否添加备件申请').then(() => {
this.$modal.loading('加载中')
this.loading = true
sparePartsApplicationApi.sparePartsApplicationCreate(this.form).then((res) => {
this.$modal.closeLoading()
if (res.data) {
this.$modal.showToast('添加成功')
setTimeout(() => {
this.$tab.navigateBack()
this.loading = false
}, 1500)
} else {
this.$modal.showToast('添加失败')
this.loading = false
}
}).catch(() => {
this.$modal.closeLoading()
this.loading = false
})
})
10 months ago
},
// 重置
reset() {
if (this.form.id) {
this.form.classes = '';
this.form.faultType = ''
} else {
this.form = {}
}
10 months ago
},
// 获取人员列表
async getSelecUser() {
let data = {
classType: this.type,
factoryAreaNumber: this.factoryAreaNumber,
flag: 1
}
let arr = []
if (this.form.maintenances) {
arr = this.form.maintenances.split(',')
}
await deptApi.getSelecUser(data).then(res => {
res.data.forEach(item => {
item.checked = false
arr.forEach(cur => {
if (item.id == cur) {
item.checked = true
}
})
})
this.selecUserList = res.data
})
10 months ago
},
selectFormat(val, array) {
let str = array.filter(item => item.value == val)[0].label
return str
},
// 单列模式
openSingleColumn(field, val, list) {
this.singleColumnList = list
this.field = field
if (val) {
this.singleColumnDefaultValue = [list.findIndex(item => item.value == val)]
} else {
this.singleColumnDefaultValue = []
}
this.singleColumnShow = true
},
// 单列模式点击确定之后
chooseSingleColumn(e) {
this.form1[this.field] = e[0].value
if (this.field == 'itemNumber') {
this.choosesingleColumnItem = this.singleColumnList.filter(item => item.number == e[0].value)
this.form1.isRadeIn = this.choosesingleColumnItem[0].isRadeIn
this.form1.currentQty = this.choosesingleColumnItem[0].qty
}
if (this.field == 'type') {
this.form1.deviceNumber =''
this.form1.deviceName =''
}
this.getApplyDeviceList()
this.singleColumnShow = false
this.$forceUpdate()
},
// 获取备件列表
async getApplySparePartsList() {
await sparePartsApi.getApplySparePartsList().then(res => {
res.data.map(item => {
item.value = item.number
item.label = item.name
})
this.sparePartsList = res.data
10 months ago
})
},
// 获取设备列表
async getApplyDeviceList() {
console.log(this.form1.type)
if (this.form1.type == 'DEVICE') {
await deviceApi.getApplyDeviceList().then(res => {
res.data.map(item => {
item.value = item.number
item.label = item.name
})
this.deviceList = res.data
})
} else if (this.form1.type == 'MOLD') {
moldApi.getApplyMoldList().then((res) => {
res.data.map(item => {
item.value = item.number
item.label = item.name
})
this.deviceList = res.data
})
}
},
// 打开弹窗
open() {
this.form1 = {
itemNumber: "",
type:'',
deviceNumber: '',
isRadeIn: '',
currentQty: "",
qty: '',
}
this.isPopupShow = true
},
// 添加配件
addSpare() {
if (!this.form1.itemNumber) {
this.$modal.showToast('请选择备件')
return;
}
if (!this.form1.deviceNumber) {
this.$modal.showToast('请选择设备')
return;
}
if (!this.form1.qty) {
this.$modal.showToast('请输入数量')
return;
}
if (this.form1.qty > this.form1.currentQty) {
this.$modal.showToast('数量不可以大于库存')
return;
}
this.form1.name = this.selectFormat(this.form1.itemNumber, this.sparePartsList)
this.form1.deviceName = this.selectFormat(this.form1.deviceNumber, this.deviceList)
if (this.form.subList && this.form.subList.length > 0) {
let arr = this.form.subList.filter(item => item.itemNumber == this.form1.itemNumber)
if (arr && arr.length > 0) {
this.$modal.showToast('该备件已添加')
return;
}
}
this.form.subList.push(this.form1)
10 months ago
this.isPopupShow = false
},
// 删除备件
delSpareParts(index) {
this.form.subList.splice(index, 1)
10 months ago
}
},
async onLoad(option) {
if (option.type) this.type = option.type;
if (option.factoryAreaNumber) this.factoryAreaNumber = option.factoryAreaNumber;
if (option.number) this.form.maintenanceNumber = option.number;
if (option.data && JSON.parse(decodeURIComponent(option.data)) && JSON.parse(decodeURIComponent(option
.data)).id) {
this.form = JSON.parse(decodeURIComponent(option.data))
this.$set(this.form, 'subList', this.form.subList)
};
this.deviceMoldType = await dictApi.getDict('device_mold_type')
console.log(this.deviceMoldType)
await this.getApplySparePartsList()
10 months ago
}
}
</script>
<style lang="scss" scoped>
.add-form-container {
min-height: calc(100vh - 140rpx);
background: white;
padding: 0px 0rpx 140rpx;
10 months ago
}
.u-form-item {
padding: 20rpx 30rpx;
}
10 months ago
.disabled {
background: #f5f5f5;
10 months ago
}
.footer {
position: fixed;
bottom: 0px;
left: 0px;
width: 100%;
z-index: 22;
10 months ago
}
.btns {
display: flex;
button {
flex: 1;
}
.sure {
background: #409eff;
color: white;
border-radius: 0px;
10 months ago
&::after {
border: 1px solid #409eff;
border-radius: 0px;
}
}
.reset {
background: #F5F5F5;
border-radius: 0px;
&::after {
border-radius: 0px;
}
}
}
.right-button {
background: #409eff;
color: white;
padding: 0rpx 30rpx;
border-radius: 16rpx;
text-align: center;
font-size: 28rpx;
}
.select {
display: flex;
align-items: center;
height: 72rpx;
width: 100%;
.input {
flex: 1;
font-size: 28rpx;
color: #000000;
}
.placeholder {
flex: 1;
font-size: 28rpx;
color: rgb(192, 196, 204);
}
}
.title {
padding: 32rpx 0rpx;
position: relative;
span {
position: absolute;
left: -16rpx;
color: #fa3534;
top: 19px;
}
}
.list {
padding: 0rpx 30rpx;
.item {
display: flex;
margin-bottom: 20rpx;
.item-box {
background: #F5F5F5;
border-radius: 12rpx;
flex: 1;
width: 0rpx;
}
.spare-title {
padding: 20rpx 30rpx;
border-bottom: 1px solid #e4e4e4;
.title-txt {
color: #409eff;
font-size: 30rpx;
font-weight: bold;
}
}
.dec {
color: #9c9c9c;
padding: 20rpx 30rpx 20rpx;
}
}
}
.add-btn {
display: flex;
justify-content: flex-start;
align-items: center;
10 months ago
}
.popup-title {
text-align: center;
font-size: 32rpx;
font-weight: bold;
color: #409eff;
padding: 30rpx 30rpx 0px
10 months ago
}
.popup {
width: 600rpx;
padding: 30rpx 0rpx 30rpx;
10 months ago
}
.popup-footer {
10 months ago
display: flex;
border-top: 1px solid #e4e4e4;
view {
10 months ago
line-height: 100rpx;
flex: 1;
text-align: center;
&.sure {
10 months ago
color: #409eff;
}
}
}
::v-deep .u-checkbox-group {
display: grid !important;
}
10 months ago
</style>