Commit 460ae1b9 by 刘玉帅

xq

parent 3890e016
/*
* @Author: your name
* @Date: 2021-08-27 14:14:36
* @LastEditTime: 2021-09-15 15:01:35
* @LastEditTime: 2021-09-15 15:54:59
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: \founder_vue\src\router\modules\index.js
......@@ -66,7 +66,7 @@ export default [
{
path: "/Home/rwgl/rymplb/:id/:type",
name: "rymplb",
hidden: false,
hidden: true,
meta: {
title: "人员摸排列表",
auth: "5",
......@@ -74,6 +74,17 @@ export default [
},
component: () => import("@/views/rwgl/rymplb.vue"),
},
// {
// path: "/rymplb",
// name: "rymplb",
// hidden: false,
// meta: {
// title: "人员摸排列表",
// auth: "5",
// },
// component: () => import("@/views/rwgl/rymplb.vue"),
// },
{
path: "rympfk",
name: "rympfk",
......@@ -107,7 +118,7 @@ export default [
{
path: "mptj",
name: "mptj",
hidden: true,
hidden: false,
meta: {
title: "人员摸排",
auth: "5"
......
......@@ -42,7 +42,7 @@ axios.interceptors.request.use(
let token = window.sessionStorage.getItem('token')
console.log(token);
if (token) {
axios.defaults.headers['blade-auth'] = 'bearer ' + `${token}` // 让每个请求携带token--['Authorization']为自定义key 请根据实际情况自行修改
config.headers['blade-auth'] = 'bearer ' + `${token}` // 让每个请求携带token--['Authorization']为自定义key 请根据实际情况自行修改
console.log('00000');
console.log(config);
}
......
<!--
* @Author: your name
* @Date: 2021-08-27 15:52:57
* @LastEditTime: 2021-09-15 10:43:16
* @LastEditTime: 2021-09-15 16:38:19
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: \founder_vue\src\views\rymp.vue
......@@ -106,6 +106,9 @@
</el-table-column>
<el-table-column label="操作" width="auto">
<template slot-scope="scope">
<el-button type="text" size="small" @click="handInit(scope.row, 'xf')"
>下发</el-button
>
<el-button type="text" size="small" @click="handInit(scope.row, 'xq')"
>详情</el-button
>
......
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