添加微信公众号路由

master
Sigo 3 years ago
parent 0fe992d6b9
commit e22e29445d

@ -66,6 +66,13 @@ export default {
index: "storeParameters",
number: "400100",
},
{
name: "微信公众号",
icon: "el-icon-s-data",
route: "/tencentAccount",
index: "tencentAccount",
number: "400110",
},
{
name: "角色档案",
icon: "el-icon-user",

@ -30,7 +30,7 @@
<el-input v-model="queryForm.name" placeholder="分享人" clearable size="small" style="width: 150px"></el-input>
</el-form-item>
<el-form-item>
<el-button icon="el-icon-search" type="primary" @click="queryData"></el-button>
<el-button icon="el-icon-search" type="primary" size="small" @click="queryData"></el-button>
</el-form-item>
</el-form>
</div>
@ -38,9 +38,9 @@
<!-- <el-table style="width: 100%;margin-top:5px" :header-cell-style="{background: 'linear-gradient(#6cb3ff, #1873d4)' ,color:'#eeeeee'}" ref="list" class="custom-table" highlight-current-row border v-loading="listLoading" :data="list" max-height="600px" :element-loading-text="elementLoadingText" @row-dblclick="handleGot"> -->
<el-table style="width: 100%;margin-top:5px" :header-cell-style="{background: 'linear-gradient(#6cb3ff, #1873d4)' ,color:'#eeeeee'}" ref="list" class="custom-table" highlight-current-row border v-loading="listLoading" :data="list" max-height="600px" :element-loading-text="elementLoadingText">
<template slot="empty"></template>
<el-table-column show-overflow-tooltip align="center" min-width="100" prop="share" label="分享人"></el-table-column>
<!-- <el-table-column show-overflow-tooltip align="center" min-width="100" prop="share" label="分享人"></el-table-column> -->
<el-table-column show-overflow-tooltip align="center" min-width="100" prop="sharePhone" label="分享人手机号码"></el-table-column>
<el-table-column show-overflow-tooltip align="center" min-width="100" prop="got" label="领取人"></el-table-column>
<!-- <el-table-column show-overflow-tooltip align="center" min-width="100" prop="got" label="领取人"></el-table-column> -->
<el-table-column show-overflow-tooltip align="center" min-width="100" prop="getPhone" label="领取人手机号码"></el-table-column>
<el-table-column show-overflow-tooltip align="center" min-width="100" prop="getDate" label="领取时间"></el-table-column>
<el-table-column show-overflow-tooltip align="center" min-width="100" prop="docDate" label="核销时间"></el-table-column>

@ -0,0 +1,22 @@
<template>
<div class="container">
</div>
</template>
<script>
export default {
data() {
return {
};
},
methods: {
},
created() {
},
};
</script>
<style>
</style>

@ -4,8 +4,7 @@ import Layout from "../layout/layout.vue";
Vue.use(VueRouter);
const router = new VueRouter({
routes: [
{
routes: [{
path: "/",
redirect: "/login"
},
@ -40,6 +39,16 @@ const router = new VueRouter({
index: "storeParameters"
}
},
//微信公众号
{
path: "/tencentAccount",
component: () =>
import("../pages/storeManage/tencentAccount/index.vue"),
meta: {
title: "微信公众号",
index: "tencentAccount"
}
},
//职务档案
{
path: "/gradeList",

Loading…
Cancel
Save