384 lines
11 KiB
Vue
384 lines
11 KiB
Vue
|
|
<template>
|
||
|
|
<div class="fullHeight whiteBlock">
|
||
|
|
<div style="padding: 15px 15px 0">
|
||
|
|
<p class="pageTitle">采购管理</p>
|
||
|
|
<el-form
|
||
|
|
:inline="true"
|
||
|
|
ref="searchForm"
|
||
|
|
:model="searchForm"
|
||
|
|
size="medium"
|
||
|
|
>
|
||
|
|
<el-form-item label="物料名称">
|
||
|
|
<el-input
|
||
|
|
v-model="searchForm.warehouseName"
|
||
|
|
placeholder="请输入"
|
||
|
|
></el-input>
|
||
|
|
</el-form-item>
|
||
|
|
|
||
|
|
<el-form-item label="规格型号">
|
||
|
|
<el-input
|
||
|
|
v-model="searchForm.warehousePos"
|
||
|
|
placeholder="请输入"
|
||
|
|
></el-input>
|
||
|
|
</el-form-item>
|
||
|
|
|
||
|
|
<el-form-item>
|
||
|
|
<el-button type="primary" plain @click="getList">{{
|
||
|
|
$t('message.energyManage.waybill.query')
|
||
|
|
}}</el-button>
|
||
|
|
<el-button type="warning" plain @click="refresh">{{
|
||
|
|
$t('message.deviceManage.refresh')
|
||
|
|
}}</el-button>
|
||
|
|
<el-button type="primary" size="medium" @click="add">新增</el-button>
|
||
|
|
</el-form-item>
|
||
|
|
</el-form>
|
||
|
|
</div>
|
||
|
|
<div class="table_wrap whiteBlock">
|
||
|
|
<el-table class="tables" :data="List">
|
||
|
|
<el-table-column
|
||
|
|
prop="warehouseName"
|
||
|
|
label="物料名称"
|
||
|
|
align="center"
|
||
|
|
></el-table-column>
|
||
|
|
<el-table-column
|
||
|
|
prop="warehousePos"
|
||
|
|
align="center"
|
||
|
|
label="规格型号"
|
||
|
|
></el-table-column>
|
||
|
|
<el-table-column
|
||
|
|
prop="header"
|
||
|
|
align="center"
|
||
|
|
label="项目计划用量"
|
||
|
|
></el-table-column>
|
||
|
|
<el-table-column
|
||
|
|
prop="headerPhone"
|
||
|
|
align="center"
|
||
|
|
label="库存数"
|
||
|
|
></el-table-column>
|
||
|
|
<el-table-column
|
||
|
|
prop="headerPhone"
|
||
|
|
align="center"
|
||
|
|
label="安全库存数"
|
||
|
|
></el-table-column>
|
||
|
|
<el-table-column
|
||
|
|
prop="headerPhone"
|
||
|
|
align="center"
|
||
|
|
label="需采购数量"
|
||
|
|
></el-table-column>
|
||
|
|
<el-table-column prop="remark" label="备注" align="center">
|
||
|
|
</el-table-column>
|
||
|
|
<el-table-column label="操作" align="center">
|
||
|
|
<template slot-scope="scope">
|
||
|
|
<div class="tableBtns" style="margin-left: 60px !important;">
|
||
|
|
<div @click="edit(scope.row)" class="operationText">
|
||
|
|
<img
|
||
|
|
src="@/assets/images/icon-edit.png"
|
||
|
|
width="15px"
|
||
|
|
height="15px"
|
||
|
|
/>
|
||
|
|
<span>编辑</span>
|
||
|
|
</div>
|
||
|
|
<div @click="deleteDev(scope.row)" class="operationText">
|
||
|
|
<img
|
||
|
|
src="@/assets/images/icon-delete.png"
|
||
|
|
width="15px"
|
||
|
|
height="15px"
|
||
|
|
/>
|
||
|
|
<span>删除</span>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
</el-table-column>
|
||
|
|
</el-table>
|
||
|
|
<el-pagination
|
||
|
|
class="pagerBox"
|
||
|
|
@size-change="SizeChange"
|
||
|
|
@current-change="CurrentChange"
|
||
|
|
:current-page="pagInfo.pageNo"
|
||
|
|
:page-sizes="$store.state.PAGESIZRS"
|
||
|
|
:page-size="pagInfo.pageSize"
|
||
|
|
layout="total, sizes, prev, pager, next"
|
||
|
|
:total="Number(pagInfo.total)"
|
||
|
|
background
|
||
|
|
></el-pagination>
|
||
|
|
</div>
|
||
|
|
<!-- 新增仓库弹框 -->
|
||
|
|
<el-dialog
|
||
|
|
:modal-append-to-body="false"
|
||
|
|
@close="close"
|
||
|
|
:title="title"
|
||
|
|
:visible.sync="dialogShow"
|
||
|
|
width="667px"
|
||
|
|
>
|
||
|
|
<div class="dialog_content">
|
||
|
|
<el-form
|
||
|
|
size="medium"
|
||
|
|
ref="addEditForm"
|
||
|
|
:model="addEditForm"
|
||
|
|
:rules="addEditRules"
|
||
|
|
label-width="120px"
|
||
|
|
class="dialogFormBox"
|
||
|
|
>
|
||
|
|
<el-form-item label="物料名称" prop="warehouseName">
|
||
|
|
<el-input
|
||
|
|
v-model="addEditForm.warehouseName"
|
||
|
|
placeholder="请输入"
|
||
|
|
></el-input>
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="规格型号" prop="warehousePos">
|
||
|
|
<el-input
|
||
|
|
v-model="addEditForm.warehousePos"
|
||
|
|
placeholder="请输入"
|
||
|
|
></el-input>
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="项目计划用量" prop="header">
|
||
|
|
<el-input
|
||
|
|
v-model="addEditForm.header"
|
||
|
|
placeholder="请输入"
|
||
|
|
></el-input>
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="库存数" prop="headerPhone">
|
||
|
|
<el-input
|
||
|
|
v-model="addEditForm.headerPhone"
|
||
|
|
placeholder="请输入"
|
||
|
|
></el-input>
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="安全库存数" prop="remark">
|
||
|
|
<el-input
|
||
|
|
v-model="addEditForm.remark"
|
||
|
|
placeholder="请输入"
|
||
|
|
></el-input>
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="需采购数量" prop="remark">
|
||
|
|
<el-input
|
||
|
|
v-model="addEditForm.remark"
|
||
|
|
placeholder="请输入"
|
||
|
|
></el-input>
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="备注" prop="remark">
|
||
|
|
<el-input
|
||
|
|
v-model="addEditForm.remark"
|
||
|
|
placeholder="请输入"
|
||
|
|
></el-input>
|
||
|
|
</el-form-item>
|
||
|
|
|
||
|
|
<div class="dialog-footer">
|
||
|
|
<el-button
|
||
|
|
class="cancleBtn"
|
||
|
|
@click="dialogShow = false"
|
||
|
|
icon="el-icon-circle-close"
|
||
|
|
size="medium"
|
||
|
|
>{{ $t('message.deviceManage.cancel') }}
|
||
|
|
</el-button>
|
||
|
|
<el-button
|
||
|
|
type="primary"
|
||
|
|
icon="el-icon-circle-check"
|
||
|
|
@click="submit"
|
||
|
|
size="medium"
|
||
|
|
>{{ $t('message.deviceManage.save') }}
|
||
|
|
</el-button>
|
||
|
|
</div>
|
||
|
|
</el-form>
|
||
|
|
</div>
|
||
|
|
</el-dialog>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
<script>
|
||
|
|
import {
|
||
|
|
addStuffWarehouseApi,
|
||
|
|
deleteStuffWarehouseApi,
|
||
|
|
editStuffWarehouseApi,
|
||
|
|
getStuffWarehousePageApi
|
||
|
|
} from '@/assets/js/api/warehouseManagement.js'
|
||
|
|
export default {
|
||
|
|
mounted() {
|
||
|
|
this.getList()
|
||
|
|
},
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
title: "",
|
||
|
|
dialogShow: false,
|
||
|
|
pagInfo: {
|
||
|
|
pageNo: 1, //页数
|
||
|
|
pageSize: 10, //条数
|
||
|
|
total: 0 //总条数
|
||
|
|
},
|
||
|
|
List: [],
|
||
|
|
addEditForm: {
|
||
|
|
warehouseName: '',//仓库名称
|
||
|
|
warehousePos: '',//warehousePos
|
||
|
|
header: '',//负责人
|
||
|
|
headerPhone: '',//负责人电话
|
||
|
|
remark: '',//备注
|
||
|
|
},
|
||
|
|
addEditRules: {
|
||
|
|
warehouseName: [
|
||
|
|
{
|
||
|
|
required: true,
|
||
|
|
message: this.$t('message.carManage.required'),
|
||
|
|
trigger: 'blur'
|
||
|
|
},
|
||
|
|
{
|
||
|
|
required: true,
|
||
|
|
message: this.$t('message.carManage.required'),
|
||
|
|
trigger: 'change'
|
||
|
|
}
|
||
|
|
],
|
||
|
|
warehousePos: [
|
||
|
|
{
|
||
|
|
required: true,
|
||
|
|
message: this.$t('message.carManage.required'),
|
||
|
|
trigger: 'blur'
|
||
|
|
},
|
||
|
|
{
|
||
|
|
required: true,
|
||
|
|
message: this.$t('message.carManage.required'),
|
||
|
|
trigger: 'change'
|
||
|
|
}
|
||
|
|
],
|
||
|
|
header: [
|
||
|
|
{
|
||
|
|
required: true,
|
||
|
|
message: this.$t('message.carManage.required'),
|
||
|
|
trigger: 'blur'
|
||
|
|
},
|
||
|
|
{
|
||
|
|
required: true,
|
||
|
|
message: this.$t('message.carManage.required'),
|
||
|
|
trigger: 'change'
|
||
|
|
}
|
||
|
|
],
|
||
|
|
headerPhone: [
|
||
|
|
{
|
||
|
|
required: true,
|
||
|
|
message: this.$t('message.carManage.required'),
|
||
|
|
trigger: 'blur'
|
||
|
|
},
|
||
|
|
{
|
||
|
|
required: true,
|
||
|
|
message: this.$t('message.carManage.required'),
|
||
|
|
trigger: 'change'
|
||
|
|
}
|
||
|
|
],
|
||
|
|
|
||
|
|
},
|
||
|
|
searchForm: {
|
||
|
|
warehouseName: '',
|
||
|
|
warehouseNumber: '',
|
||
|
|
warehousePos: '',
|
||
|
|
},
|
||
|
|
}
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
//查询仓库数据
|
||
|
|
getList() {
|
||
|
|
getStuffWarehousePageApi({
|
||
|
|
pageNo: this.pagInfo.pageNo,
|
||
|
|
pageSize: this.pagInfo.pageSize,
|
||
|
|
projectSn: this.$store.state.projectSn,
|
||
|
|
warehouseName: this.searchForm.warehouseName,
|
||
|
|
warehousePos: this.searchForm.warehousePos,
|
||
|
|
}).then((result) => {
|
||
|
|
if (result.success) {
|
||
|
|
this.List = result.result.records
|
||
|
|
this.pagInfo.total = result.result.total
|
||
|
|
}
|
||
|
|
})
|
||
|
|
},
|
||
|
|
|
||
|
|
add() {
|
||
|
|
this.title = '新增仓库'
|
||
|
|
this.dialogShow = true
|
||
|
|
this.close()
|
||
|
|
},
|
||
|
|
|
||
|
|
edit(obj) {
|
||
|
|
this.title = '编辑仓库'
|
||
|
|
this.dialogShow = true
|
||
|
|
this.addEditForm = JSON.parse(JSON.stringify(obj))
|
||
|
|
},
|
||
|
|
submit() {
|
||
|
|
let params = JSON.parse(JSON.stringify(this.addEditForm))
|
||
|
|
params.projectSn = this.$store.state.projectSn
|
||
|
|
this.$refs.addEditForm.validate((valid) => {
|
||
|
|
if (valid) {
|
||
|
|
if (this.title == '新增仓库') {
|
||
|
|
addStuffWarehouseApi(params).then((result) => {
|
||
|
|
if (result.success) {
|
||
|
|
this.$message.success(result.message)
|
||
|
|
this.getList()
|
||
|
|
}
|
||
|
|
})
|
||
|
|
} else if (this.title === '编辑仓库') {
|
||
|
|
console.log('编辑信息', this.addEditForm)
|
||
|
|
editStuffWarehouseApi(params).then((result) => {
|
||
|
|
if (result.success) {
|
||
|
|
this.$message.success(result.message)
|
||
|
|
this.getList()
|
||
|
|
}
|
||
|
|
})
|
||
|
|
}
|
||
|
|
this.dialogShow = false
|
||
|
|
} else {
|
||
|
|
return false
|
||
|
|
}
|
||
|
|
})
|
||
|
|
},
|
||
|
|
deleteDev(obj) {
|
||
|
|
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
|
||
|
|
confirmButtonText: "确定",
|
||
|
|
cancelButtonText: "取消",
|
||
|
|
type: "warning",
|
||
|
|
})
|
||
|
|
.then(() => {
|
||
|
|
deleteStuffWarehouseApi({ id: obj.id }).then((res) => {
|
||
|
|
if (res.success) {
|
||
|
|
this.getList()
|
||
|
|
this.$message({
|
||
|
|
type: "success",
|
||
|
|
message: "删除成功!",
|
||
|
|
});
|
||
|
|
} else {
|
||
|
|
this.$message({
|
||
|
|
type: "error",
|
||
|
|
message: res.message,
|
||
|
|
});
|
||
|
|
}
|
||
|
|
});
|
||
|
|
})
|
||
|
|
.catch(() => {
|
||
|
|
this.$message({
|
||
|
|
type: "info",
|
||
|
|
message: "已取消删除",
|
||
|
|
});
|
||
|
|
});
|
||
|
|
},
|
||
|
|
|
||
|
|
close() {
|
||
|
|
this.addEditForm = {}
|
||
|
|
this.$nextTick(() => {
|
||
|
|
this.$refs.addEditForm.clearValidate()
|
||
|
|
})
|
||
|
|
},
|
||
|
|
SizeChange(val) {
|
||
|
|
this.pagInfo.pageSize = val
|
||
|
|
this.getList()
|
||
|
|
},
|
||
|
|
CurrentChange(val) {
|
||
|
|
this.pagInfo.pageNo = val
|
||
|
|
this.getList()
|
||
|
|
},
|
||
|
|
refresh() {
|
||
|
|
this.searchForm = {}
|
||
|
|
this.pagInfo.pageNo = 1 //页数
|
||
|
|
this.pagInfo.pageSize = 10 //条数
|
||
|
|
this.getList()
|
||
|
|
},
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
<style lang="less" scoped>
|
||
|
|
.tables2 {
|
||
|
|
min-height: auto;
|
||
|
|
}
|
||
|
|
</style>
|