123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265 |
- <template>
- <div class="app-container">
- <!-- 新增 -->
- <el-button type="primary" icon="el-icon-plus" size="mini" @click="getDialog('新增')"
- v-hasPermi="['operation:channel:add']">
- 新增频道配置
- </el-button>
- <!-- 列表 -->
- <el-table :data="tableData" v-loading="loading">
- <el-table-column label="序号" align="center" type="index" />
- <el-table-column label="频道配置名称" prop="name" align="center" />
- <el-table-column label="部署形式" prop="type" align="center" :formatter="typeFormatter" />
- <el-table-column label="设备" prop="deviceIds" align="center" :formatter="devFormatter" show-overflow-tooltip />
- <el-table-column label="操作" align="center">
- <template slot-scope="scope">
- <el-button type="text" @click="getDialog('查看', scope.row, scope.$index, true)">查看</el-button>
- <el-button type="text" @click="getDialog('编辑', scope.row, scope.$index)"
- v-hasPermi="['operation:channel:edit']">编辑</el-button>
- <el-button v-if="scope.$index !== 0" type="delete" @click="getDelete(scope.row)"
- v-hasPermi="['operation:channel:delete']">
- 删除
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- <!-- 弹窗 -->
- <el-dialog :visible.sync="dialogVisible" :title="title" width="950px" :before-close="cancel">
- <el-form label-width="auto">
- <el-form-item v-if="index !== 1" label="频道配置名称:" style="width: 300px">
- <el-input v-model="dialogForm.name" placeholder="请输入规则名称" :disabled="disabled" />
- </el-form-item>
- <el-form-item v-if="index !== 1" label="关联设备:">
- <el-select v-model="ids" filterable multiple placeholder="请选择关联设备" :disabled="disabled">
- <el-option v-for="item in devOptions" :key="item.clientTypeId" :value="item.clientTypeId.toString()"
- :label="item.name" />
- </el-select>
- </el-form-item>
- <el-form-item v-if="title !== '新增'" label="内容列表:" style="height: 500px; overflow-y: auto;">
- <el-table :data="list" v-loading="dialog_loading" lazy :default-sort="{ prop: 'sort' }">
- <el-table-column label="序号" prop="sort" align="center" width="100px" />
- <el-table-column label="频道数" prop="channelId" align="center" width="100px" />
- <el-table-column label="频道名称" prop="aliasName" align="center" show-overflow-tooltip />
- <el-table-column label="频道封面" align="center" width="100px">
- <template slot-scope="scope">
- <el-image :src="scope.row.pic"></el-image>
- </template>
- </el-table-column>
- <el-table-column label="频道简介" prop="description" align="center" show-overflow-tooltip />
- <el-table-column label="操作" align="center">
- <template slot-scope="scope">
- <el-button type="text" @click="edit(scope, true)">查看</el-button>
- <el-button type="text" @click="edit(scope)" :disabled="disabled">编辑</el-button>
- <el-button v-if="scope.row.sort > 3" type="text" icon="el-icon-caret-top"
- @click="getChange(scope.row.id, scope.row.sort - 1)" :disabled="disabled" />
- <el-button v-if="scope.row.sort > 2 && scope.row.sort < 12" type="text" icon="el-icon-caret-bottom"
- @click="getChange(scope.row.id, scope.row.sort + 1)" :disabled="disabled" />
- </template>
- </el-table-column>
- </el-table>
- </el-form-item>
- </el-form>
- <div slot="footer" v-if="index !== 1">
- <el-button @click="cancel">取消</el-button>
- <el-button type="primary" @click="getSubmit">确定</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import { change, channelPage, create, devList, editPage, getRemove, page } from '@/api/operation/channel';
- export default {
- name: 'Channel',
- data() {
- return {
- // 遮罩层
- loading: false,
- dialog_loading: false,
- // 列表
- tableData: [],
- list: [],
- // 弹窗
- dialogVisible: false,
- title: '',
- // 设备
- devOptions: [],
- allDevOptions: [],
- // 表单
- form: {
- pageNum: 1,
- pageSize: 10
- },
- index: 0,
- dialogForm: {},
- ids: [],
- // 频道规则Id
- obj: {},
- // 部署形式
- typeOptions: [{
- value: 0,
- label: '注册用户-默认'
- }, {
- value: 1,
- label: '绑定特定设备'
- }],
- // 只读
- disabled: false
- };
- },
- watch: {
- ids(val) {
- this.dialogForm.deviceIds = val.join(',')
- }
- },
- mounted() {
- this.getDevList()
- this.getList()
- },
- methods: {
- // 列表
- getList() {
- this.loading = true
- page(this.form).then(res => {
- if (res.code === 0) {
- this.tableData = res.data
- this.loading = false
- }
- })
- },
- // 全部设备
- getDevList() {
- devList(1).then(res => {
- if (res.code === 0) {
- this.allDevOptions = []
- res.data.map(i => {
- this.allDevOptions.push({
- value: i.clientTypeId,
- label: i.name
- })
- })
- }
- })
- },
- // 编辑
- edit(e, boolean) {
- this.dialogVisible = false
- this.$router.push({
- path: `/operation/channel/detail`,
- query: {
- channelId: e.row.id,
- audioType: e.row.channelType,
- index: e.$index,
- boolean: boolean
- }
- })
- },
- // 删除
- getDelete(row) {
- this.$confirm(`是否删除${row.name}?`, '提示', {
- type: 'warning'
- }).then(() => {
- getRemove(row.id).then(res => {
- if (res.code === 0) {
- this.$message.success('删除成功!')
- this.getList()
- }
- })
- })
- },
- // 弹窗
- getDialog(title, row, index, boolean) {
- this.dialogVisible = true
- this.title = title
- this.index = index + 1
- this.obj = row
- this.disabled = boolean
- // 新增 / 编辑时的设备
- devList(0).then(res => {
- if (res.code === 0) {
- this.devOptions = res.data
- if (this.title !== '新增') {
- this.devOptions.unshift.apply(this.devOptions, row.deviceList)
- }
- }
- })
- if (title !== '新增') {
- this.dialogForm = row
- if (this.index !== 1) {
- this.ids = this.dialogForm.deviceIds.split(',')
- }
- this.getPage(row)
- }
- },
- // 十二频道
- getPage(row) {
- channelPage(row.id).then(res => {
- if (res.code === 0) {
- this.list = res.data
- this.dialog_loading = false
- }
- })
- },
- // 创建
- getSubmit() {
- if (this.title === '编辑') {
- editPage(this.dialogForm).then(res => {
- if (res.code === 0) {
- this.$message.success('修改成功!')
- this.dialogVisible = false
- this.getList()
- }
- })
- } else {
- create({
- name: this.dialogForm.name,
- deviceIds: this.dialogForm.deviceIds,
- type: 1
- }).then(res => {
- if (res.code === 0) {
- this.$message.success('新增成功!')
- this.dialogVisible = false
- this.getList()
- }
- })
- }
- },
- // 排序
- getChange(id, sort) {
- change({
- id: id,
- sort: sort
- }).then(res => {
- if (res.code === 0) {
- this.$message.success('修改成功!')
- this.getPage(this.obj)
- }
- })
- },
- // 取消
- cancel() {
- this.dialogVisible = false
- this.ids = []
- this.dialogForm = {}
- this.getList()
- },
- // 字典翻译
- typeFormatter(row) {
- return this.selectDictLabel(this.typeOptions, row.type)
- },
- devFormatter(row) {
- return row.deviceIds ? row.deviceIds.split(',').map(i => this.selectDictLabel(this.allDevOptions, i)).join(',') : ''
- }
- },
- };
- </script>
|