空管耐用品库存管理前端
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.

269 lines
6.2 KiB

5 months ago
<template>
<div>
<basic-container>
4 months ago
<avue-crud
:option="option"
:table-loading="loading"
:data="data"
ref="crud"
v-model="form"
:page.sync="page"
:permission="permissionList"
@row-del="rowDel"
@search-change="searchChange"
@search-reset="searchReset"
@selection-change="selectionChange"
@current-change="currentChange"
@size-change="sizeChange"
@refresh-change="refreshChange"
@on-load="onLoad"
>
<template slot-scope="scope" slot="menu">
<el-button
v-if="scope.row.status == '未归还'"
type="text"
size="small"
@click.stop="handleReturn(scope.row)"
>归还
</el-button>
<el-button
type="text"
size="small"
@click.stop="handleScrap(scope.row)"
v-if="scope.row.status == '未归还'"
>报废
</el-button>
</template>
</avue-crud>
</basic-container>
4 months ago
4 months ago
<!-- 归还 -->
<returnDialog
v-if="returnShow"
:showDialog="returnShow"
:rowDta="returnInfo"
@closeDialog="closeDialog"
></returnDialog>
4 months ago
<!-- 报废 -->
4 months ago
<scrapDialog
v-if="scrapShow"
:showDialog="scrapShow"
:rowDta="scrapInfo"
@closeDialog="closeDialog"
></scrapDialog>
5 months ago
</div>
</template>
<script>
import { mapGetters } from "vuex";
4 months ago
import { getList } from "@/api/materials/expend";
4 months ago
import returnDialog from "./components/returnDialog.vue";
import scrapDialog from "./components/scrapDialog.vue";
5 months ago
export default {
4 months ago
components: {
returnDialog,
scrapDialog,
},
5 months ago
data() {
return {
4 months ago
returnShow: false, //归还
scrapShow: false, //报废
5 months ago
form: {},
selectionList: [],
query: {},
loading: true,
page: {
pageSize: 10,
currentPage: 1,
4 months ago
total: 0,
5 months ago
},
option: {
4 months ago
height: "auto",
5 months ago
calcHeight: 30,
tip: false,
searchShow: true,
searchMenuSpan: 6,
border: true,
index: true,
selection: true,
4 months ago
viewBtn: false,
addBtn: false,
editBtn: false,
delBtn: false,
5 months ago
dialogClickModal: false,
menu: true,
selection: false,
printBtn: false,
refreshBtn: false,
gridBtn: false,
gridBackgroundImage: false,
gridSpan: false,
filterBtn: false,
columnBtn: false,
menuAlign: "left",
searchMenuPosition: "right",
menuWidth: 140,
5 months ago
column: [
{
label: "编号",
prop: "no",
headerAlign: "center",
align: "center",
5 months ago
},
{
label: "部门",
prop: "str8",
search: true,
4 months ago
type: "select",
headerAlign: "center",
align: "center",
4 months ago
dicData: [
{
label: "部门一",
value: 0,
},
{
label: "部门二",
value: 1,
},
],
5 months ago
},
{
label: "名称",
prop: "name",
search: true,
headerAlign: "center",
align: "center",
5 months ago
},
{
label: "规格型号",
prop: "xh",
headerAlign: "center",
align: "center",
5 months ago
},
{
label: "类别",
prop: "lb",
headerAlign: "center",
align: "center",
5 months ago
},
{
label: "计量单位",
prop: "unit",
headerAlign: "center",
align: "center",
5 months ago
},
{
label: "数量",
prop: "number",
headerAlign: "center",
align: "center",
5 months ago
},
{
label: "单价",
prop: "dj",
headerAlign: "center",
align: "center",
5 months ago
},
{
label: "金额",
prop: "pice",
headerAlign: "center",
align: "center",
4 months ago
},
{
5 months ago
label: "状态",
prop: "status",
headerAlign: "center",
align: "center",
4 months ago
},
{
5 months ago
label: "归还时间",
prop: "time",
headerAlign: "center",
align: "center",
4 months ago
},
],
5 months ago
},
data: [],
dialogReturnVisible: false,
returnInfo: {},
returnForm: {
count: 0,
4 months ago
rmark: "",
5 months ago
},
4 months ago
dialogScrapVisible: false,
5 months ago
scrapInfo: {},
scrapForm: {
count: 0,
4 months ago
rmark: "",
5 months ago
},
dialogLogVisible: false,
4 months ago
activeName: "first",
5 months ago
tableData: [],
ckTable: [
4 months ago
{ str1: "3", str2: "2025-04-09", str3: "部门一" },
{ str1: "37", str2: "2025-04-03", str3: "部门一" },
5 months ago
],
rkTable: [
4 months ago
{ str1: "5", str2: "2025-03-19", str3: "部门二" },
{ str1: "12", str2: "2025-03-19", str3: "部门二" },
5 months ago
],
bfTable: [
4 months ago
{ str1: "9", str2: "2025-03-19", str3: "部门三" },
{ str1: "19", str2: "2025-03-19", str3: "部门三" },
5 months ago
],
};
},
4 months ago
5 months ago
mounted() {
4 months ago
this.tableData = this.ckTable;
5 months ago
},
methods: {
4 months ago
// 关闭弹窗
closeDialog() {
this.returnShow = false;
this.scrapShow = false;
5 months ago
},
searchReset() {
this.query = {};
this.onLoad(this.page);
},
searchChange(params, done) {
this.query = params;
this.page.currentPage = 1;
this.onLoad(this.page, params);
done();
},
currentChange(currentPage) {
this.page.currentPage = currentPage;
},
sizeChange(pageSize) {
this.page.pageSize = pageSize;
},
refreshChange() {
this.onLoad(this.page, this.query);
},
onLoad(page, params = {}) {
this.loading = true;
4 months ago
this.loading = false;
5 months ago
},
// 归还
handleReturn(row) {
4 months ago
this.returnShow = true;
4 months ago
this.returnInfo = JSON.parse(JSON.stringify(row));
5 months ago
},
4 months ago
5 months ago
// 报废
4 months ago
handleScrap(row) {
4 months ago
this.scrapShow = true;
4 months ago
this.scrapInfo = JSON.parse(JSON.stringify(row));
5 months ago
},
4 months ago
},
5 months ago
};
</script>