qy-renren-qt/src/views/modules/work/mttaskinfodet.vue
zwq ff8adae814
All checks were successful
continuous-integration/drone/push Build is passing
更新
2023-04-10 11:00:18 +08:00

287 lines
7.2 KiB
Vue

<template>
<div class="mod-config">
<el-form
:inline="true"
:model="dataForm"
@keyup.enter.native="getDataList()"
>
<el-form-item>
<el-input
v-model="dataForm.key"
placeholder="参数名"
clearable
></el-input>
</el-form-item>
<el-form-item>
<el-button @click="getDataList()">查询</el-button>
<!-- <el-button type="primary" @click="addOrUpdateHandle()">新增</el-button> -->
<el-button type="success" @click="goback()">返回</el-button>
</el-form-item>
</el-form>
<el-table
:data="dataList"
:stripe="true"
:header-cell-style="{
background: '#eef1f6',
color: '#606266',
height: '56px'
}"
border
v-loading="dataListLoading"
style="width: 100%;"
>
<el-table-column
type="index"
label="序号"
header-align="center"
align="center"
width="50"
>
</el-table-column>
<el-table-column
prop="createTime"
header-align="center"
align="center"
label="添加时间"
>
</el-table-column>
<el-table-column
prop="warehousRankName"
header-align="center"
align="center"
label="库位名称"
>
</el-table-column>
<el-table-column
prop="taskType"
header-align="center"
align="center"
label="任务类型"
>
<template slot-scope="scope">
<span>{{
scope.row.taskType === 0
? "出库"
: scope.row.taskType === 1
? "入库"
: "移库"
}}</span>
</template>
</el-table-column>
<el-table-column
prop="targetRoll"
header-align="center"
align="center"
label="目标辊筒"
>
</el-table-column>
<el-table-column
prop="warehousRankName"
header-align="center"
align="center"
label="起点"
>
</el-table-column>
<el-table-column
prop="targetPosition"
header-align="center"
align="center"
label="终点"
>
<template slot-scope="scope">
<span>{{
endPosition.find(item => item.value === scope.row.targetPosition)
?endPosition.find(item => item.value === scope.row.targetPosition).label
: ''
}}</span>
</template>
</el-table-column>
<el-table-column
prop="status"
header-align="center"
align="center"
label="状态"
>
<template slot-scope="scope">
<span>{{
scope.row.status === 0?'未执行'
:scope.row.status === 1?'执行中'
:scope.row.status === 2?'执行完成'
:scope.row.status === 3?'送达滚筒':'执行失败'
}}</span>
</template>
</el-table-column>
<el-table-column
prop="taskDetCode"
header-align="center"
align="center"
label="任务编码"
>
</el-table-column>
<el-table-column
prop="specModel"
header-align="center"
align="center"
label="型号"
>
</el-table-column>
<el-table-column
prop="num"
header-align="center"
align="center"
label="数量"
>
</el-table-column>
<!-- <el-table-column
prop="unit"
header-align="center"
align="center"
label="单位">
</el-table-column>
<el-table-column
prop="isHeight"
header-align="center"
align="center"
label="是否超高">
<template slot-scope="scope">
<span>{{scope.row.isHeight === 0?'不超高' :'超高'}}</span>
</template>
</el-table-column>
<el-table-column
prop="isWeight"
header-align="center"
align="center"
label="是否超重">
<template slot-scope="scope">
<span>{{scope.row.isWeight === 0?'不超重' :'超重'}}</span>
</template>
</el-table-column>
<el-table-column
prop="dateNum"
header-align="center"
align="center"
label="批次号">
</el-table-column> -->
<el-table-column
prop="remarks"
header-align="center"
align="center"
label="备注"
>
</el-table-column>
<!-- <el-table-column
fixed="right"
header-align="center"
align="center"
width="150"
label="操作">
<template slot-scope="scope">
<el-button type="text" size="small" @click="addOrUpdateHandle(scope.row.id)">修改</el-button>
<el-button type="text" size="small" @click="deleteHandle(scope.row.id)">删除</el-button>
</template>
</el-table-column> -->
</el-table>
<!-- 弹窗, 新增 / 修改 -->
<add-or-update
v-if="addOrUpdateVisible"
ref="addOrUpdate"
@refreshDataList="getDataList"
></add-or-update>
</div>
</template>
<script>
import AddOrUpdate from './mttaskinfodet-add-or-update'
export default {
data () {
return {
dataForm: {
key: ''
},
taskId: '',
dataList: [],
endPosition: [
{
value: 290,
label: 'A库出口'
},
{
value: 292,
label: 'B库出口'
}
],
dataListLoading: false,
addOrUpdateVisible: false
}
},
components: {
AddOrUpdate
},
activated () {
this.taskId = this.$route.params.id
this.getDataList()
},
methods: {
// 获取数据列表
getDataList () {
this.dataListLoading = true
this.$http({
url: this.$http.adornUrl('/work/mttaskinfodet/list'),
method: 'get',
params: this.$http.adornParams({
task_id: this.taskId,
page: 1,
limit: 500,
key: this.dataForm.key
})
}).then(({ data }) => {
console.log(data)
if (data && data.code === 0) {
this.dataList = data.list
} else {
this.dataList = []
}
this.dataListLoading = false
})
},
// 新增 / 修改
addOrUpdateHandle (id) {
this.addOrUpdateVisible = true
this.$nextTick(() => {
this.$refs.addOrUpdate.init(id)
})
},
// 删除
deleteHandle (id) {
this.$confirm(`确定对[id=${id}]进行删除操作?`, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.$http({
url: this.$http.adornUrl('/work/mttaskinfodet/delete'),
method: 'post',
data: this.$http.adornData(id, false)
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({
message: '操作成功',
type: 'success',
duration: 1500,
onClose: () => {
this.getDataList()
}
})
} else {
this.$message.error(data.msg)
}
})
})
},
goback () {
this.$router.go(-1)
}
}
}
</script>