<template>
|
<section>
|
<!--工具条-->
|
<toolbar :buttonList="buttonList" @callFunction="callFunction"></toolbar>
|
|
<!--列表-->
|
<el-table
|
:data="WMProductUnit"
|
highlight-current-row
|
@current-change="selectCurrentRow"
|
v-loading="listLoading"
|
@selection-change="selsChange"
|
@select="selsChangeOne"
|
style="width: 100%"
|
ref="multipleTable"
|
>
|
<el-table-column type="selection" width="100"></el-table-column>
|
<el-table-column type="index" width="300"></el-table-column>
|
<el-table-column prop="Unit" label="单位名称" sortable></el-table-column>
|
<el-table-column prop="UnitCode" label="单位编号" sortable></el-table-column>
|
<!-- <el-table-column label="操作">
|
<template scope="scope">
|
<el-button size="small" @click="handleEdit(scope.$index, scope.row)">编辑</el-button>
|
<el-button type="danger" size="small" @click="handleDel(scope.$index, scope.row)">删除</el-button>
|
</template>
|
</el-table-column> -->
|
</el-table>
|
|
<!--工具条-->
|
<el-col :span="24" class="toolbar">
|
<el-pagination
|
layout="prev, pager, next"
|
@current-change="handleCurrentChange"
|
:page-size="20"
|
:total="total"
|
style="float: right"
|
></el-pagination>
|
</el-col>
|
<!--编辑界面-->
|
<el-dialog
|
title="编辑"
|
:visible.sync="editFormVisible"
|
v-model="editFormVisible"
|
:close-on-click-modal="false"
|
>
|
<el-form
|
:model="editForm"
|
label-width="80px"
|
:rules="editFormRules"
|
ref="editForm"
|
>
|
<el-form-item label="单位名称" prop="Unit">
|
<el-input
|
v-model="editForm.Unit"
|
placeholder="请输入单位名称"
|
></el-input>
|
</el-form-item>
|
</el-form>
|
<div slot="footer" class="dialog-footer">
|
<el-button @click.native="editFormVisible = false">取消</el-button>
|
<el-button
|
type="primary"
|
@click.native="editSubmit"
|
:loading="editLoading"
|
>提交</el-button
|
>
|
</div>
|
</el-dialog>
|
|
<!--新增界面-->
|
<el-dialog
|
title="新增"
|
:visible.sync="addFormVisible"
|
v-model="addFormVisible"
|
:close-on-click-modal="false"
|
>
|
<el-form
|
:model="addForm"
|
label-width="80px"
|
:rules="addFormRules"
|
ref="addForm"
|
>
|
<el-form-item label="单位名称" prop="Unit">
|
<el-input
|
v-model="addForm.Unit"
|
placeholder="请输入单位名称"
|
></el-input>
|
</el-form-item>
|
</el-form>
|
<div slot="footer" class="dialog-footer">
|
<el-button @click.native="addFormVisible = false">取消</el-button>
|
<el-button
|
type="primary"
|
@click.native="addSubmit"
|
:loading="addLoading"
|
>提交</el-button
|
>
|
</div>
|
</el-dialog>
|
</section>
|
</template>
|
<script>
|
import util from "../../../../util/date";
|
import {
|
getWMProductUnitListPage,
|
// removeWMProductUnit,
|
batchRemoveWMProductUnit,
|
editWMProductUnit,
|
addWMProductUnit,
|
} from "../../../api/api";
|
import { getButtonList } from "../../../promissionRouter";
|
import Toolbar from "../../../components/Toolbar";
|
export default {
|
components: { Toolbar },
|
data() {
|
return {
|
filters: {
|
Unit: "",
|
},
|
WMProductUnit: [],
|
total: 0,
|
buttonList: [],
|
currentRow: null,
|
page: 1,
|
listLoading: false,
|
sels: [], //列表选中列
|
addDialogFormVisible: false,
|
//编辑
|
editFormVisible: false, //编辑界面是否显示
|
editLoading: false,
|
editFormRules: {
|
Unit: [{ required: true, message: "请输入单位名称", trigger: "blur" }],
|
},
|
//编辑界面数据
|
editForm: {},
|
//新增
|
addFormVisible: false, //新增界面是否显示
|
addLoading: false,
|
addFormRules: {
|
Unit: [{ required: true, message: "请输入单位名称", trigger: "blur" }],
|
},
|
//新增界面数据
|
addForm: {},
|
};
|
},
|
methods: {
|
//选中行时勾选框
|
selsChangeOne(selection, row) {
|
this.currentRow = row;
|
this.$refs.multipleTable.toggleRowSelection(row); //选中当前选择
|
this.selectCurrentRow(row);
|
},
|
selectCurrentRow(val) {
|
this.currentRow = val;
|
this.$refs.multipleTable.toggleRowSelection(val); //选中当前选择
|
},
|
callFunction(item) {
|
this.filters = {
|
Unit: item.search,
|
};
|
this[item.Func].apply(this, item);
|
},
|
handleCurrentChange(val) {
|
this.page = val;
|
this.getWMProductUnit();
|
},
|
//获取单位列表
|
getWMProductUnit() {
|
let para = {
|
page: this.page,
|
key: this.filters.Unit,
|
};
|
this.listLoading = true;
|
|
//NProgress.start();
|
getWMProductUnitListPage(para).then((res) => {
|
this.total = res.data.response.dataCount;
|
this.WMProductUnit = res.data.response.data;
|
this.listLoading = false;
|
//NProgress.done();
|
});
|
},
|
//删除
|
// handleDel: function (index, row) {
|
// if (!row) {
|
// row = this.currentRow;
|
// }
|
// if (!row) {
|
// this.$message({
|
// message: "请选择要删除的一行数据!",
|
// type: "error",
|
// });
|
|
// return;
|
// }
|
// this.$confirm("确认删除该记录吗?", "提示", {
|
// type: "warning",
|
// })
|
// .then(() => {
|
// this.listLoading = true;
|
// //NProgress.start();
|
// let para = { id: row.Id };
|
// removeWMProductUnit(para).then((res) => {
|
// if (util.isEmt.format(res)) {
|
// this.listLoading = false;
|
// return;
|
// }
|
// this.listLoading = false;
|
// //NProgress.done();
|
// if (res.data.success) {
|
// this.$message({
|
// message: "删除成功",
|
// type: "success",
|
// });
|
// } else {
|
// this.$message({
|
// message: res.data.msg,
|
// type: "error",
|
// });
|
// }
|
|
// this.getWMProductUnit();
|
// });
|
// })
|
// .catch(() => {});
|
// },
|
//显示编辑界面
|
handleEdit: function (index, row) {
|
if (!row) {
|
row = this.currentRow;
|
}
|
if (!row) {
|
this.$message({
|
message: "请选择要编辑的一行数据!",
|
type: "error",
|
});
|
|
return;
|
}
|
this.editFormVisible = true;
|
this.editForm = Object.assign({}, row);
|
},
|
//显示新增界面
|
handleAdd() {
|
this.addFormVisible = true;
|
this.addForm = {
|
Unit: "",
|
};
|
},
|
//编辑
|
editSubmit: function () {
|
this.$refs.editForm.validate((valid) => {
|
if (valid) {
|
this.$confirm("确认提交吗?", "提示", {}).then(() => {
|
this.editLoading = true;
|
//NProgress.start();
|
let para = Object.assign({}, this.editForm);
|
editWMProductUnit(para).then((res) => {
|
if (util.isEmt.format(res)) {
|
this.editLoading = false;
|
return;
|
}
|
if (res.data.success) {
|
this.editLoading = false;
|
//NProgress.done();
|
this.$message({
|
message: res.data.msg,
|
type: "success",
|
});
|
this.$refs["editForm"].resetFields();
|
this.editFormVisible = false;
|
this.getWMProductUnit();
|
} else {
|
this.$message({
|
message: res.data.msg,
|
type: "error",
|
});
|
}
|
});
|
});
|
}
|
});
|
},
|
//新增
|
addSubmit: function () {
|
this.$refs.addForm.validate((valid) => {
|
if (valid) {
|
this.$confirm("确认提交吗?", "提示", {}).then(() => {
|
this.addLoading = true;
|
//NProgress.start();
|
let para = Object.assign({}, this.addForm);
|
addWMProductUnit(para).then((res) => {
|
if (util.isEmt.format(res)) {
|
this.addLoading = false;
|
return;
|
}
|
if (res.data.success) {
|
this.addLoading = false;
|
//NProgress.done();
|
this.$message({
|
message: res.data.msg,
|
type: "success",
|
});
|
this.$refs["addForm"].resetFields();
|
this.addFormVisible = false;
|
this.getWMProductUnit();
|
} else {
|
this.$message({
|
message: res.data.msg,
|
type: "error",
|
});
|
}
|
});
|
});
|
}
|
});
|
},
|
selsChange: function (sels) {
|
this.sels = sels;
|
},
|
},
|
mounted() {
|
this.getWMProductUnit();
|
|
let routers = window.localStorage.router
|
? JSON.parse(window.localStorage.router)
|
: [];
|
this.buttonList = getButtonList(this.$route.path, routers);
|
},
|
};
|
</script>
|