|
@@ -1,302 +1,289 @@
|
|
<template>
|
|
<template>
|
|
- <div class="app-container">
|
|
|
|
- <el-row :gutter="20">
|
|
|
|
- <!--用户数据-->
|
|
|
|
- <el-col :span="24" :xs="24">
|
|
|
|
- <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
|
- <el-form-item label="公告标题" prop="noticeTitle">
|
|
|
|
- <el-input
|
|
|
|
- v-model="queryParams.noticeTitle"
|
|
|
|
- placeholder="请输入公告标题"
|
|
|
|
- clearable
|
|
|
|
- style="width: 240px"
|
|
|
|
- @keyup.enter.native="handleQuery"
|
|
|
|
- />
|
|
|
|
- </el-form-item>
|
|
|
|
- <el-form-item label="创建者" prop="createBy">
|
|
|
|
- <el-input
|
|
|
|
- v-model="queryParams.createBy"
|
|
|
|
- placeholder="请输入创建者"
|
|
|
|
- clearable
|
|
|
|
- style="width: 240px"
|
|
|
|
- @keyup.enter.native="handleQuery"
|
|
|
|
- />
|
|
|
|
- </el-form-item>
|
|
|
|
- <el-form-item label="公告类型" prop="noticeType">
|
|
|
|
- <el-select v-model="queryParams.noticeType" clearable placeholder="请选择公告类型">
|
|
|
|
- <el-option
|
|
|
|
- v-for="dict in dict.type.tourism_notice_type"
|
|
|
|
- :key="dict.value"
|
|
|
|
- :label="dict.label"
|
|
|
|
- :value="dict.value">
|
|
|
|
- </el-option>
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- <el-form-item>
|
|
|
|
- <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
|
- <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">
|
|
|
|
- <el-button
|
|
|
|
- type="primary"
|
|
|
|
- plain
|
|
|
|
- icon="el-icon-plus"
|
|
|
|
- size="mini"
|
|
|
|
- @click="handleAdd"
|
|
|
|
- v-hasPermi="configPermi.add"
|
|
|
|
- >新增</el-button>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :span="1.5">
|
|
|
|
- <el-button
|
|
|
|
- type="danger"
|
|
|
|
- plain
|
|
|
|
- icon="el-icon-delete"
|
|
|
|
- size="mini"
|
|
|
|
- :disabled="multiple"
|
|
|
|
- @click="handleDelete"
|
|
|
|
- v-hasPermi="configPermi.delect"
|
|
|
|
- >删除</el-button>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :span="1.5" v-if="false">
|
|
|
|
- <el-button
|
|
|
|
- type="info"
|
|
|
|
- plain
|
|
|
|
- icon="el-icon-upload2"
|
|
|
|
- size="mini"
|
|
|
|
- @click="handleImport"
|
|
|
|
- v-hasPermi="configPermi.upload"
|
|
|
|
- >导入</el-button>
|
|
|
|
- </el-col>
|
|
|
|
- <el-col :span="1.5" v-if="false">
|
|
|
|
- <el-button
|
|
|
|
- type="warning"
|
|
|
|
- plain
|
|
|
|
- icon="el-icon-download"
|
|
|
|
- size="mini"
|
|
|
|
- @click="handleExport"
|
|
|
|
- v-hasPermi="configPermi.export"
|
|
|
|
- >导出</el-button>
|
|
|
|
- </el-col>
|
|
|
|
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
|
|
|
|
- </el-row>
|
|
|
|
-
|
|
|
|
- <el-table v-loading="loading" :data="tableList" @selection-change="handleSelectionChange">
|
|
|
|
- <el-table-column type="selection" width="50" align="center" />
|
|
|
|
- <el-table-column type="index" label="序号" align="center" />
|
|
|
|
- <el-table-column label="公告标题" align="center" key="noticeTitle" prop="noticeTitle" v-if="columns[0].visible" :show-overflow-tooltip="true" />
|
|
|
|
- <el-table-column label="公告类型" align="center" key="noticeType" prop="noticeType" v-if="columns[1].visible" :show-overflow-tooltip="true">
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <dict-tag :options="dict.type.tourism_notice_type" :value="scope.row.noticeType"/>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column label="状态" align="center" key="status" v-if="columns[2].visible" :show-overflow-tooltip="true">
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <dict-tag :options="dict.type.tourism_notice_status" :value="scope.row.status"/>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column label="创建者" align="center" key="createBy" prop="createBy" v-if="columns[3].visible" :show-overflow-tooltip="true" />
|
|
|
|
- <el-table-column label="创建时间" align="center" key="createTime" prop="createTime" v-if="columns[4].visible" :show-overflow-tooltip="true" />
|
|
|
|
- <el-table-column
|
|
|
|
- label="操作"
|
|
|
|
- align="center"
|
|
|
|
- width="160"
|
|
|
|
- class-name="small-padding fixed-width"
|
|
|
|
- >
|
|
|
|
- <template slot-scope="scope" >
|
|
|
|
- <el-button
|
|
|
|
- v-if="false"
|
|
|
|
- size="mini"
|
|
|
|
- type="text"
|
|
|
|
- icon="el-icon-document"
|
|
|
|
- @click="handleDetails(scope.row)"
|
|
|
|
- v-hasPermi="configPermi.details"
|
|
|
|
- >详情</el-button>
|
|
|
|
- <el-button
|
|
|
|
- size="mini"
|
|
|
|
- type="text"
|
|
|
|
- icon="el-icon-edit"
|
|
|
|
- @click="handleUpdate(scope.row)"
|
|
|
|
- v-hasPermi="configPermi.edit"
|
|
|
|
- >修改</el-button>
|
|
|
|
|
|
+ <div class="app-container">
|
|
|
|
+ <el-row :gutter="20">
|
|
|
|
+ <!--用户数据-->
|
|
|
|
+ <el-col :span="24" :xs="24">
|
|
|
|
+ <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
|
+ <el-form-item label="第三方名称" prop="name" label-width="88px">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="queryParams.name"
|
|
|
|
+ placeholder="请输入第三方名称"
|
|
|
|
+ clearable
|
|
|
|
+ style="width: 240px"
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
+ />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item>
|
|
|
|
+ <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
|
+ <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">
|
|
<el-button
|
|
<el-button
|
|
|
|
+ type="primary"
|
|
|
|
+ plain
|
|
|
|
+ icon="el-icon-plus"
|
|
size="mini"
|
|
size="mini"
|
|
- type="text"
|
|
|
|
- icon="el-icon-delete"
|
|
|
|
- @click="handleDelete(scope.row)"
|
|
|
|
- v-hasPermi="configPermi.delect"
|
|
|
|
- >删除</el-button>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- </el-table>
|
|
|
|
-
|
|
|
|
- <pagination
|
|
|
|
- v-show="total>0"
|
|
|
|
- :total="total"
|
|
|
|
- :page.sync="queryParams.pageNum"
|
|
|
|
- :limit.sync="queryParams.pageSize"
|
|
|
|
- @pagination="getList"
|
|
|
|
- />
|
|
|
|
- </el-col>
|
|
|
|
- </el-row>
|
|
|
|
- <!-- 新增或修改 -->
|
|
|
|
- <addAndEdit ref="addAndEdit" @refresh="getList" />
|
|
|
|
- </div>
|
|
|
|
-</template>
|
|
|
|
|
|
+ @click="handleAdd"
|
|
|
|
+ v-hasPermi="configPermi.add"
|
|
|
|
+ >新增</el-button>
|
|
|
|
+ </el-col>
|
|
|
|
+ <right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
|
|
|
|
+ </el-row>
|
|
|
|
+
|
|
|
|
+ <el-table v-loading="loading" :data="tableList" @selection-change="handleSelectionChange">
|
|
|
|
+ <el-table-column type="index" label="序号" align="center" />
|
|
|
|
+ <el-table-column label="第三方名称" align="center" key="name" prop="name" v-if="columns[0].visible" :show-overflow-tooltip="true" />
|
|
|
|
+ <el-table-column label="appId" align="center" key="appId" prop="appId" v-if="columns[1].visible" :show-overflow-tooltip="true" />
|
|
|
|
+ <el-table-column label="appKey" align="center" key="appKey" prop="appKey" v-if="columns[2].visible" :show-overflow-tooltip="true" />
|
|
|
|
+ <el-table-column label="AES秘钥" align="center" key="aesKey" prop="aesKey" v-if="columns[3].visible" :show-overflow-tooltip="true" />
|
|
|
|
+ <el-table-column label="AES加密向量" align="center" key="aesVector" prop="aesVector" v-if="columns[4].visible" :show-overflow-tooltip="true" />
|
|
|
|
+ <el-table-column label="通知地址" align="center" key="noticeUrl" prop="noticeUrl" v-if="columns[5].visible" :show-overflow-tooltip="true" />
|
|
|
|
+ <el-table-column label="来源标签" align="center" key="sourceLabel" prop="sourceLabel" v-if="columns[6].visible">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <dict-tag :options="dict.type.order_form_type" :value="scope.row.sourceLabel"/>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="禁用/启用" align="center" key="status" v-if="columns[7].visible">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <switchBox
|
|
|
|
+ :defaultChecked="true"
|
|
|
|
+ v-model="scope.row.status"
|
|
|
|
+ @changeFun="openAttraction(scope.row)"
|
|
|
|
+ :disabled="false"
|
|
|
|
+ :active-value="1"
|
|
|
|
+ :inactive-value="0"
|
|
|
|
+ />
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="创建时间" align="center" key="createTime" prop="createTime" v-if="columns[8].visible" :show-overflow-tooltip="true" />
|
|
|
|
+ <el-table-column
|
|
|
|
+ label="操作"
|
|
|
|
+ align="center"
|
|
|
|
+ width="160"
|
|
|
|
+ class-name="small-padding fixed-width"
|
|
|
|
+ >
|
|
|
|
+ <template slot-scope="scope" >
|
|
|
|
+ <!--<el-button
|
|
|
|
+ size="mini"
|
|
|
|
+ type="text"
|
|
|
|
+ icon="el-icon-delete"
|
|
|
|
+ @click="handleDelete(scope.row)"
|
|
|
|
+ v-hasPermi="configPermi.delect"
|
|
|
|
+ >删除</el-button>-->
|
|
|
|
+ <el-button
|
|
|
|
+ size="mini"
|
|
|
|
+ type="text"
|
|
|
|
+ icon="el-icon-edit"
|
|
|
|
+ @click="handleUpdate(scope.row)"
|
|
|
|
+ v-hasPermi="configPermi.edit"
|
|
|
|
+ >修改</el-button>
|
|
|
|
+
|
|
|
|
+ <el-button
|
|
|
|
+ size="mini"
|
|
|
|
+ type="text"
|
|
|
|
+ icon="el-icon-document"
|
|
|
|
+ @click="handleDetails(scope.row)"
|
|
|
|
+ v-hasPermi="configPermi.details"
|
|
|
|
+ >详情</el-button>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ </el-table>
|
|
|
|
+
|
|
|
|
+ <pagination
|
|
|
|
+ v-show="total>0"
|
|
|
|
+ :total="total"
|
|
|
|
+ :page.sync="queryParams.pageNum"
|
|
|
|
+ :limit.sync="queryParams.pageSize"
|
|
|
|
+ @pagination="getList"
|
|
|
|
+ />
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-row>
|
|
|
|
+ <!-- 详情 -->
|
|
|
|
+ <detailsBox ref="detailsBox" />
|
|
|
|
+ <addAndEdit ref="addAndEdit" @refresh="getList" />
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+ </template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
import {
|
|
import {
|
|
- listTableApi,
|
|
|
|
- delTableApi,
|
|
|
|
|
|
+ listTableApi,
|
|
|
|
+ delTableParamsApi,
|
|
|
|
+ addTableApi
|
|
} from "@/api/CURD";
|
|
} from "@/api/CURD";
|
|
-import addAndEdit from "./formBox/eventNotificationsForm.vue"
|
|
|
|
-export default {
|
|
|
|
- name: "User",
|
|
|
|
- dicts: ['tourism_notice_type','tourism_notice_status'],
|
|
|
|
- components: {addAndEdit},
|
|
|
|
- data() {
|
|
|
|
- return {
|
|
|
|
- title: "活动通知",// 通用标题
|
|
|
|
- configPermi: {
|
|
|
|
- add: ['contentManagement:eventNotifications:add'], // 新增权限
|
|
|
|
- details: [''], // 详情权限
|
|
|
|
- delect: ['contentManagement:eventNotifications:delect'], // 删除权限
|
|
|
|
- edit: ['contentManagement:eventNotifications:edit'], // 编辑权限
|
|
|
|
- upload: [''],// 导入权限
|
|
|
|
- export: [''],// 导出权限
|
|
|
|
- },
|
|
|
|
- configUrl: {
|
|
|
|
- list: '/merchant/notice/pageList', // 列表地址
|
|
|
|
- delect: '/merchant/notice/', // 删除地址
|
|
|
|
- upload: '',// 导入地址
|
|
|
|
- download:'', // 下载模板地址
|
|
|
|
- export: '',// 导出地址
|
|
|
|
- },
|
|
|
|
- // 遮罩层
|
|
|
|
- loading: true,
|
|
|
|
- // 选中数组
|
|
|
|
- ids: [],
|
|
|
|
- // 非单个禁用
|
|
|
|
- single: true,
|
|
|
|
- // 非多个禁用
|
|
|
|
- multiple: true,
|
|
|
|
- // 显示搜索条件
|
|
|
|
- showSearch: true,
|
|
|
|
- // 总条数
|
|
|
|
- total: 0,
|
|
|
|
- // 用户表格数据
|
|
|
|
- tableList: null,
|
|
|
|
- // 查询参数
|
|
|
|
- queryParams: {
|
|
|
|
- pageNum: 1,
|
|
|
|
- pageSize: 10,
|
|
|
|
- },
|
|
|
|
- dateRange: [],
|
|
|
|
- // 控制列表是否显示
|
|
|
|
- columns: [
|
|
|
|
- { key: 0, label: `公告标题`, visible: true },
|
|
|
|
- // { key: 1, label: `归属景区`, visible: true },
|
|
|
|
- { key: 2, label: `公告类型`, visible: true },
|
|
|
|
- { key: 3, label: `状态`, visible: true },
|
|
|
|
- { key: 4, label: `创建者`, visible: true },
|
|
|
|
- { key: 5, label: `创建时间`, visible: true },
|
|
|
|
- ],
|
|
|
|
- };
|
|
|
|
- },
|
|
|
|
- created() {
|
|
|
|
- this.getList();
|
|
|
|
- },
|
|
|
|
- methods: {
|
|
|
|
- /** 查询用户列表 */
|
|
|
|
- getList() {
|
|
|
|
- this.loading = true;
|
|
|
|
- listTableApi(
|
|
|
|
- this.configUrl.list,
|
|
|
|
- this.addDateRange(
|
|
|
|
- this.queryParams,
|
|
|
|
- this.dateRange)).then(response => {
|
|
|
|
- this.tableList = response.data.rows;
|
|
|
|
- this.total = response.data.total;
|
|
|
|
- this.loading = false;
|
|
|
|
- }
|
|
|
|
- ).catch (error=>{
|
|
|
|
- console.error('获取列表失败!!!!',error)
|
|
|
|
- this.tableList = [];
|
|
|
|
- this.total = 0;
|
|
|
|
- this.loading = false
|
|
|
|
- })
|
|
|
|
|
|
+ import detailsBox from "./detailsBox/thirdPartyDetails.vue"
|
|
|
|
+ import addAndEdit from "./formBox/thirdPartyForm.vue"
|
|
|
|
+
|
|
|
|
+ export default {
|
|
|
|
+ name: "User",
|
|
|
|
+ components: {detailsBox,addAndEdit},
|
|
|
|
+ dicts: ['openapi_account_status','order_form_type'],
|
|
|
|
+ data() {
|
|
|
|
+ return {
|
|
|
|
+ title: "第三方账号管理",// 通用标题 ThirdParty
|
|
|
|
+ configPermi: {
|
|
|
|
+ add: ['tourism:thirdParty:add'], // 新增权限
|
|
|
|
+ details: ['tourism:thirdParty:details'], // 详情权限
|
|
|
|
+ delect: ['tourism:thirdParty:delect'], // 删除权限
|
|
|
|
+ edit: ['tourism:thirdParty:edit'], // 编辑权限
|
|
|
|
+ upload: [''],// 导入权限
|
|
|
|
+ export: [''],// 导出权限
|
|
|
|
+ },
|
|
|
|
+ configUrl: {
|
|
|
|
+ list: '/thirdapi/openapiAccount/pageList', // 列表地址
|
|
|
|
+ delect: '', // 删除地址
|
|
|
|
+ upload: '',// 导入地址
|
|
|
|
+ download:'', // 下载模板地址
|
|
|
|
+ export: '',// 导出地址
|
|
|
|
+ updateStatus: '/thirdapi/openapiAccount/insertOrUpdate', // 编辑地址
|
|
|
|
+ },
|
|
|
|
+ // 遮罩层
|
|
|
|
+ loading: true,
|
|
|
|
+ // 选中数组
|
|
|
|
+ ids: [],
|
|
|
|
+ // 非单个禁用
|
|
|
|
+ single: true,
|
|
|
|
+ // 非多个禁用
|
|
|
|
+ multiple: true,
|
|
|
|
+ // 显示搜索条件
|
|
|
|
+ showSearch: true,
|
|
|
|
+ // 总条数
|
|
|
|
+ total: 0,
|
|
|
|
+ // 用户表格数据
|
|
|
|
+ tableList: null,
|
|
|
|
+ // 查询参数
|
|
|
|
+ queryParams: {
|
|
|
|
+ pageNum: 1,
|
|
|
|
+ pageSize: 10,
|
|
|
|
+ },
|
|
|
|
+ dateRange: [],
|
|
|
|
+ // 控制列表是否显示
|
|
|
|
+ columns: [
|
|
|
|
+ { key: 0, label: `第三方名称`, visible: true },
|
|
|
|
+ { key: 1, label: `appId`, visible: true },
|
|
|
|
+ { key: 2, label: `appKey`, visible: true },
|
|
|
|
+ { key: 3, label: `AES秘钥`, visible: true },
|
|
|
|
+ { key: 4, label: `AES加密向量`, visible: true },
|
|
|
|
+ { key: 5, label: `通知地址`, visible: true },
|
|
|
|
+ { key: 6, label: `来源标签`, visible: true },
|
|
|
|
+ { key: 7, label: `状态`, visible: true },
|
|
|
|
+ { key: 2.5, label: `创建时间`, visible: true },
|
|
|
|
+ ],
|
|
|
|
+ };
|
|
},
|
|
},
|
|
- /** 搜索按钮操作 */
|
|
|
|
- handleQuery() {
|
|
|
|
- this.queryParams.pageNum = 1;
|
|
|
|
|
|
+ created() {
|
|
this.getList();
|
|
this.getList();
|
|
},
|
|
},
|
|
- /** 重置按钮操作 */
|
|
|
|
- resetQuery() {
|
|
|
|
- this.dateRange = [];
|
|
|
|
- this.queryParams = {
|
|
|
|
- pageNum: 1,
|
|
|
|
- pageSize: 10,
|
|
|
|
- }
|
|
|
|
- this.handleQuery();
|
|
|
|
- },
|
|
|
|
- // 多选框选中数据
|
|
|
|
- handleSelectionChange(selection) {
|
|
|
|
- this.ids = selection.map(item => item.id);
|
|
|
|
- this.single = selection.length != 1;
|
|
|
|
- this.multiple = !selection.length;
|
|
|
|
- },
|
|
|
|
- /** 新增按钮操作 */
|
|
|
|
- handleAdd() {
|
|
|
|
- if(this.$refs.addAndEdit) {
|
|
|
|
- this.$refs.addAndEdit.initData(this.title + '新增', "ADD",{})
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- /** 修改按钮操作 */
|
|
|
|
- handleUpdate(row) {
|
|
|
|
- if(this.$refs.addAndEdit) {
|
|
|
|
- this.$refs.addAndEdit.initData(this.title + '编辑', "EDITInit",{...row})
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- handleDetails(row){
|
|
|
|
- if(this.$refs.detailsBox) {
|
|
|
|
- this.$refs.detailsBox.initData(this.title + '详情',"DEATILSInit", row)
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- /** 删除按钮操作 */
|
|
|
|
- handleDelete(row) {
|
|
|
|
- const ids = row.id || this.ids;
|
|
|
|
- this.$modal.confirm('是否确认删除数据项?').then( () => {
|
|
|
|
- return delTableApi(this.configUrl.delect,ids);
|
|
|
|
- }).then(() => {
|
|
|
|
|
|
+ methods: {
|
|
|
|
+ /** 查询用户列表 */
|
|
|
|
+ getList() {
|
|
|
|
+ this.loading = true;
|
|
|
|
+ listTableApi(
|
|
|
|
+ this.configUrl.list,
|
|
|
|
+ this.addDateRange(
|
|
|
|
+ this.queryParams,
|
|
|
|
+ this.dateRange)).then(response => {
|
|
|
|
+ this.tableList = response.data.rows;
|
|
|
|
+ this.total = response.data.total;
|
|
|
|
+ this.loading = false;
|
|
|
|
+ }
|
|
|
|
+ ).catch (error=>{
|
|
|
|
+ console.error('获取列表失败!!!!',error)
|
|
|
|
+ this.tableList = [];
|
|
|
|
+ this.total = 0;
|
|
|
|
+ this.loading = false
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ /** 搜索按钮操作 */
|
|
|
|
+ handleQuery() {
|
|
|
|
+ this.queryParams.pageNum = 1;
|
|
this.getList();
|
|
this.getList();
|
|
- this.$modal.msgSuccess("删除成功");
|
|
|
|
- }).catch((e) => {
|
|
|
|
- console.error("删除失败====",e)
|
|
|
|
- });
|
|
|
|
- },
|
|
|
|
- /** 导出按钮操作 */
|
|
|
|
- handleExport() {
|
|
|
|
- this.download(this.configUrl.export, {
|
|
|
|
- ...this.queryParams
|
|
|
|
- }, `${this.title }_${new Date().getTime()}.xlsx`)
|
|
|
|
- },
|
|
|
|
- /** 导入按钮操作 */
|
|
|
|
- handleImport() {
|
|
|
|
- if(this.$refs.upload) {
|
|
|
|
- this.$refs.upload.initData({
|
|
|
|
- width: '400px',
|
|
|
|
- // 弹出层标题(用户导入)
|
|
|
|
- title: this.title + "导入",
|
|
|
|
- // 下载模板地址
|
|
|
|
- importTemplate: this.configUrl.download,
|
|
|
|
- // 上传的地址
|
|
|
|
- url: this.configUrl.upload
|
|
|
|
- })
|
|
|
|
|
|
+ },
|
|
|
|
+ /** 重置按钮操作 */
|
|
|
|
+ resetQuery() {
|
|
|
|
+ this.dateRange = [];
|
|
|
|
+ this.queryParams = {
|
|
|
|
+ pageNum: 1,
|
|
|
|
+ pageSize: 10,
|
|
|
|
+ }
|
|
|
|
+ this.handleQuery();
|
|
|
|
+ },
|
|
|
|
+ /** 新增按钮操作 */
|
|
|
|
+ handleAdd() {
|
|
|
|
+ if(this.$refs.addAndEdit) {
|
|
|
|
+ this.$refs.addAndEdit.initData(this.title + '新增', "ADD",{})
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ // 多选框选中数据
|
|
|
|
+ handleSelectionChange(selection) {
|
|
|
|
+ this.ids = selection.map(item => item.id);
|
|
|
|
+ this.single = selection.length != 1;
|
|
|
|
+ this.multiple = !selection.length;
|
|
|
|
+ },
|
|
|
|
+ /** 修改按钮操作 */
|
|
|
|
+ handleUpdate(row) {
|
|
|
|
+ if(this.$refs.addAndEdit) {
|
|
|
|
+ this.$refs.addAndEdit.initData(this.title + '编辑', "EDITInit",{...row})
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ handleDetails(row){
|
|
|
|
+ if(this.$refs.detailsBox) {
|
|
|
|
+ this.$refs.detailsBox.initData(this.title + '详情', "EDITInit",{...row})
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ /** 删除按钮操作 */
|
|
|
|
+ handleDelete(row) {
|
|
|
|
+ const ids = row.id || this.ids;
|
|
|
|
+ this.$modal.confirm('是否确认删除数据项?').then( () => {
|
|
|
|
+ return delTableParamsApi(this.configUrl.delect,{
|
|
|
|
+ id: ids
|
|
|
|
+ });
|
|
|
|
+ }).then(() => {
|
|
|
|
+ this.getList();
|
|
|
|
+ this.$modal.msgSuccess("删除成功");
|
|
|
|
+ }).catch((e) => {
|
|
|
|
+ console.error("删除失败====",e)
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ /** 导出按钮操作 */
|
|
|
|
+ handleExport() {
|
|
|
|
+ this.download(this.configUrl.export, {
|
|
|
|
+ ...this.queryParams
|
|
|
|
+ }, `${this.title }_${new Date().getTime()}.xlsx`)
|
|
|
|
+ },
|
|
|
|
+ /** 导入按钮操作 */
|
|
|
|
+ handleImport() {
|
|
|
|
+ if(this.$refs.upload) {
|
|
|
|
+ this.$refs.upload.initData({
|
|
|
|
+ width: '400px',
|
|
|
|
+ // 弹出层标题(用户导入)
|
|
|
|
+ title: this.title + "导入",
|
|
|
|
+ // 下载模板地址
|
|
|
|
+ importTemplate: this.configUrl.download,
|
|
|
|
+ // 上传的地址
|
|
|
|
+ url: this.configUrl.upload
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ /** 开/闭 */
|
|
|
|
+ openAttraction(row) {
|
|
|
|
+ this.$modal.confirm(`是否确认${row.status == 1 ? '禁用' : '启用'} ${row.realName||''}吗?`).then( () => {
|
|
|
|
+ return addTableApi(this.configUrl.updateStatus,{
|
|
|
|
+ id: row.id,
|
|
|
|
+ status: row.status == 1 ? 0 : 1
|
|
|
|
+ });
|
|
|
|
+ }).then(() => {
|
|
|
|
+ this.getList();
|
|
|
|
+ this.$modal.msgSuccess(`${row.status == 1 ? '禁用' : '启用'}成功`);
|
|
|
|
+ }).catch((e) => {
|
|
|
|
+ console.error("失败====",e)
|
|
|
|
+ });
|
|
}
|
|
}
|
|
- },
|
|
|
|
- }
|
|
|
|
-};
|
|
|
|
|
|
+ }
|
|
|
|
+ };
|
|
</script>
|
|
</script>
|
|
|
|
+
|
|
|
|
+
|