qy-renren-qt/src/views/modules/work/mttaskinfodet.vue
2022-05-26 16:00:10 +08:00

219 lines
6.1 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"
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="startPosition"
header-align="center"
align="center"
label="起点">
</el-table-column>
<el-table-column
prop="targetPosition"
header-align="center"
align="center"
label="终点">
</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?'数据接收中': '数据接收完成'}}</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: ''
},
dataList: [],
dataListLoading: false,
addOrUpdateVisible: false
}
},
components: {
AddOrUpdate
},
activated () {
this.getDataList()
},
methods: {
// 获取数据列表
getDataList () {
this.dataListLoading = true
this.$http({
url: this.$http.adornUrl('/work/mttaskinfodet/list'),
method: 'get',
params: this.$http.adornParams({
'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>