2024-04-07 17:10:30 +08:00
|
|
|
<template>
|
|
|
|
<div class="app-container">
|
2024-04-09 14:44:39 +08:00
|
|
|
<el-form v-show="showSearch" ref="queryForm" :inline="true" :model="queryParams" label-width="90px" size="small">
|
2024-04-08 14:07:00 +08:00
|
|
|
<el-form-item label="选择APP" prop="configName">
|
2024-04-09 14:44:39 +08:00
|
|
|
<el-select v-model="queryParams.configType" clearable placeholder="请选择APP">
|
2024-05-08 11:13:12 +08:00
|
|
|
<el-option v-for="dict in dict.type.sys_yes_no" :key="dict.value" :label="dict.label" :value="dict.value" />
|
2024-04-08 14:07:00 +08:00
|
|
|
</el-select>
|
2024-04-07 17:10:30 +08:00
|
|
|
</el-form-item>
|
2024-04-08 14:07:00 +08:00
|
|
|
<el-form-item label="版本号" prop="version">
|
2024-05-08 11:13:12 +08:00
|
|
|
<el-input v-model="queryParams.version" clearable placeholder="请输入版本号" style="width: 240px"
|
|
|
|
@keyup.enter.native="handleQuery" />
|
2024-04-07 17:10:30 +08:00
|
|
|
</el-form-item>
|
|
|
|
|
2024-04-08 14:07:00 +08:00
|
|
|
<el-form-item label="公开时间">
|
2024-05-08 11:13:12 +08:00
|
|
|
<el-date-picker v-model="dateRange" end-placeholder="结束日期" range-separator="-" start-placeholder="开始日期"
|
|
|
|
style="width: 240px" type="daterange" value-format="yyyy-MM-dd"></el-date-picker>
|
2024-04-07 17:10:30 +08:00
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="状态" prop="configType">
|
2024-04-09 14:44:39 +08:00
|
|
|
<el-select v-model="queryParams.configType" clearable placeholder="请选择状态">
|
2024-05-08 11:13:12 +08:00
|
|
|
<el-option v-for="dict in dict.type.sys_yes_no" :key="dict.value" :label="dict.label" :value="dict.value" />
|
2024-04-07 17:10:30 +08:00
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
2024-04-09 14:44:39 +08:00
|
|
|
<el-button icon="el-icon-search" size="mini" type="primary" @click="handleQuery">搜索</el-button>
|
2024-04-07 17:10:30 +08:00
|
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
|
<el-col :span="1.5">
|
2024-05-08 11:13:12 +08:00
|
|
|
<el-button v-hasPermi="['system:config:add']" icon="el-icon-plus" plain size="mini" type="primary"
|
|
|
|
@click="handleAdd">新增
|
2024-04-09 14:44:39 +08:00
|
|
|
</el-button>
|
2024-04-07 17:10:30 +08:00
|
|
|
</el-col>
|
|
|
|
<el-col :span="1.5">
|
2024-05-08 11:13:12 +08:00
|
|
|
<el-button :disabled="multiple" icon="el-icon-plus" plain size="mini" type="info" @click="handlePublish">批量发布
|
2024-04-09 14:44:39 +08:00
|
|
|
</el-button>
|
2024-04-07 17:10:30 +08:00
|
|
|
</el-col>
|
|
|
|
<el-col :span="1.5">
|
2024-05-08 11:13:12 +08:00
|
|
|
<el-button v-hasPermi="['system:config:add']" :disabled="multiple" icon="el-icon-plus" plain size="mini"
|
|
|
|
type="info" @click="handleDelete">批量删除
|
2024-04-09 14:44:39 +08:00
|
|
|
</el-button>
|
2024-04-07 17:10:30 +08:00
|
|
|
</el-col>
|
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="configList" @selection-change="handleSelectionChange">
|
2024-05-08 11:13:12 +08:00
|
|
|
<el-table-column align="center" type="selection" width="55" />
|
|
|
|
<el-table-column align="center" label="APP" prop="configId" />
|
|
|
|
<el-table-column :show-overflow-tooltip="true" align="center" label="文件类型" prop="configName" />
|
|
|
|
<el-table-column :show-overflow-tooltip="true" align="center" label="版本号" prop="version" />
|
|
|
|
<el-table-column :show-overflow-tooltip="true" align="center" label="子版本号" prop="configValue" />
|
|
|
|
<el-table-column label="系统" min-width="80" prop="platform">
|
|
|
|
<template slot-scope="scope">
|
2024-04-09 14:44:39 +08:00
|
|
|
<div>{{ scope.row.platform === '0' ? '安卓' : 'IOS' }}</div>
|
|
|
|
</template>
|
2024-04-09 09:05:50 +08:00
|
|
|
</el-table-column>
|
2024-04-09 14:44:39 +08:00
|
|
|
<el-table-column align="center" label="公开版" prop="createTime" width="180">
|
2024-04-08 14:07:00 +08:00
|
|
|
<template slot-scope="scope">
|
2024-05-08 11:13:12 +08:00
|
|
|
<el-switch v-model="scope.row.tagsView" class="drawer-switch" disabled />
|
2024-04-08 14:07:00 +08:00
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
|
2024-04-09 14:44:39 +08:00
|
|
|
<el-table-column align="center" label="强制更新" prop="createTime" width="180">
|
2024-04-08 14:07:00 +08:00
|
|
|
<template slot-scope="scope">
|
2024-05-08 11:13:12 +08:00
|
|
|
<el-switch v-model="scope.row.tagsView" class="drawer-switch" disabled />
|
2024-04-08 14:07:00 +08:00
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
|
2024-04-09 14:44:39 +08:00
|
|
|
<el-table-column align="center" label="上传时间" prop="createTime" width="180">
|
2024-04-07 17:10:30 +08:00
|
|
|
<template slot-scope="scope">
|
|
|
|
<span>{{ parseTime(scope.row.createTime) }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
2024-05-08 11:13:12 +08:00
|
|
|
<el-table-column :show-overflow-tooltip="true" align="center" label="发布环境" prop="configValue" />
|
2024-04-09 14:44:39 +08:00
|
|
|
<el-table-column align="center" label="发布状态" prop="configType">
|
2024-04-07 17:10:30 +08:00
|
|
|
<template slot-scope="scope">
|
2024-05-08 11:13:12 +08:00
|
|
|
<dict-tag :options="dict.type.sys_yes_no" :value="scope.row.configType" />
|
2024-04-07 17:10:30 +08:00
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
|
2024-04-09 14:44:39 +08:00
|
|
|
<el-table-column align="center" label="公开时间" prop="createTime" width="180">
|
2024-04-09 09:05:50 +08:00
|
|
|
<template slot-scope="scope">
|
|
|
|
<span>{{ parseTime(scope.row.createTime) }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
|
2024-05-08 11:13:12 +08:00
|
|
|
<el-table-column :show-overflow-tooltip="true" align="center" label="更新说明" prop="remark" />
|
|
|
|
<el-table-column align="center" label="二维码" min-width="80">
|
2024-04-09 09:05:50 +08:00
|
|
|
<template slot-scope="scope">
|
2024-04-09 17:55:01 +08:00
|
|
|
|
2024-05-08 11:13:12 +08:00
|
|
|
<el-image :preview-src-list="srcList" :src="url" style="width: 80px; height: 80px">
|
2024-04-09 17:55:01 +08:00
|
|
|
</el-image>
|
|
|
|
|
|
|
|
<!-- <el-popover-->
|
|
|
|
<!-- v-if="scope.row.qrCode && scopeC.row.status !== '20'"-->
|
|
|
|
<!-- ref="popver"-->
|
|
|
|
<!-- trigger="click"-->
|
|
|
|
<!-- width="200"-->
|
|
|
|
<!-- >-->
|
|
|
|
<!-- <div class="table-img">-->
|
|
|
|
<!-- <img :src="'data:image/jpg;base64,'+ scope.row.qrCode">-->
|
|
|
|
<!-- <p v-if="scopeC.row.verifyCode">密码:{{ scope.row.verifyCode }}</p>-->
|
|
|
|
<!-- </div>-->
|
|
|
|
<!-- </el-popover>-->
|
|
|
|
<!-- <div v-else>-</div>-->
|
2024-04-09 09:05:50 +08:00
|
|
|
</template>
|
|
|
|
</el-table-column>
|
2024-04-09 14:44:39 +08:00
|
|
|
<el-table-column align="center" class-name="small-padding fixed-width" label="操作" width="150">
|
2024-04-07 17:10:30 +08:00
|
|
|
<template slot-scope="scope">
|
2024-05-08 11:13:12 +08:00
|
|
|
<el-button v-hasPermi="['system:config:edit']" icon="el-icon-bottom" size="mini" type="text"
|
|
|
|
@click="handleDown(scope.row)">下架
|
2024-04-09 14:44:39 +08:00
|
|
|
</el-button>
|
2024-05-08 11:13:12 +08:00
|
|
|
<el-button v-hasPermi="['system:config:edit']" icon="el-icon-edit" size="mini" type="text"
|
|
|
|
@click="handleEdit(scope.row)">修改
|
2024-04-09 14:44:39 +08:00
|
|
|
</el-button>
|
2024-05-08 11:13:12 +08:00
|
|
|
<el-dropdown size="mini" @command="(command) => handleCommand(command, scope.row)">
|
2024-04-09 14:44:39 +08:00
|
|
|
<el-button icon="el-icon-d-arrow-right" size="mini" type="text">更多</el-button>
|
|
|
|
<el-dropdown-menu slot="dropdown">
|
2024-05-08 11:13:12 +08:00
|
|
|
<el-dropdown-item v-hasPermi="['system:user:resetPwd']" command="handleDetail" icon="el-icon-view">详情
|
2024-04-09 14:44:39 +08:00
|
|
|
</el-dropdown-item>
|
2024-05-08 11:13:12 +08:00
|
|
|
<el-dropdown-item v-hasPermi="['system:user:edit']" command="handleDownload" icon="el-icon-download">下载安装包
|
2024-04-09 14:44:39 +08:00
|
|
|
</el-dropdown-item>
|
|
|
|
|
2024-05-08 11:13:12 +08:00
|
|
|
<el-dropdown-item v-hasPermi="['system:user:edit']" command="handleDelete" icon="el-icon-delete">删除
|
2024-04-09 14:44:39 +08:00
|
|
|
</el-dropdown-item>
|
|
|
|
|
|
|
|
</el-dropdown-menu>
|
|
|
|
</el-dropdown>
|
2024-04-07 17:10:30 +08:00
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
|
2024-05-08 11:13:12 +08:00
|
|
|
<pagination v-show="total > 0" :limit.sync="queryParams.pageSize" :page.sync="queryParams.pageNum" :total="total"
|
|
|
|
@pagination="getList" />
|
2024-04-07 17:10:30 +08:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2024-04-10 17:44:54 +08:00
|
|
|
import { delConfig, listConfig } from '@/api/system/config'
|
2024-04-07 17:10:30 +08:00
|
|
|
|
|
|
|
export default {
|
2024-04-10 17:44:54 +08:00
|
|
|
name: 'PublishList',
|
2024-04-07 17:10:30 +08:00
|
|
|
dicts: ['sys_yes_no'],
|
2024-05-08 11:13:12 +08:00
|
|
|
data () {
|
2024-04-07 17:10:30 +08:00
|
|
|
return {
|
|
|
|
// 遮罩层
|
|
|
|
loading: true,
|
|
|
|
// 选中数组
|
|
|
|
ids: [],
|
|
|
|
// 非单个禁用
|
|
|
|
single: true,
|
|
|
|
// 非多个禁用
|
|
|
|
multiple: true,
|
|
|
|
// 显示搜索条件
|
|
|
|
showSearch: true,
|
|
|
|
// 总条数
|
|
|
|
total: 0,
|
|
|
|
// 参数表格数据
|
|
|
|
configList: [],
|
|
|
|
// 弹出层标题
|
2024-04-09 14:44:39 +08:00
|
|
|
title: '',
|
2024-04-07 17:10:30 +08:00
|
|
|
// 是否显示新增白名单弹出框
|
|
|
|
addOpen: false,
|
|
|
|
// 是否显示白名单配置弹出框
|
2024-04-09 14:44:39 +08:00
|
|
|
configOpen: false,
|
2024-04-09 17:55:01 +08:00
|
|
|
|
|
|
|
packOpen: false,
|
|
|
|
|
2024-04-07 17:10:30 +08:00
|
|
|
// 日期范围
|
|
|
|
dateRange: [],
|
|
|
|
// 查询参数
|
|
|
|
queryParams: {
|
|
|
|
pageNum: 1,
|
|
|
|
pageSize: 10,
|
|
|
|
configName: undefined,
|
|
|
|
configKey: undefined,
|
|
|
|
configType: undefined
|
|
|
|
},
|
|
|
|
// 表单参数
|
|
|
|
form: {},
|
2024-04-09 17:55:01 +08:00
|
|
|
url: require('@/assets/images/code.png'),
|
|
|
|
srcList: [
|
|
|
|
require('@/assets/images/code.png')
|
2024-04-10 17:44:54 +08:00
|
|
|
]
|
2024-04-09 14:44:39 +08:00
|
|
|
}
|
2024-04-07 17:10:30 +08:00
|
|
|
},
|
2024-04-15 17:51:38 +08:00
|
|
|
computed: {
|
2024-05-08 11:13:12 +08:00
|
|
|
applicationInfo: function () {
|
2024-04-15 17:51:38 +08:00
|
|
|
return this.$store.state.applicationInfo
|
|
|
|
}
|
|
|
|
},
|
2024-05-08 11:13:12 +08:00
|
|
|
created () {
|
2024-04-09 14:44:39 +08:00
|
|
|
this.getList()
|
2024-04-07 17:10:30 +08:00
|
|
|
},
|
2024-05-08 11:13:12 +08:00
|
|
|
mounted () {
|
2024-04-15 17:51:38 +08:00
|
|
|
console.log(this.$store.getters.applicationId)
|
|
|
|
console.log(this.applicationInfo)
|
|
|
|
|
|
|
|
},
|
2024-04-07 17:10:30 +08:00
|
|
|
methods: {
|
|
|
|
/** 查询参数列表 */
|
2024-05-08 11:13:12 +08:00
|
|
|
getList () {
|
2024-04-09 14:44:39 +08:00
|
|
|
this.loading = true
|
2024-04-07 17:10:30 +08:00
|
|
|
listConfig(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
|
2024-05-08 11:13:12 +08:00
|
|
|
this.configList = response.rows
|
|
|
|
this.total = response.total
|
|
|
|
this.loading = false
|
|
|
|
}
|
2024-04-09 14:44:39 +08:00
|
|
|
)
|
2024-04-07 17:10:30 +08:00
|
|
|
},
|
|
|
|
/** 搜索按钮操作 */
|
2024-05-08 11:13:12 +08:00
|
|
|
handleQuery () {
|
2024-04-09 14:44:39 +08:00
|
|
|
this.queryParams.pageNum = 1
|
|
|
|
this.getList()
|
2024-04-07 17:10:30 +08:00
|
|
|
},
|
|
|
|
/** 重置按钮操作 */
|
2024-05-08 11:13:12 +08:00
|
|
|
resetQuery () {
|
2024-04-09 14:44:39 +08:00
|
|
|
this.dateRange = []
|
|
|
|
this.resetForm('queryForm')
|
|
|
|
this.handleQuery()
|
2024-04-07 17:10:30 +08:00
|
|
|
},
|
|
|
|
/** 新增按钮操作 */
|
2024-05-08 11:13:12 +08:00
|
|
|
handleAdd () {
|
2024-04-11 18:04:49 +08:00
|
|
|
const params = {
|
|
|
|
type: 'add'
|
|
|
|
}
|
|
|
|
this.$tab.openPage('新增发布', '/build/publishList/add/', params)
|
2024-04-07 17:10:30 +08:00
|
|
|
},
|
|
|
|
// 多选框选中数据
|
2024-05-08 11:13:12 +08:00
|
|
|
handleSelectionChange (selection) {
|
2024-04-07 17:10:30 +08:00
|
|
|
this.ids = selection.map(item => item.configId)
|
2024-04-09 14:44:39 +08:00
|
|
|
this.single = selection.length != 1
|
2024-04-07 17:10:30 +08:00
|
|
|
this.multiple = !selection.length
|
|
|
|
},
|
2024-04-10 17:44:54 +08:00
|
|
|
|
2024-04-07 17:10:30 +08:00
|
|
|
/** 删除按钮操作 */
|
2024-05-08 11:13:12 +08:00
|
|
|
async handleDelete (row) {
|
2024-04-09 14:44:39 +08:00
|
|
|
const configIds = row.configId || this.ids
|
|
|
|
try {
|
|
|
|
await this.$modal.confirm('是否确认删除参数编号为"' + configIds + '"的数据项?')
|
|
|
|
await delConfig(configIds)
|
|
|
|
this.getList()
|
|
|
|
this.$modal.msgSuccess('删除成功')
|
|
|
|
} catch (error) {
|
|
|
|
console.error('删除失败', error)
|
|
|
|
// 可以添加更多的错误处理逻辑,如用户提示等
|
|
|
|
}
|
|
|
|
},
|
|
|
|
/**查看详情*/
|
2024-05-08 11:13:12 +08:00
|
|
|
handleDetail () {
|
2024-04-11 18:04:49 +08:00
|
|
|
this.$tab.openPage('发布详情', '/build/publishList/detail/', '')
|
2024-04-09 14:44:39 +08:00
|
|
|
},
|
|
|
|
/**下载安装包*/
|
2024-05-08 11:13:12 +08:00
|
|
|
handleDownload () {
|
2024-04-09 14:44:39 +08:00
|
|
|
|
|
|
|
},
|
|
|
|
/**********编辑*******/
|
2024-05-08 11:13:12 +08:00
|
|
|
handleEdit () {
|
2024-04-11 18:04:49 +08:00
|
|
|
const params = {
|
|
|
|
type: 'edit'
|
|
|
|
}
|
|
|
|
this.$tab.openPage('编辑发布', '/build/publishList/add/', params)
|
2024-04-09 14:44:39 +08:00
|
|
|
},
|
|
|
|
/** 发布操作*/
|
2024-05-08 11:13:12 +08:00
|
|
|
handlePublish () {
|
2024-04-09 17:55:01 +08:00
|
|
|
},
|
2024-04-09 14:44:39 +08:00
|
|
|
// 更多操作触发
|
2024-05-08 11:13:12 +08:00
|
|
|
handleCommand (command, row) {
|
2024-04-09 14:44:39 +08:00
|
|
|
switch (command) {
|
|
|
|
case 'handleDetail':
|
|
|
|
this.handleDetail(row)
|
|
|
|
break
|
|
|
|
case 'handleDownload':
|
|
|
|
this.handleDownload(row)
|
|
|
|
break
|
|
|
|
|
|
|
|
case 'handleDelete':
|
|
|
|
this.handleDelete(row)
|
|
|
|
break
|
|
|
|
default:
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-07 17:10:30 +08:00
|
|
|
}
|
2024-04-09 14:44:39 +08:00
|
|
|
}
|
2024-04-07 17:10:30 +08:00
|
|
|
</script>
|