123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- <template>
- <div class="app-container">
- <el-card class="operate-container" shadow="never">
- <i class="el-icon-tickets" style="margin-top: 5px"></i>
- <span style="margin-top: 5px">数据列表</span>
- <el-button
- class="btn-add"
- @click="addProductAttrCate()"
- size="mini">
- 添加
- </el-button>
- </el-card>
- <div class="table-container">
- <el-table ref="productAttrCateTable"
- style="width: 100%"
- :data="list"
- v-loading="listLoading"
- border>
- <el-table-column label="编号" width="100" align="center">
- <template slot-scope="scope">{{scope.row.id}}</template>
- </el-table-column>
- <el-table-column label="类型名称" align="center">
- <template slot-scope="scope">{{scope.row.name}}</template>
- </el-table-column>
- <el-table-column label="属性数量" width="200" align="center">
- <template slot-scope="scope">{{scope.row.attributeCount==null?0:scope.row.attributeCount}}</template>
- </el-table-column>
- <el-table-column label="参数数量" width="200" align="center">
- <template slot-scope="scope">{{scope.row.paramCount==null?0:scope.row.paramCount}}</template>
- </el-table-column>
- <el-table-column label="设置" width="200" align="center">
- <template slot-scope="scope">
- <el-button
- size="mini"
- @click="getAttrList(scope.$index, scope.row)">属性列表
- </el-button>
- <el-button
- size="mini"
- @click="getParamList(scope.$index, scope.row)">参数列表
- </el-button>
- </template>
- </el-table-column>
- <el-table-column label="操作" width="200" align="center">
- <template slot-scope="scope">
- <el-button
- size="mini"
- @click="handleUpdate(scope.$index, scope.row)">编辑
- </el-button>
- <el-button
- size="mini"
- type="danger"
- @click="handleDelete(scope.$index, scope.row)">删除
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <div class="pagination-container">
- <el-pagination
- background
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- layout="total, sizes,prev, pager, next,jumper"
- :page-size="listQuery.pageSize"
- :page-sizes="[5,10,15]"
- :current-page.sync="listQuery.pageNum"
- :total="total">
- </el-pagination>
- </div>
- <el-dialog
- :title="dialogTitle"
- :visible.sync="dialogVisible"
- :before-close="handleClose()"
- width="30%">
- <el-form ref="productAttrCatForm" :model="productAttrCate" :rules="rules" label-width="120px">
- <el-form-item label="类型名称" prop="name">
- <el-input v-model="productAttrCate.name" auto-complete="off"></el-input>
- </el-form-item>
- </el-form>
- <span slot="footer" class="dialog-footer">
- <el-button @click="dialogVisible = false">取 消</el-button>
- <el-button type="primary" @click="handleConfirm('productAttrCatForm')">确 定</el-button>
- </span>
- </el-dialog>
- </div>
- </template>
- <script>
- import {fetchList,createProductAttrCate,deleteProductAttrCate,updateProductAttrCate} from '@/api/productAttrCate'
- export default {
- name: 'productAttrCateList',
- data() {
- return {
- list: null,
- total: null,
- listLoading: true,
- listQuery: {
- pageNum: 1,
- pageSize: 5
- },
- dialogVisible: false,
- dialogTitle:'',
- productAttrCate:{
- name:'',
- id:null
- },
- rules: {
- name: [
- { required: true, message: '请输入类型名称', trigger: 'blur' }
- ]
- }
- }
- },
- created() {
- this.getList();
- },
- methods: {
- getList() {
- this.listLoading = true;
- fetchList(this.listQuery).then(response => {
- this.listLoading = false;
- this.list = response.data.list;
- this.total = response.data.total;
- });
- },
- addProductAttrCate() {
- this.dialogVisible = true;
- this.dialogTitle = "添加类型";
- },
- handleSizeChange(val) {
- this.listQuery.pageNum = 1;
- this.listQuery.pageSize = val;
- this.getList();
- },
- handleCurrentChange(val) {
- this.listQuery.pageNum = val;
- this.getList();
- },
- handleDelete(index, row) {
- this.$confirm('是否要删除该品牌', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- deleteProductAttrCate(row.id).then(response=>{
- this.$message({
- message: '删除成功',
- type: 'success',
- duration:1000
- });
- this.getList();
- });
- });
- },
- handleUpdate(index, row) {
- this.dialogVisible = true;
- this.dialogTitle = "编辑类型";
- this.productAttrCate.name = row.name;
- this.productAttrCate.id = row.id;
- },
- getAttrList(index, row) {
- this.$router.push({path: '/pms/productAttrList',query:{cid:row.id,cname:row.name,type:0}})
- },
- getParamList(index, row) {
- this.$router.push({path: '/pms/productAttrList',query:{cid:row.id,cname:row.name,type:1}})
- },
- handleConfirm(formName){
- this.$refs[formName].validate((valid) => {
- if (valid) {
- let data = new URLSearchParams();
- data.append("name",this.productAttrCate.name);
- let obj = {
- name:this.productAttrCate.name
- }
- if(this.dialogTitle==="添加类型"){
- createProductAttrCate(obj).then(response=>{
- this.$message({
- message: '添加成功',
- type: 'success',
- duration:1000
- });
- this.dialogVisible = false;
- this.productAttrCate.name = ''
- this.getList();
- });
- }else{
- updateProductAttrCate(this.productAttrCate.id,obj).then(response=>{
- this.$message({
- message: '修改成功',
- type: 'success',
- duration:1000
- });
- this.productAttrCate.name = ''
- this.dialogVisible = false;
- this.getList();
- });
- }
- } else {
- console.log('error submit!!');
- this.productAttrCate.name = ''
- return false;
- }
- });
- },
- handleClose(){
- if (!this.dialogVisible && this.$refs.productAttrCatForm) {
- this.$refs.productAttrCatForm.clearValidate()
- this.productAttrCate.name = ''
- }
- }
- }
- }
- </script>
- <style rel="stylesheet/scss" lang="scss" scoped>
- </style>
|