123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- <template>
- <div class='m-container'>
- <h2>商品类型管理</h2>
- <div class="m-core">
- <div class='newBand' @click="openTypes('create')">添加</div>
- <!-- 列表 -->
- <div class="tableWrap">
- <el-table :data='tableList'>
- <el-table-column align='center' prop="name"
- label="分类名称">
- </el-table-column>
- <el-table-column align='center'
- label="声部属性">
- <template slot-scope="scope">
- {{ scope.row.subjectName | joinArray(',') }}
- </template>
- </el-table-column>
- <el-table-column align='center'
- label="操作">
- <template slot-scope="scope">
- <el-button @click="openTypes('update', scope.row)" type="text">修改</el-button>
- <el-button @click="onTypesDel(scope.row)" type="text">删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <pagination :total="pageInfo.total"
- :page.sync="pageInfo.page"
- :limit.sync="pageInfo.limit"
- :page-sizes="pageInfo.page_size"
- @pagination="getList" />
- </div>
- </div>
- <el-dialog :title="formTitle[formActionTitle]" :visible.sync="typeStatus"
- @close="onFormClose('ruleForm')" width="500px">
- <el-form :model="form" :rules="rules" ref="ruleForm">
- <el-form-item label="商品分类名称" prop="name" :label-width="formLabelWidth">
- <el-input v-model="form.name" autocomplete="off"></el-input>
- </el-form-item>
- <el-form-item label="声部属性" v-if="form.classGroupType != 'MIX'"
- prop="subjectIds" :label-width="formLabelWidth">
- <el-select v-model="form.subjectIds" multiple>
- <el-option-group
- v-for="group in subjectList"
- :key="group.label"
- :label="group.label">
- <el-option
- v-for="item in group.options"
- :key="item.value"
- :label="item.label"
- :value="item.value">
- </el-option>
- </el-option-group>
- </el-select>
- </el-form-item>
- </el-form>
- <span slot="footer"
- class="dialog-footer">
- <el-button @click="typeStatus = false">取 消</el-button>
- <el-button type="primary" @click="onTypesSubmit('ruleForm')">确 定</el-button>
- </span>
- </el-dialog>
- </div>
- </template>
- <script>
- import pagination from '@/components/Pagination/index'
- import store from '@/store'
- import { subjectListTree } from '@/api/specialSetting'
- import { categoryListTree, categoryUpSet, categorydel } from '@/api/businessManager'
- export default {
- components: { pagination },
- name: 'adminManager',
- data () {
- return {
- tableList: [],
- subjectList: [], // 声部列表
- formActionTitle: 'create',
- formTitle: {
- create: '添加商品分类',
- update: '修改商品分类'
- },
- typeStatus: false, // 添加教学点
- formLabelWidth: '120px',
- form: {
- name: null, // 作业模块名称
- subjectIds: [],
- organId: store.getters.organ
- },
- rules: {
- name: [{ required: true, message: '请输入类型名称', trigger: 'blur' }],
- subjectIds: [{ required: true, message: '请选择声部组合', trigger: 'change' }]
- },
- pageInfo: {
- // 分页规则
- limit: 10, // 限制显示条数
- page: 1, // 当前页
- total: 0, // 总条数
- page_size: [10, 20, 40, 50] // 选择限制显示条数
- }
- }
- },
- mounted() {
- this.getList()
- this.getSubjectTree()
- },
- methods: {
- onTypesSubmit (formName) { // 添加数据
- this.$refs[formName].validate((valid) => {
- if (valid) {
- if (this.formActionTitle == 'create') {
- if(this.form.id) { // 判断有没有Id,如果有则删除
- delete this.form.id
- }
- categoryUpSet(this.form).then(res => {
- this.messageTips('添加', res)
- })
- } else if (this.formActionTitle == 'update') {
- categoryUpSet(this.form).then(res => {
- this.messageTips('修改', res)
- })
- }
- } else {
- return false;
- }
- })
- },
- onTypesDel(row) {
- categoryDel(row.id).then(res => {
- this.messageTips('删除', res)
- })
- },
- messageTips(title, res) {
- if(res.code == 200) {
- this.$message({
- message: title + '成功',
- type: 'success'
- })
- this.typeStatus = false
- this.getList()
- } else {
- this.$message.error(res.msg)
- }
- },
- getList () {
- categoryListTree({
- delFlag: 0,
- rows: this.pageInfo.limit,
- page: this.pageInfo.page
- }).then(res => {
- let result = res.data
- if(res.code == 200) {
- result.rows.forEach(row => {
- let subjectname = [],
- subjectIds = []
- row.subjects.forEach(item => {
- subjectname.push(item.name)
- subjectIds.push(item.id)
- })
- row.subjectName = subjectname
- row.subjectIds = subjectIds
- })
- this.tableList = result.rows
- this.pageInfo.total = result.total
- }
- })
- },
- openTypes(type, row) {
- this.typeStatus = true
- this.formActionTitle = type
- // 修改的时候赋值
- if (type == 'update') {
- this.form = {
- id: row.id,
- name: row.name,
- subjectIds: row.subjectIds,
- organId: store.getters.organ
- }
- }
- },
- onFormClose (formName) { // 关闭弹窗重置验证
- this.form = {
- name: null, // 作业模块名称
- subjectIds: [],
- organId: store.getters.organ
- }
- this.$refs[formName].resetFields()
- },
- getSubjectTree() { // 获取声部列表
- subjectListTree({
- delFlag: 0,
- rows: 9999
- }).then(res => {
- let result = res.data
- if(res.code == 200) {
- let tempArray = []
- result.rows.forEach((item, index) => {
- let subject = []
- item.subjects.forEach(s => {
- subject.push({
- value: s.id,
- label: s.name
- })
- })
-
- tempArray[index] = {
- label: item.name,
- options: subject
- }
- })
- this.subjectList = tempArray
- }
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .el-input-group__append, .el-button--primary {
- background: #14928a;
- border-color: #14928a;
- color: #fff;
- &:hover, &:active, &:focus {
- background: #14928a;
- border-color: #14928a;
- color: #FFF;
- }
- }
- .el-date-editor.el-input{
- width: 100% !important;
- }
- .el-select {
- width: 98% !important;
- }
- </style>
|