<template>
|
<section>
|
<!--工具条-->
|
<toolbar :buttonList="buttonList" @callFunction="callFunction"></toolbar>
|
|
<!--列表-->
|
<el-table
|
:data="WMProductSpec"
|
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="50"></el-table-column>
|
<el-table-column type="index" width="100"></el-table-column>
|
<el-table-column prop="Name" label="规格名称" sortable></el-table-column>
|
<el-table-column
|
prop="AdminName"
|
label="创建人"
|
width="200"
|
sortable
|
></el-table-column>
|
<el-table-column
|
prop="CreateTime"
|
label="创建时间"
|
:formatter="formatDateTime"
|
width="250"
|
sortable
|
></el-table-column>
|
<el-table-column
|
prop="Remark"
|
label="备注"
|
width="500"
|
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="Name">
|
<el-input
|
v-model="editForm.Name"
|
placeholder="请输入规格名称"
|
></el-input>
|
</el-form-item>
|
<el-form-item label="备注">
|
<el-input
|
type="textarea"
|
v-model="editForm.Remark"
|
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="Name">
|
<el-input
|
v-model="addForm.Name"
|
placeholder="请输入规格名称"
|
></el-input>
|
</el-form-item>
|
<el-form-item label="备注">
|
<el-input
|
type="textarea"
|
v-model="addForm.Remark"
|
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 {
|
getWMProductSpecListPage,
|
// removeWMProductSpec,
|
batchRemoveWMProductSpec,
|
editWMProductSpec,
|
addWMProductSpec,
|
} from "../../../api/api";
|
import { getButtonList } from "../../../promissionRouter";
|
import Toolbar from "../../../components/Toolbar";
|
export default {
|
components: { Toolbar },
|
data() {
|
return {
|
filters: {
|
name: "",
|
},
|
WMProductSpec: [],
|
total: 0,
|
buttonList: [],
|
currentRow: null,
|
page: 1,
|
listLoading: false,
|
sels: [], //列表选中列
|
addDialogFormVisible: false,
|
//编辑
|
editFormVisible: false, //编辑界面是否显示
|
editLoading: false,
|
editFormRules: {
|
Name: [{ required: true, message: "请输入规格名称", trigger: "blur" }],
|
},
|
//编辑界面数据
|
editForm: {},
|
//新增
|
addFormVisible: false, //新增界面是否显示
|
addLoading: false,
|
addFormRules: {
|
Name: [{ 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 = {
|
name: item.search,
|
};
|
this[item.Func].apply(this, item);
|
},
|
formatDateTime: function (row, column) {
|
return !row.CreateTime || row.CreateTime == ""
|
? ""
|
: util.formatDate.format(new Date(row.CreateTime), "yyyy-MM-dd hh:mm");
|
},
|
handleCurrentChange(val) {
|
this.page = val;
|
this.getWMProductSpec();
|
},
|
//获取规格列表
|
getWMProductSpec() {
|
let para = {
|
page: this.page,
|
key: this.filters.name,
|
};
|
this.listLoading = true;
|
|
//NProgress.start();
|
getWMProductSpecListPage(para).then((res) => {
|
this.total = res.data.response.dataCount;
|
this.WMProductSpec = 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 };
|
// removeWMProductSpec(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.getWMProductSpec();
|
// });
|
// })
|
// .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 = {
|
Name: "",
|
Remark: "",
|
AdminId: 0,
|
};
|
},
|
//编辑
|
editSubmit: function () {
|
this.$refs.editForm.validate((valid) => {
|
if (valid) {
|
this.$confirm("确认提交吗?", "提示", {}).then(() => {
|
this.editLoading = true;
|
//NProgress.start();
|
let para = Object.assign({}, this.editForm);
|
editWMProductSpec(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.getWMProductSpec();
|
} 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);
|
addWMProductSpec(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.getWMProductSpec();
|
} else {
|
this.$message({
|
message: res.data.msg,
|
type: "error",
|
});
|
}
|
});
|
});
|
}
|
});
|
},
|
selsChange: function (sels) {
|
this.sels = sels;
|
},
|
},
|
mounted() {
|
this.getWMProductSpec();
|
|
let routers = window.localStorage.router
|
? JSON.parse(window.localStorage.router)
|
: [];
|
this.buttonList = getButtonList(this.$route.path, routers);
|
},
|
};
|
</script>
|