更新
This commit is contained in:
parent
4ba7a55b2e
commit
91d78873a1
@ -1,6 +1,12 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="mod-config">
|
<div class="mod-config">
|
||||||
<el-form style="display: flex; align-items: center; justify-content: right;" :inline="true" :model="dataForm" @keyup.enter.native="getDataList()">
|
<el-form style="display: flex; align-items: center; justify-content: right;" :inline="true" :model="dataForm" @keyup.enter.native="getDataList()">
|
||||||
|
<el-form-item>
|
||||||
|
<el-button size="small" type="primary" style="float:left" @click="open()">
|
||||||
|
<icon-svg class="iconClass" name="system"></icon-svg>
|
||||||
|
重置
|
||||||
|
</el-button>
|
||||||
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<!-- <el-select size="small" v-model="dataForm.paramKey" filterable placeholder="名称">
|
<!-- <el-select size="small" v-model="dataForm.paramKey" filterable placeholder="名称">
|
||||||
<el-option
|
<el-option
|
||||||
@ -51,6 +57,18 @@
|
|||||||
prop="code"
|
prop="code"
|
||||||
label="编码">
|
label="编码">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="status"
|
||||||
|
label="状态"
|
||||||
|
>
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{
|
||||||
|
scope.row.status === 0
|
||||||
|
? "空闲"
|
||||||
|
: "占用"
|
||||||
|
}}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="vehicleAlias"
|
prop="vehicleAlias"
|
||||||
label="缩写">
|
label="缩写">
|
||||||
@ -120,6 +138,34 @@
|
|||||||
this.getDataList()
|
this.getDataList()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
open () {
|
||||||
|
this.$confirm('执行此操作前请确定当前没有任务在使用车辆!是否继续?', '提示', {
|
||||||
|
confirmButtonText: '确定',
|
||||||
|
cancelButtonText: '取消',
|
||||||
|
type: 'warning'
|
||||||
|
}).then(() => {
|
||||||
|
this.$http({
|
||||||
|
url: this.$http.adornUrl('/resetStatus'),
|
||||||
|
method: 'post'
|
||||||
|
}).then(({data}) => {
|
||||||
|
if (data && data.code === 0) {
|
||||||
|
this.$message({
|
||||||
|
message: '操作成功',
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getDataList()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}).catch(() => {
|
||||||
|
this.$message({
|
||||||
|
type: 'info',
|
||||||
|
message: '已取消操作'
|
||||||
|
})
|
||||||
|
})
|
||||||
|
},
|
||||||
// 获取数据列表
|
// 获取数据列表
|
||||||
getDataList () {
|
getDataList () {
|
||||||
this.dataListLoading = true
|
this.dataListLoading = true
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2021-11-15 15:17:30
|
* @Date: 2021-11-15 15:17:30
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-03-18 15:00:32
|
* @LastEditTime: 2022-07-08 23:18:46
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -34,9 +34,9 @@
|
|||||||
</el-card>
|
</el-card>
|
||||||
<el-card class="base-container" style="margin-top: 20px; min-height: 200px">
|
<el-card class="base-container" style="margin-top: 20px; min-height: 200px">
|
||||||
<el-row :gutter="30" style="padding: 20px;">
|
<el-row :gutter="30" style="padding: 20px;">
|
||||||
<el-col class="footer-item-container" :span="6" v-for="count in 4" :key="count">
|
<el-col class="footer-item-container" :span="6" v-for="count in 2" :key="count">
|
||||||
<el-card class="footer-item-box base-container" @click.native="selectPlat(count)">
|
<el-card class="footer-item-box base-container" @click.native="selectPlat(count)">
|
||||||
<div class="plat" style="font-size: 24px">液压台{{ count }}</div>
|
<div class="plat" style="font-size: 24px">出库液压台{{ count }}</div>
|
||||||
</el-card>
|
</el-card>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
@ -63,7 +63,7 @@ export default {
|
|||||||
components: {
|
components: {
|
||||||
ExWarehouseInfo
|
ExWarehouseInfo
|
||||||
},
|
},
|
||||||
created () {
|
activated () {
|
||||||
this.getWarehouseList()
|
this.getWarehouseList()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -2,31 +2,77 @@
|
|||||||
<el-dialog
|
<el-dialog
|
||||||
:title="!row ? '新增' : '修改'"
|
:title="!row ? '新增' : '修改'"
|
||||||
:close-on-click-modal="false"
|
:close-on-click-modal="false"
|
||||||
:visible.sync="visible">
|
:visible.sync="visible"
|
||||||
<el-form :model="dataForm" v-loading="formLoading" :rules="dataRule" ref="dataForm" label-width="80px">
|
>
|
||||||
|
<el-form
|
||||||
|
:model="dataForm"
|
||||||
|
v-loading="formLoading"
|
||||||
|
:rules="dataRule"
|
||||||
|
ref="dataForm"
|
||||||
|
label-width="80px"
|
||||||
|
>
|
||||||
<el-form-item label="标识卡号" prop="idenCardNum">
|
<el-form-item label="标识卡号" prop="idenCardNum">
|
||||||
<el-input v-model="dataForm.idenCardNum" @change="setIdenCardNum" ref="idenCardNum" placeholder="标识卡号"></el-input>
|
<el-input
|
||||||
|
v-model="dataForm.idenCardNum"
|
||||||
|
@change="setIdenCardNum"
|
||||||
|
ref="idenCardNum"
|
||||||
|
placeholder="标识卡号"
|
||||||
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="客户名称" prop="customerName">
|
<el-form-item label="客户名称" prop="customerName">
|
||||||
<el-input v-model="dataForm.customerName" disabled placeholder="客户名称"></el-input>
|
<el-input
|
||||||
|
v-model="dataForm.customerName"
|
||||||
|
disabled
|
||||||
|
placeholder="客户名称"
|
||||||
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="材料牌号" prop="materialDes">
|
<el-form-item label="材料牌号" prop="materialDes">
|
||||||
<el-input v-model="dataForm.materialDes" disabled placeholder="材料牌号"></el-input>
|
<el-input
|
||||||
|
v-model="dataForm.materialDes"
|
||||||
|
disabled
|
||||||
|
placeholder="材料牌号"
|
||||||
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="订单号" prop="orderNo">
|
<el-form-item label="订单号" prop="orderNo">
|
||||||
<el-input v-model="dataForm.orderNo" disabled placeholder="订单号"></el-input>
|
<el-input
|
||||||
|
v-model="dataForm.orderNo"
|
||||||
|
disabled
|
||||||
|
placeholder="订单号"
|
||||||
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="产品名称" prop="productName">
|
<el-form-item label="产品名称" prop="productName">
|
||||||
<el-input v-model="dataForm.productName" disabled placeholder="产品名称"></el-input>
|
<el-input
|
||||||
|
v-model="dataForm.productName"
|
||||||
|
disabled
|
||||||
|
placeholder="产品名称"
|
||||||
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="数量" prop="quantity">
|
<el-form-item label="数量" prop="quantity">
|
||||||
<el-input v-model="dataForm.quantity" placeholder="数量"></el-input>
|
<el-input
|
||||||
|
v-model="dataForm.quantity"
|
||||||
|
:max="dataForm.quantity - dataForm.finishQuantity"
|
||||||
|
@change="changes"
|
||||||
|
oninput = "value=value.replace(/[^\d.]/g,'')"
|
||||||
|
type="number"
|
||||||
|
placeholder="数量"
|
||||||
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="单位" prop="unit">
|
<el-form-item label="单位" prop="unit">
|
||||||
<el-input v-model="dataForm.unit" disabled placeholder="单位"></el-input>
|
<el-input
|
||||||
|
v-model="dataForm.unit"
|
||||||
|
disabled
|
||||||
|
placeholder="单位"
|
||||||
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="重量" prop="weight">
|
<el-form-item label="重量" prop="weight">
|
||||||
<el-input v-model="dataForm.weight" placeholder="重量"></el-input>
|
<el-input
|
||||||
|
v-model="dataForm.weight"
|
||||||
|
type="number"
|
||||||
|
:max="dataForm.targetWeight - dataForm.finishWeight"
|
||||||
|
@change="changeWeight"
|
||||||
|
oninput = "value=value.replace(/[^\d.]/g,'')"
|
||||||
|
placeholder="重量"
|
||||||
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<span slot="footer" class="dialog-footer">
|
<span slot="footer" class="dialog-footer">
|
||||||
@ -37,104 +83,113 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
visible: false,
|
visible: false,
|
||||||
dataForm: {
|
dataForm: {
|
||||||
idenCardNum: null,
|
idenCardNum: null,
|
||||||
customerName: null,
|
customerName: null,
|
||||||
materialDes: null,
|
materialDes: null,
|
||||||
orderNo: null,
|
orderNo: null,
|
||||||
productName: null,
|
productName: null,
|
||||||
quantity: null,
|
targetQuantity: null,
|
||||||
unit: null,
|
quantity: null,
|
||||||
weight: null
|
unit: null,
|
||||||
},
|
targetWeight: null,
|
||||||
dataRule: {
|
weight: null
|
||||||
idenCardNum: [
|
},
|
||||||
{ required: true, message: '标识卡号不能为空', trigger: 'blur' }
|
dataRule: {
|
||||||
],
|
idenCardNum: [
|
||||||
quantity: [
|
{ required: true, message: '标识卡号不能为空', trigger: 'blur' }
|
||||||
{ required: true, message: '数量不能为空', trigger: 'blur' }
|
],
|
||||||
],
|
quantity: [
|
||||||
weight: [
|
{ required: true, message: '数量不能为空', trigger: 'blur' }
|
||||||
{ required: true, message: '重量不能为空', trigger: 'blur' }
|
],
|
||||||
]
|
weight: [{ required: true, message: '重量不能为空', trigger: 'blur' }]
|
||||||
},
|
},
|
||||||
formLoading: false,
|
formLoading: false,
|
||||||
row: null,
|
row: null,
|
||||||
editIndex: null
|
editIndex: null
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
changes (value) {
|
||||||
|
if (value > this.dataForm.quantity - this.dataForm.finishQuantity) {
|
||||||
|
this.dataForm.quantity = this.dataForm.quantity - this.dataForm.finishQuantity
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
changeWeight (value) {
|
||||||
init (row, idx) {
|
if (value > this.dataForm.targetWeight - this.dataForm.finishWeight) {
|
||||||
this.visible = true
|
this.dataForm.weight = this.dataForm.targetWeight - this.dataForm.finishWeight
|
||||||
this.formLoading = false
|
|
||||||
this.$nextTick(() => {
|
|
||||||
this.$refs['dataForm'].resetFields()
|
|
||||||
if (row) {
|
|
||||||
this.row = row
|
|
||||||
this.dataForm = row
|
|
||||||
this.editIndex = idx
|
|
||||||
}
|
|
||||||
this.$refs['idenCardNum'].focus()
|
|
||||||
})
|
|
||||||
},
|
|
||||||
setIdenCardNum () {
|
|
||||||
this.formLoading = true
|
|
||||||
if (this.dataForm.idenCardNum) {
|
|
||||||
this.$http({
|
|
||||||
url: this.$http.adornUrl(`/orderInfo/getTaskInfoByIdenCardNum`),
|
|
||||||
method: 'get',
|
|
||||||
params: this.$http.adornParams({
|
|
||||||
'idenCardNum': this.dataForm.idenCardNum
|
|
||||||
})
|
|
||||||
}).then(({data}) => {
|
|
||||||
console.log(data)
|
|
||||||
if (data && data.code === 0) {
|
|
||||||
this.dataForm = data.data
|
|
||||||
this.dataForm.targetQuantity = data.data.quantity
|
|
||||||
this.dataForm.targetWeight = data.data.weight
|
|
||||||
this.dataForm.weight = null
|
|
||||||
this.dataForm.quantity = null
|
|
||||||
} else {
|
|
||||||
this.$message.warning(data.msg)
|
|
||||||
}
|
|
||||||
this.formLoading = false
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
this.$message.warning('请输入标识卡号')
|
|
||||||
}
|
|
||||||
},
|
|
||||||
// 表单提交
|
|
||||||
dataFormSubmit () {
|
|
||||||
this.$refs['dataForm'].validate((valid) => {
|
|
||||||
if (valid) {
|
|
||||||
if (this.editIndex || this.editIndex === 0) {
|
|
||||||
const taskList = JSON.parse(sessionStorage.getItem('autoTaskList'))
|
|
||||||
taskList.splice(this.editIndex, 1, this.dataForm)
|
|
||||||
sessionStorage.setItem('autoTaskList', JSON.stringify(taskList))
|
|
||||||
} else if (sessionStorage.getItem('autoTaskList')) {
|
|
||||||
const taskList = JSON.parse(sessionStorage.getItem('autoTaskList'))
|
|
||||||
taskList.push(this.dataForm)
|
|
||||||
sessionStorage.setItem('autoTaskList', JSON.stringify(taskList))
|
|
||||||
} else {
|
|
||||||
const arr = [this.dataForm]
|
|
||||||
sessionStorage.setItem('autoTaskList', JSON.stringify(arr))
|
|
||||||
}
|
|
||||||
this.$message({
|
|
||||||
message: '操作成功',
|
|
||||||
type: 'success',
|
|
||||||
duration: 1500,
|
|
||||||
onClose: () => {
|
|
||||||
this.visible = false
|
|
||||||
this.$emit('refreshDataList')
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
init (row, idx) {
|
||||||
|
this.visible = true
|
||||||
|
this.formLoading = false
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs['dataForm'].resetFields()
|
||||||
|
if (row) {
|
||||||
|
this.row = row
|
||||||
|
this.dataForm = row
|
||||||
|
this.editIndex = idx
|
||||||
|
}
|
||||||
|
this.$refs['idenCardNum'].focus()
|
||||||
|
})
|
||||||
|
},
|
||||||
|
setIdenCardNum () {
|
||||||
|
this.formLoading = true
|
||||||
|
if (this.dataForm.idenCardNum) {
|
||||||
|
this.$http({
|
||||||
|
url: this.$http.adornUrl(`/orderInfo/getTaskInfoByIdenCardNum`),
|
||||||
|
method: 'get',
|
||||||
|
params: this.$http.adornParams({
|
||||||
|
idenCardNum: this.dataForm.idenCardNum
|
||||||
|
})
|
||||||
|
}).then(({ data }) => {
|
||||||
|
if (data && data.code === 0) {
|
||||||
|
this.dataForm = data.data
|
||||||
|
this.dataForm.targetQuantity = data.data.quantity
|
||||||
|
this.dataForm.targetWeight = data.data.weight
|
||||||
|
this.dataForm.weight = null
|
||||||
|
this.dataForm.quantity = null
|
||||||
|
} else {
|
||||||
|
this.$message.warning(data.msg)
|
||||||
|
}
|
||||||
|
this.formLoading = false
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
this.$message.warning('请输入标识卡号')
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// 表单提交
|
||||||
|
dataFormSubmit () {
|
||||||
|
this.$refs['dataForm'].validate(valid => {
|
||||||
|
if (valid) {
|
||||||
|
if (this.editIndex || this.editIndex === 0) {
|
||||||
|
const taskList = JSON.parse(sessionStorage.getItem('autoTaskList'))
|
||||||
|
taskList.splice(this.editIndex, 1, this.dataForm)
|
||||||
|
sessionStorage.setItem('autoTaskList', JSON.stringify(taskList))
|
||||||
|
} else if (sessionStorage.getItem('autoTaskList')) {
|
||||||
|
const taskList = JSON.parse(sessionStorage.getItem('autoTaskList'))
|
||||||
|
taskList.push(this.dataForm)
|
||||||
|
sessionStorage.setItem('autoTaskList', JSON.stringify(taskList))
|
||||||
|
} else {
|
||||||
|
const arr = [this.dataForm]
|
||||||
|
sessionStorage.setItem('autoTaskList', JSON.stringify(arr))
|
||||||
|
}
|
||||||
|
this.$message({
|
||||||
|
message: '操作成功',
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.visible = false
|
||||||
|
this.$emit('refreshDataList')
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: gtz
|
* @Author: gtz
|
||||||
* @Date: 2022-03-04 10:22:13
|
* @Date: 2022-03-04 10:22:13
|
||||||
* @LastEditors: zwq
|
* @LastEditors: zwq
|
||||||
* @LastEditTime: 2022-07-08 09:41:08
|
* @LastEditTime: 2022-07-08 23:10:55
|
||||||
* @Description: file content
|
* @Description: file content
|
||||||
* @FilePath: \mt-qj-wms-ui\src\views\common\order-auto-submit.vue
|
* @FilePath: \mt-qj-wms-ui\src\views\common\order-auto-submit.vue
|
||||||
-->
|
-->
|
||||||
@ -15,7 +15,7 @@
|
|||||||
<el-form :model="dataForm" v-loading="formLoading" :rules="dataRule" ref="dataForm" label-width="120px">
|
<el-form :model="dataForm" v-loading="formLoading" :rules="dataRule" ref="dataForm" label-width="120px">
|
||||||
<el-form-item label="自动任务类型" prop="autoTaskType">
|
<el-form-item label="自动任务类型" prop="autoTaskType">
|
||||||
<el-select v-model="dataForm.autoTaskType" clearable @change="changeAutoTaskType">
|
<el-select v-model="dataForm.autoTaskType" clearable @change="changeAutoTaskType">
|
||||||
<el-option :value="1" label="淡化炉加工"></el-option>
|
<el-option :value="1" label="氮化炉加工"></el-option>
|
||||||
<el-option :value="2" label="多功能炉加工"></el-option>
|
<el-option :value="2" label="多功能炉加工"></el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@ -55,11 +55,11 @@
|
|||||||
<el-option v-for="item in kilnList" :key="item.id" :value="item.id + ',' + item.code" :label="item.kilnName" />
|
<el-option v-for="item in kilnList" :key="item.id" :value="item.id + ',' + item.code" :label="item.kilnName" />
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="工艺" prop="secProcess" style="margin-bottom: 24px">
|
<!-- <el-form-item label="工艺" prop="secProcess" style="margin-bottom: 24px">
|
||||||
<el-select v-model="dataForm.secProcess" :disabled="!(dataForm.autoTaskType)">
|
<el-select v-model="dataForm.secProcess" :disabled="!(dataForm.autoTaskType)">
|
||||||
<el-option v-for="item in processList" :key="item.id" :value="item.code" :label="item.craftCode" />
|
<el-option v-for="item in processList" :key="item.id" :value="item.code" :label="item.craftCode" />
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item> -->
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="结束加工炉">
|
<el-form-item label="结束加工炉">
|
||||||
<el-form-item label="加工炉" prop="thirdPosition" style="margin-bottom: 24px">
|
<el-form-item label="加工炉" prop="thirdPosition" style="margin-bottom: 24px">
|
||||||
@ -76,7 +76,7 @@
|
|||||||
</el-form>
|
</el-form>
|
||||||
<span slot="footer" class="dialog-footer">
|
<span slot="footer" class="dialog-footer">
|
||||||
<el-button @click="visible = false">取消</el-button>
|
<el-button @click="visible = false">取消</el-button>
|
||||||
<el-button type="primary" @click="dataFormSubmit()">确定</el-button>
|
<el-button type="primary" :loading="btnLoad" @click="dataFormSubmit()">确定</el-button>
|
||||||
</span>
|
</span>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
</template>
|
</template>
|
||||||
@ -96,6 +96,7 @@
|
|||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
visible: false,
|
visible: false,
|
||||||
|
btnLoad: false,
|
||||||
dataForm: {
|
dataForm: {
|
||||||
autoTaskType: null,
|
autoTaskType: null,
|
||||||
processType: null,
|
processType: null,
|
||||||
@ -103,7 +104,7 @@
|
|||||||
firstPosition: null,
|
firstPosition: null,
|
||||||
firstProcess: null,
|
firstProcess: null,
|
||||||
secPosition: null,
|
secPosition: null,
|
||||||
secProcess: null,
|
secProcess: 1,
|
||||||
thirdPosition: null,
|
thirdPosition: null,
|
||||||
thirdProcess: null
|
thirdProcess: null
|
||||||
},
|
},
|
||||||
@ -126,9 +127,6 @@
|
|||||||
secPosition: [
|
secPosition: [
|
||||||
{ required: true, message: '加工炉不能为空', trigger: 'blur' }
|
{ required: true, message: '加工炉不能为空', trigger: 'blur' }
|
||||||
],
|
],
|
||||||
secProcess: [
|
|
||||||
{ required: true, message: '工艺不能为空', trigger: 'blur' }
|
|
||||||
],
|
|
||||||
thirdPosition: [
|
thirdPosition: [
|
||||||
{ required: true, message: '加工炉不能为空', trigger: 'blur' }
|
{ required: true, message: '加工炉不能为空', trigger: 'blur' }
|
||||||
],
|
],
|
||||||
@ -146,6 +144,7 @@
|
|||||||
init (list) {
|
init (list) {
|
||||||
this.dataList.splice(0, this.dataList.length)
|
this.dataList.splice(0, this.dataList.length)
|
||||||
this.dataList = list
|
this.dataList = list
|
||||||
|
this.btnLoad = false
|
||||||
this.visible = true
|
this.visible = true
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs['dataForm'].resetFields()
|
this.$refs['dataForm'].resetFields()
|
||||||
@ -156,7 +155,7 @@
|
|||||||
this.dataForm.firstPosition = null
|
this.dataForm.firstPosition = null
|
||||||
this.dataForm.firstProcess = null
|
this.dataForm.firstProcess = null
|
||||||
this.dataForm.secPosition = null
|
this.dataForm.secPosition = null
|
||||||
this.dataForm.secProcess = null
|
this.dataForm.secProcess = 1
|
||||||
this.dataForm.thirdPosition = null
|
this.dataForm.thirdPosition = null
|
||||||
this.dataForm.thirdProcess = null
|
this.dataForm.thirdProcess = null
|
||||||
},
|
},
|
||||||
@ -246,24 +245,26 @@
|
|||||||
targetPosition: this.dataForm.thirdPosition.split(',')[1]
|
targetPosition: this.dataForm.thirdPosition.split(',')[1]
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
this.btnLoad = true
|
||||||
this.$http({
|
this.$http({
|
||||||
url: this.$http.adornUrl(`/currTask/createAutoTask`),
|
url: this.$http.adornUrl(`/currTask/createAutoTask`),
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data: this.$http.adornData(requestData)
|
data: this.$http.adornData(requestData)
|
||||||
}).then(({data}) => {
|
}).then(({data}) => {
|
||||||
console.log(data)
|
|
||||||
if (data && data.code === 0) {
|
if (data && data.code === 0) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: '操作成功',
|
message: '操作成功',
|
||||||
type: 'success',
|
type: 'success',
|
||||||
duration: 1500,
|
duration: 1500,
|
||||||
onClose: () => {
|
onClose: () => {
|
||||||
|
this.btnLoad = false
|
||||||
this.visible = false
|
this.visible = false
|
||||||
sessionStorage.setItem('autoTaskList', '')
|
sessionStorage.setItem('autoTaskList', '')
|
||||||
this.$emit('refreshDataList')
|
this.$emit('refreshDataList')
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
|
this.btnLoad = false
|
||||||
this.$message.warning(data.msg)
|
this.$message.warning(data.msg)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item style="margin-left:1%">
|
<el-form-item style="margin-left:1%">
|
||||||
<el-button type="primary" size="small" @click="submitTask()">提交任务</el-button>
|
<el-button type="primary" size="small" :loading="btnLoad" @click="submitTask()">提交任务</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<el-table
|
<el-table
|
||||||
@ -120,6 +120,7 @@
|
|||||||
export default {
|
export default {
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
|
btnLoad: false,
|
||||||
startPosition: '',
|
startPosition: '',
|
||||||
kilnId: '',
|
kilnId: '',
|
||||||
craftCode: '',
|
craftCode: '',
|
||||||
@ -229,6 +230,7 @@
|
|||||||
} else if (this.processType !== 0 && this.processType !== 1) {
|
} else if (this.processType !== 0 && this.processType !== 1) {
|
||||||
this.$message.warning('请选择加工类型')
|
this.$message.warning('请选择加工类型')
|
||||||
} else {
|
} else {
|
||||||
|
this.btnLoad = true
|
||||||
this.$confirm(`确定提交任务?`, '提示', {
|
this.$confirm(`确定提交任务?`, '提示', {
|
||||||
confirmButtonText: '确定',
|
confirmButtonText: '确定',
|
||||||
cancelButtonText: '取消',
|
cancelButtonText: '取消',
|
||||||
@ -249,12 +251,14 @@
|
|||||||
}).then(({data}) => {
|
}).then(({data}) => {
|
||||||
if (data && data.code === 0) {
|
if (data && data.code === 0) {
|
||||||
this.$message.success('任务提交成功')
|
this.$message.success('任务提交成功')
|
||||||
|
this.btnLoad = false
|
||||||
this.dataList = []
|
this.dataList = []
|
||||||
sessionStorage.setItem('taskList', '')
|
sessionStorage.setItem('taskList', '')
|
||||||
this.startPosition = '选择起点'
|
this.startPosition = '选择起点'
|
||||||
this.kilnId = '选择窑炉'
|
this.kilnId = '选择窑炉'
|
||||||
this.targetPosition = null
|
this.targetPosition = null
|
||||||
} else {
|
} else {
|
||||||
|
this.btnLoad = false
|
||||||
this.$message.warning(data.msg)
|
this.$message.warning(data.msg)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -73,10 +73,6 @@
|
|||||||
prop="weight"
|
prop="weight"
|
||||||
label="物料重量">
|
label="物料重量">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
|
||||||
prop="waitWeight"
|
|
||||||
label="实际重量">
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
<el-table-column
|
||||||
fixed="right"
|
fixed="right"
|
||||||
header-align="center"
|
header-align="center"
|
||||||
@ -174,7 +170,7 @@
|
|||||||
components: {
|
components: {
|
||||||
orderDetail
|
orderDetail
|
||||||
},
|
},
|
||||||
created () {
|
activated () {
|
||||||
this.getDataList()
|
this.getDataList()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -158,7 +158,7 @@ export default {
|
|||||||
statusList
|
statusList
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created () {
|
activated () {
|
||||||
this.getDataList()
|
this.getDataList()
|
||||||
this.timer = setInterval(this.getDataList, 180000)
|
this.timer = setInterval(this.getDataList, 180000)
|
||||||
},
|
},
|
||||||
|
@ -94,7 +94,7 @@
|
|||||||
carList: []
|
carList: []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created () {
|
activated () {
|
||||||
this.getCarList()
|
this.getCarList()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -102,7 +102,7 @@ export default {
|
|||||||
kilnList: []
|
kilnList: []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created () {
|
activated () {
|
||||||
this.getKilnList()
|
this.getKilnList()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -86,12 +86,12 @@
|
|||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span>{{
|
<span>{{
|
||||||
scope.row.taskType === 0
|
scope.row.taskType === 0
|
||||||
? "缓存到窑炉加工"
|
? "入库到窑炉"
|
||||||
: scope.row.taskType === 1
|
: scope.row.taskType === 1
|
||||||
? "出炉到缓存"
|
? "入库到缓存"
|
||||||
: scope.row.taskType === 2
|
: scope.row.taskType === 2
|
||||||
? "缓存出库"
|
? "窑炉出库到缓存区"
|
||||||
: "入库缓存"
|
: "缓存区出库"
|
||||||
}}</span>
|
}}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
@ -173,7 +173,7 @@ export default {
|
|||||||
statusList
|
statusList
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created () {
|
activated () {
|
||||||
this.getDataList()
|
this.getDataList()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
Loading…
Reference in New Issue
Block a user