123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352 |
- <template>
- <div class="spec-container">
- <!-- 顶部操作区 -->
- <div class="operation-area">
- <el-form :inline="true" :model="searchForm" class="search-form">
- <el-form-item label="规格编号">
- <el-input
- v-model="searchForm.pa_no"
- placeholder="规格编号"
- style="width: 150px"
- ></el-input>
- </el-form-item>
- <el-form-item label="规格名称">
- <el-input
- v-model="searchForm.ps_name"
- placeholder="规格名称"
- style="width: 150px"
- ></el-input>
- </el-form-item>
- <!-- <el-form-item label="规格类型">
- <el-select
- v-model="searchForm.specType"
- placeholder="规格类型"
- style="width: 150px"
- >
- <el-option label="全部" value=""></el-option>
- <el-option label="输入" value="输入"></el-option>
- <el-option label="单选" value="单选"></el-option>
- <el-option label="复选" value="复选"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="所属分类">
- <el-select
- v-model="searchForm.category"
- placeholder="所属分类"
- style="width: 150px"
- >
- <el-option label="全部" value=""></el-option>
- <el-option label="LCD,LED" value="LCD,LED"></el-option>
- <el-option label="DLP" value="DLP"></el-option>
- </el-select>
- </el-form-item> -->
- <el-form-item>
- <el-button type="primary" @click="handleSearch">搜索</el-button>
- <el-button @click="resetSearch">重置</el-button>
- </el-form-item>
- </el-form>
- </div>
- <el-button type="primary" @click="handleAdd">新建规格</el-button>
- <!-- 表格区域 -->
- <el-table :data="tableData" style="width: 100%; margin-top: 20px">
- <el-table-column prop="pa_no" label="规格编号"></el-table-column>
- <el-table-column prop="ps_name" label="规格名称"></el-table-column>
- <!-- <el-table-column prop="specType" label="规格值类型" width="120">
- <template slot-scope="scope">
- <el-tag
- :type="
- scope.row.specType === '输入'
- ? 'primary'
- : scope.row.specType === '单选'
- ? 'success'
- : 'warning'
- "
- >
- {{ scope.row.specType }}
- </el-tag>
- </template>
- </el-table-column>
- <el-table-column
- prop="specValue"
- label="规格值"
- width="180"
- ></el-table-column>
- <el-table-column prop="category" label="所属分类"></el-table-column> -->
- <el-table-column label="操作" width="250">
- <template slot-scope="scope">
- <el-button size="mini" @click="handleView(scope.row)">查看</el-button>
- <el-button size="mini" type="primary" @click="handleEdit(scope.row)"
- >编辑</el-button
- >
- <el-button size="mini" type="danger" @click="handleDelete(scope.row)"
- >删除</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- <!-- 分页 -->
- <el-pagination
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :current-page="pagination.currentPage"
- :page-sizes="[10, 20, 50, 100]"
- :page-size="pagination.pageSize"
- layout="total, sizes, prev, pager, next, jumper"
- :total="pagination.total"
- style="margin-top: 20px; text-align: right"
- >
- </el-pagination>
- <!-- 新增/编辑对话框 -->
- <el-dialog :title="dialogTitle" :visible.sync="dialogVisible" width="500px">
- <el-form :model="form" :rules="rules" ref="form" label-width="100px">
- <el-form-item label="规格编号" prop="pa_no">
- <el-input v-model="form.pa_no"></el-input>
- </el-form-item>
- <el-form-item label="规格名称" prop="ps_name">
- <el-input v-model="form.ps_name"></el-input>
- </el-form-item>
- <!-- <el-form-item label="规格值类型" prop="specType">
- <el-select v-model="form.specType" style="width: 100%">
- <el-option label="输入" value="输入"></el-option>
- <el-option label="单选" value="单选"></el-option>
- <el-option label="复选" value="复选"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="规格值" prop="specValue">
- <el-input
- v-model="form.specValue"
- type="textarea"
- placeholder="多个值请用逗号分隔"
- ></el-input>
- </el-form-item>
- <el-form-item label="所属分类" prop="category">
- <el-select v-model="form.category" style="width: 100%">
- <el-option label="全部" value="全部"></el-option>
- <el-option label="LCD,LED" value="LCD,LED"></el-option>
- <el-option label="DLP" value="DLP"></el-option>
- </el-select>
- </el-form-item> -->
- </el-form>
- <div slot="footer">
- <el-button @click="dialogVisible = false">取 消</el-button>
- <el-button type="primary" @click="submitForm">确 定</el-button>
- </div>
- </el-dialog>
- <!-- 添加查看详情对话框 -->
- <el-dialog
- title="查看规格详情"
- :visible.sync="viewDialogVisible"
- width="500px"
- >
- <el-descriptions :column="1" border>
- <el-descriptions-item label="规格编号">{{
- viewForm.pa_no
- }}</el-descriptions-item>
- <el-descriptions-item label="规格名称">{{
- viewForm.ps_name
- }}</el-descriptions-item>
- </el-descriptions>
- <div slot="footer">
- <el-button @click="viewDialogVisible = false">关闭</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import {
- specList,
- addSpec,
- updateSpec,
- getSpecDetail,
- } from "@/api/ProductMent/specMent";
- export default {
- name: "SpecManagement",
- data() {
- return {
- searchForm: {
- pa_no: "",
- ps_name: "",
- /* specType: "",
- category: "", */
- pageNum: 1,
- pageSize: 10,
- },
- tableData: [],
- pagination: {
- currentPage: 1,
- pageSize: 10,
- total: 0,
- },
- dialogVisible: false,
- dialogTitle: "",
- form: {
- pa_no: "",
- ps_name: "",
- /* specType: "",
- specValue: "",
- category: "", */
- },
- rules: {
- pa_no: [{ required: true, message: "请输入规格编号", trigger: "blur" }],
- ps_name: [
- { required: true, message: "请输入规格名称", trigger: "blur" },
- ],
- specType: [
- { required: true, message: "请选择规格值类型", trigger: "change" },
- ],
- },
- viewDialogVisible: false,
- viewForm: {
- pa_no: "",
- ps_name: "",
- },
- };
- },
- methods: {
- handleSearch() {
- this.pagination.currentPage = 1;
- this.loadData();
- },
- resetSearch() {
- this.searchForm = {
- pa_no: "",
- ps_name: "",
- /* specType: "",
- category: "", */
- pageNum: 1,
- pageSize: this.pagination.pageSize,
- };
- this.pagination.currentPage = 1;
- this.loadData();
- },
- handleAdd() {
- this.dialogTitle = "新增规格";
- this.form = {
- pa_no: "",
- ps_name: "",
- /* specType: "",
- specValue: "",
- category: "", */
- };
- this.dialogVisible = true;
- },
- handleEdit(row) {
- this.dialogTitle = "编辑规格";
- this.form = {
- ps_id:row.ps_id,
- pa_no: row.pa_no,
- ps_name: row.ps_name,
- };
- this.dialogVisible = true;
- },
- handleDelete(row) {
- this.$confirm("确认删除该规格?", "提示", {
- type: "warning",
- })
- .then(() => {
- deleteSpec(row.pa_no).then((res) => {
- if (res.code === 200) {
- this.$message.success("删除成功");
- if (
- this.tableData.length === 1 &&
- this.pagination.currentPage > 1
- ) {
- this.pagination.currentPage -= 1;
- }
- this.loadData();
- } else {
- this.$message.error(res.message || "删除失败");
- }
- });
- })
- .catch(() => {});
- },
- handleView(row) {
- this.viewForm = {
- pa_no: row.pa_no,
- ps_name: row.ps_name,
- };
- this.viewDialogVisible = true;
- },
- handleSizeChange(val) {
- this.pagination.pageSize = val;
- this.searchForm.pageSize = val;
- this.loadData();
- },
- handleCurrentChange(val) {
- this.pagination.currentPage = val;
- this.searchForm.pageNum = val;
- this.loadData();
- },
- /* 新增,编辑提交 */
- submitForm() {
- this.$refs.form.validate((valid) => {
- if (valid) {
- const api = this.dialogTitle === "新增规格" ? addSpec : updateSpec;
- const message =
- this.dialogTitle === "新增规格" ? "添加成功" : "更新成功";
- api(this.form)
- .then((res) => {
- if (res.code === 200) {
- this.$message.success(message);
- this.dialogVisible = false;
- this.loadData();
- } else {
- this.$message.error(res.message || "操作失败");
- }
- })
- .catch(() => {
- this.$message.error("操作失败");
- });
- }
- });
- },
- /* 初始化列表 */
- loadData() {
- const params = {
- ...this.searchForm,
- pageNum: this.pagination.currentPage,
- pageSize: this.pagination.pageSize,
- };
- specList(params)
- .then((res) => {
- if (res.code === 200) {
- this.tableData = res.rows || [];
- this.pagination.total = res.total || 0;
- } else {
- this.$message.error(res.message || "获取数据失败");
- }
- })
- .catch((error) => {
- console.error("获取数据失败:", error);
- this.$message.error("获取数据失败");
- });
- },
- },
- created() {
- this.loadData();
- },
- };
- </script>
- <style scoped>
- .spec-container {
- padding: 20px;
- }
- .operation-area {
- margin-bottom: 20px;
- }
- .search-form {
- margin-left: 16px;
- display: inline-block;
- }
- </style>
|