123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 |
- <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)"
- 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">
- <el-form label-width="auto">
- <el-form-item v-if="index !== 1" label="频道配置名称:" style="width: 300px">
- <el-input v-model="dialogForm.name" placeholder="请输入规则名称" />
- </el-form-item>
- <el-form-item v-if="index !== 1" label="关联设备:">
- <el-select v-model="ids" multiple placeholder="请选择关联设备">
- <el-option v-for="item in devOptions" :key="item.label" :value="item.value.toString()"
- :label="item.label" />
- </el-select>
- </el-form-item>
- <el-form-item v-if="title === '编辑'" label="内容列表:">
- <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="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)">编辑</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)" />
- <el-button v-if="scope.row.sort > 2" type="text" icon="el-icon-caret-bottom"
- @click="getChange(scope.row.id, scope.row.sort + 1)" />
- </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 { channelPage, page, create, editPage, getRemove, devList, change } from '@/api/operation/channel'
- export default {
- name: 'Channel',
- dicts: ['deployment_form'],
- 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: {}
- };
- },
- 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) {
- this.dialogVisible = false
- this.$router.push({
- path: `/operation/channel/detail`,
- query: {
- channelId: e.row.id,
- audioType: e.row.channelType,
- index: e.$index
- }
- })
- },
- // 删除
- getDelete(row) {
- this.$confirm(`是否删除${row.name}?`, '提示', {
- type: 'warning'
- }).then(() => {
- getRemove(row.id).then(res => {
- if (res.code === 0) {
- this.$message.success('删除成功!')
- this.getList()
- }
- })
- })
- },
- // 弹窗
- getDialog(row, index) {
- this.dialogVisible = true
- this.index = index + 1
- this.obj = row
- // 新增 / 编辑时的设备
- let type = row ? 1 : 0
- devList(type).then(res => {
- if (res.code === 0) {
- this.devOptions = []
- res.data.map(i => {
- this.devOptions.push({
- value: i.clientTypeId,
- label: i.name
- })
- })
- }
- })
- if (row) {
- this.title = '编辑'
- this.dialogForm = row
- if (this.index !== 1) {
- this.ids = this.dialogForm.deviceIds.split(',')
- }
- this.getPage(row)
- } else {
- this.ids = []
- this.dialogForm = {}
- this.title = '新增'
- }
- },
- // 十二频道
- 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.getList()
- },
- // 字典翻译
- typeFormatter(row) {
- return this.selectDictLabel(this.dict.type.deployment_form, row.type)
- },
- devFormatter(row) {
- return row.deviceIds ? row.deviceIds.split(',').map(i => this.selectDictLabel(this.allDevOptions, i)).join(',') : ''
- }
- },
- };
- </script>
|