Commit 395c9be5 by chenyu

update: update

parent 52a7184a
......@@ -12,7 +12,7 @@
<head>
<meta charset="utf-8">
<link rel="shortcut icon" href="./favicon.ico" />
<title>限流控制管理平台</title>
<title>达摩工具管理平台</title>
<link rel="stylesheet" type="text/css" href="//web-1251519181.file.myqcloud.com/custom-element/custom-element.1.0.28.css" />
</head>
......
......@@ -13,9 +13,9 @@ import { Message } from 'element-ui';
Vue.axios.defaults.timeout = 500000;
let local = window.location.origin;
/* if (local.indexOf('localhost') != -1) {
if (local.indexOf('localhost') != -1) {
local = 'https://www.gicdev.com';
} */
}
let axiosPromiseArr = []; //储存cancel toke
let pending = []; //声明一个数组用于存储每个ajax请求的取消函数和ajax标识
let CancelToken = Vue.axios.CancelToken;
......
......@@ -9,7 +9,7 @@
<template>
<div class="navheader">
<!-- logo -->
<div class="navheader-logo fl cursor-pointer" :class="{ moveleft: isCollapse, moveright: !isCollapse }" @click="toIndex"><span class="pro-name">限流控制管理平台</span></div>
<div class="navheader-logo fl cursor-pointer" :class="{ moveleft: isCollapse, moveright: !isCollapse }" @click="toIndex"><span class="pro-name">达摩工具管理平台</span></div>
<div class="navheader-item fl">
<!-- <a class="itemlink icon-collapse" @click="handleCollapse">
<i class="iconfont" :class="{ 'icon-shouqi': !isCollapse, 'icon-zhankai': isCollapse }"></i>
......
......@@ -41,7 +41,7 @@ export const constantRouterMap = [
{
path: '/',
name: '/',
redirect: 'index'
redirect: 'module'
},
{
path: '/login',
......@@ -51,28 +51,42 @@ export const constantRouterMap = [
{
// 审核中心
path: '/index',
path: '/module',
name: '审核中心',
redirect: 'index',
redirect: 'module/first',
component: _import('module', 'index'),
children: [
{
path: '/index',
path: '/module/first',
name: '模块',
component: _import('module', 'home')
},
{
path: '/second',
path: '/module/second',
name: '限流',
component: _import('module', 'second')
},
{
path: '/third',
path: '/module/third',
name: '关系',
component: _import('module', 'third')
}
]
},
{
// 索引
path: '/index',
name: '索引',
redirect: 'index/first',
component: _import('index', 'index'),
children: [
{
path: '/index/first',
name: '索引',
component: _import('index', 'home')
},
]
},
{
path: '/gic-error',
......
<!--
* @Descripttion: 当前组件信息
* @version: 1.0.0
* @Author: 无尘
* @Date: 2018-10-10 14:44:45
* @LastEditors: 无尘
* @LastEditTime: 2020-12-04 16:25:00
-->
<template>
<div class="unreview-wrap common-set-wrap">
<div class="right-content">
<div class="right-box" style="min-height: calc(100vh - 126px)">
<div class="m-b-20 flex">
<div class="search-items">
<p class="search-items-label">是否处理:</p>
<el-select style="width:140px;" v-model="searchParams.dealFlag" placeholder="请选择是否处理" clearable @change="searchPage">
<el-option label="是" :value="1"></el-option>
<el-option label="否" :value="0"></el-option>
<el-option label="无" :value="-1"></el-option>
</el-select>
</div>
<div class="search-items">
<p class="search-items-label">库地址:</p>
<el-select style="width:140px;" v-model="searchParams.dataSourceId" placeholder="请选择库地址" clearable @change="searchPage">
<el-option v-for="item in sqlUrlOpts" :label="item.name" :value="item.key" :key="item.key"></el-option>
</el-select>
</div>
<div class="search-items">
<p class="search-items-label">库名:</p>
<el-input style="width:140px;" placeholder="请输入库名" v-model="searchParams.scame" clearable @change="searchPage"> </el-input>
</div>
<div class="search-items">
<p class="search-items-label">表名:</p>
<el-input style="width:140px;" placeholder="请输入表名" v-model="searchParams.tableName" clearable @change="searchPage"> </el-input>
</div>
</div>
<div class="reviewed-body-content">
<el-table ref="multipleTable" v-loading="loading" :data="tableData" tooltip-effect="dark" style="width: 100%" @selection-change="handleSelectionChange">
<el-table-column label="uuid" prop="uuid" show-overflow-tooltip></el-table-column>
<el-table-column label="时间" prop="updateTime" show-overflow-tooltip></el-table-column>
<el-table-column label="sql内容" prop="sqlContent" show-overflow-tooltip></el-table-column>
<el-table-column label="处理后的索引" prop="useIndex" show-overflow-tooltip></el-table-column>
<el-table-column label="是否处理所有" prop="sureFlag" show-overflow-tooltip>
<template slot-scope="scope">
{{ scope.row.sureFlag === 0 ? '否' : '是' }}
</template>
</el-table-column>
<el-table-column label="可能的索引" prop="sureUseIndex" show-overflow-tooltip></el-table-column>
<el-table-column label="操作">
<template slot-scope="scope">
<el-button type="text" @click="openDailog(scope.row)">设置索引</el-button>
</template>
</el-table-column>
</el-table>
</div>
</div>
</div>
<!-- 设置索引 -->
<el-dialog title="设置索引" :visible.sync="showDailog" width="600px" :before-close="handleClose">
<div class="">
<el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="100px" class="demo-ruleForm">
<el-form-item label="索引" prop="moudleName">
<el-input v-model="ruleForm.moudleName" placeholder="请输入模块名称"></el-input>
</el-form-item>
</el-form>
</div>
<div slot="footer" class="dialog-footer">
<el-button @click="handleClose">取消</el-button>
<el-button type="primary" @click="submitForm('ruleForm')">确定</el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import errMsg from '@/common/js/error';
// import { _debounce } from '@/common/js/public';
import { getRequest } from '@/api/api';
export default {
name: 'unreview',
data() {
return {
wxEnterpriseId: localStorage.getItem('userInfos') ? JSON.parse(localStorage.getItem('userInfos')).wxEnterpriseId : '',
loading: false,
tableData: [],
sqlUrlOpts: [],
searchParams: {
tableName: '', // 表名 必填
dataSourceId: '', // 库地址 必填
scame: '', // 库名 必填
dealFlag: -1 // 是否处理索引默认-1 1已处理 0未处理
},
showDailog: true,
ruleForm: {
indexName: '',
uuid: ''
},
rules: {
indexName: [{ required: true, message: '请输入索引', trigger: 'blur' }]
}
};
},
methods: {
/**
* 弹窗操作
*/
openDailog(item) {
const that = this;
that.ruleForm = {
indexName: item.sureUseIndex,
uuid: item.uuid
};
that.showDailog = true;
},
handleClose() {
const that = this;
that.showDailog = false;
that.$refs['ruleForm'].resetFields();
},
submitForm() {
const that = this;
let para = { ...this.ruleForm };
getRequest('/redis-limiter-web/sql/set-index', para)
.then(res => {
let resData = res.data;
errMsg.errorMsg(resData);
that.handleClose();
that.getTableList();
})
.catch(function(error) {
that.$message.error({
duration: 1000,
message: error.message
});
});
},
searchPage() {
const { tableName, dataSourceId, scame } = this.searchParams;
if (tableName && dataSourceId && scame) this.getTableList();
},
/**
* 获取列表数据
*/
getTableList() {
const that = this;
that.loading = true;
let para = { ...this.searchParams };
getRequest('/redis-limiter-web/sql/sql-index-check', para)
.then(res => {
let resData = res.data;
that.loading = false;
if (resData.errorCode == 1) {
that.tableData = resData.result || [];
return;
}
errMsg.errorMsg(resData);
})
.catch(function(error) {
that.$message.error({
duration: 1000,
message: error.message
});
})
.finally(_ => (that.loading = false));
},
/**
* 获取sql地址列表
*/
getSqlList() {
const that = this;
getRequest('/redis-limiter-web/sql/jdbc-url-list', {})
.then(res => {
let resData = res.data;
that.loading = false;
if (resData.errorCode == 1) {
that.sqlUrlOpts = resData.result || [];
return;
}
errMsg.errorMsg(resData);
})
.catch(function(error) {
that.loading = false;
that.$message.error({
duration: 1000,
message: error.message
});
});
}
},
mounted() {
const that = this;
that.$emit('showTab', 2);
that.getSqlList();
},
components: {}
};
</script>
<style lang="scss" scoped>
.search-items {
display: flex;
align-items: center;
margin-right: 10px;
.search-items-label {
font-size: 14px;
color: #303133;
}
}
</style>
<!--
* @Descripttion: 当前组件信息
* @version: 1.0.0
* @Author: 无尘
* @Date: 2018-10-10 14:44:45
* @LastEditors: 无尘
* @LastEditTime: 2020-12-04 14:08:59
-->
<template>
<div class="review-wrap">
<!-- 公共头部菜单插件 -->
<vue-office-header :projectName="projectName" @collapseTag="collapseTag" @toRouterView="toRouterView"> </vue-office-header>
<div class="setting-wrap__body">
<div id="content" class="content">
<div class="content-body">
<div class="content-body-inner flex border-box">
<div class="apps-content-left w-157" style="min-height: calc(100vh - 86px);">
<common-detail-left :tabListData="tabListData" :activeSelTab="activeSelTab" @setSelectTab="setSelectTab"></common-detail-left>
</div>
<div class="apps-content-right border-box">
<transition name="fade" mode="out-in">
<router-view :brandId="activeBrand" :activeGroupId="activeGroup" :tabType="activeTab" @showTab="showTab"></router-view>
</transition>
</div>
</div>
</div>
</div>
</div>
</div>
</template>
<script>
import vueOfficeHeader from '@/components/vue-office-header';
import commonDetailLeft from '@/components/app/app-detail-left.vue';
export default {
name: 'reviewed',
components: {
vueOfficeHeader,
commonDetailLeft
},
data() {
return {
projectName: 'haoban-manage-web', // 当前项目名
collapseFlag: false, // 折叠参数
contentHeight: '0px', //页面内容高度
activeSelTab: '2',
activeTab: '2',
tabListData: [
{
tabId: '1',
tabName: '模块',
icon: 'icondaishenhe_orange'
},
{
tabId: '2',
tabName: '索引',
icon: 'icondaishenhe_orange'
}
]
};
},
computed: {},
methods: {
/**
* 路由跳转
*/
changeRoute(path) {
this.$router.push(path);
},
/**
* 选择后返回tabId,做各路由判断
*/
setSelectTab(item) {
let that = this;
that.activeTab = item.tabId;
switch (item.tabId) {
case '1':
that.changeRoute(`/module/first`);
break;
case '2':
that.changeRoute(`/index/first`);
break;
}
},
/**
* 各路由返回 tabId
*/
showTab(id) {
let that = this;
that.activeTab = id;
that.activeSelTab = id;
that.tabListData.forEach(ele => {
if (ele.tabId == id) {
ele.onlyIconActive = false;
}
if (!!ele.children) {
ele.children.forEach(el => {
if (el.tabId == id) {
ele.onlyIconActive = true;
}
if (!!el.children) {
el.children.forEach(item => {
if (item.tabId == id) {
ele.onlyIconActive = true;
}
});
}
});
}
});
},
// 处理路由跳转
toRouterView(val) {
const that = this;
// 模拟检查数据,有两个参数
/*{
name:,
path:
}*/
that.$router.push({
path: val.path
});
},
// 折叠事件
collapseTag(val) {
const that = this;
that.collapseFlag = val;
}
},
watch: {
$route: {
handler: function(val, oldVal) {
// this.$refs.asideMenu.refreshRoute();
},
// 深度观察监听
deep: true
}
},
mounted() {
const that = this;
that.activeTab = '2';
that.contentHeight = (document.documentElement.clientHeight || document.body.clientHeight) - 64 + 'px';
}
};
</script>
<style lang="scss">
.review-wrap {
background-color: #f0f2f5;
}
.setting-wrap__body {
.content {
padding-top: 46px;
/* height: calc(100% - 64px);
overflow-y: auto;*/
min-width: 1400px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
.content-body {
.content-body-inner {
padding: 20px;
min-height: calc(100% - 86px);
}
.apps-content-left {
min-width: 157px;
// height: 100%;
background: #fff;
overflow-x: hidden;
overflow-y: auto;
}
.apps-content-right {
width: calc(100% - 157px);
padding-left: 10px;
background: #f0f2f5;
}
.common-set-wrap {
position: relative;
width: 100%;
height: 100%;
overflow-y: auto;
.right-content {
/*width: 100%;*/
min-height: calc(100% - 86px);
.right-box {
background: #fff;
padding: 20px;
}
}
}
}
}
}
.el-table__body-wrapper .el-table__empty-block {
height: 256px;
}
.el-table__empty-text {
width: auto;
margin-bottom: 80px;
&::before {
content: ' ';
display: block;
width: 60px;
height: 60px;
background: url(../../assets/no-data_icon.png) no-repeat center;
margin: 0px auto 22px auto;
}
}
.el-table__empty-text {
margin-bottom: 0;
}
</style>
......@@ -50,6 +50,11 @@ export default {
tabId: '1',
tabName: '模块',
icon: 'icondaishenhe_orange'
},
{
tabId: '2',
tabName: '索引',
icon: 'icondaishenhe_orange'
}
]
};
......@@ -70,7 +75,10 @@ export default {
that.activeTab = item.tabId;
switch (item.tabId) {
case '1':
that.changeRoute(`index`);
that.changeRoute(`/module/first`);
break;
case '2':
that.changeRoute(`/index/first`);
break;
}
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment