Commit 144fc0c1efefa8e5a807badb095f7019a0738578
1 parent
3a100eef
统一登录平台
Showing
23 changed files
with
148 additions
and
43 deletions
.env.devTest
| 1 | # 页面标题 | 1 | # 页面标题 |
| 2 | -VITE_APP_TITLE = 临港巴士岗前检测系统 | 2 | +VITE_APP_TITLE = 岗前检查流程信息管理 |
| 3 | 3 | ||
| 4 | # 测试 | 4 | # 测试 |
| 5 | VITE_APP_ENV = 'devTest' | 5 | VITE_APP_ENV = 'devTest' |
| 6 | 6 | ||
| 7 | # 签到机系统/测试 | 7 | # 签到机系统/测试 |
| 8 | -VITE_APP_BASE_API = 'http://61.169.120.202:8100' | 8 | +VITE_APP_BASE_API = 'http://192.168.169.100:8100' |
| 9 | +#VITE_APP_BASE_API = 'http://127.0.0.1:8100' | ||
| 9 | # VITE_APP_BASE_API = 'http://101.95.136.202:8100' | 10 | # VITE_APP_BASE_API = 'http://101.95.136.202:8100' |
| 10 | 11 | ||
| 11 | # 是否在打包时开启压缩,支持 gzip 和 brotli | 12 | # 是否在打包时开启压缩,支持 gzip 和 brotli |
.env.development
.env.production
| 1 | # 页面标题 | 1 | # 页面标题 |
| 2 | -VITE_APP_TITLE = "临港巴士岗前检测系统" | 2 | +VITE_APP_TITLE = "岗前检查流程信息管理系统" |
| 3 | 3 | ||
| 4 | # 生产环境配置 | 4 | # 生产环境配置 |
| 5 | VITE_APP_ENV = 'production' | 5 | VITE_APP_ENV = 'production' |
| 6 | 6 | ||
| 7 | # 签到机系统/生产环境 | 7 | # 签到机系统/生产环境 |
| 8 | # VITE_APP_BASE_API = 'http://101.95.136.202:8100' | 8 | # VITE_APP_BASE_API = 'http://101.95.136.202:8100' |
| 9 | -VITE_APP_BASE_API = 'http://61.169.120.202:8102' | 9 | +VITE_APP_BASE_API = 'http://10.10.150.173:8102' |
| 10 | # VITE_APP_BASE_API = 'http://1.14.107.94:8100' | 10 | # VITE_APP_BASE_API = 'http://1.14.107.94:8100' |
| 11 | 11 | ||
| 12 | # 是否在打包时开启压缩,支持 gzip 和 brotli | 12 | # 是否在打包时开启压缩,支持 gzip 和 brotli |
.env.staging
index.html
| @@ -9,7 +9,7 @@ | @@ -9,7 +9,7 @@ | ||
| 9 | content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" | 9 | content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" |
| 10 | /> | 10 | /> |
| 11 | <link rel="icon" href="public/favicon.ico" /> | 11 | <link rel="icon" href="public/favicon.ico" /> |
| 12 | - <title>临港巴士岗前检测系统</title> | 12 | + <title>岗前检查流程信息管理系统</title> |
| 13 | <!--[if lt IE 11 | 13 | <!--[if lt IE 11 |
| 14 | ]><script> | 14 | ]><script> |
| 15 | window.location.href = "/html/ie.html"; | 15 | window.location.href = "/html/ie.html"; |
package.json
src/api/login.js
| @@ -18,6 +18,14 @@ export function login(username, password, code, uuid) { | @@ -18,6 +18,14 @@ export function login(username, password, code, uuid) { | ||
| 18 | }) | 18 | }) |
| 19 | } | 19 | } |
| 20 | 20 | ||
| 21 | +export function getInfo(token) { | ||
| 22 | + | ||
| 23 | + return request({ | ||
| 24 | + url: '/getInfo?token='+token, | ||
| 25 | + method: 'get' | ||
| 26 | + }) | ||
| 27 | +} | ||
| 28 | + | ||
| 21 | // 注册方法 | 29 | // 注册方法 |
| 22 | export function register(data) { | 30 | export function register(data) { |
| 23 | return request({ | 31 | return request({ |
| @@ -30,13 +38,13 @@ export function register(data) { | @@ -30,13 +38,13 @@ export function register(data) { | ||
| 30 | }) | 38 | }) |
| 31 | } | 39 | } |
| 32 | 40 | ||
| 33 | -// 获取用户详细信息 | ||
| 34 | -export function getInfo() { | ||
| 35 | - return request({ | ||
| 36 | - url: '/getInfo', | ||
| 37 | - method: 'get' | ||
| 38 | - }) | ||
| 39 | -} | 41 | +// // 获取用户详细信息 |
| 42 | +// export function getInfo() { | ||
| 43 | +// return request({ | ||
| 44 | +// url: '/getInfo', | ||
| 45 | +// method: 'get' | ||
| 46 | +// }) | ||
| 47 | +// } | ||
| 40 | 48 | ||
| 41 | // 退出方法 | 49 | // 退出方法 |
| 42 | export function logout() { | 50 | export function logout() { |
src/api/scheduling/keyWorkLocation/keyWorkLocation.js
| @@ -3,7 +3,6 @@ import request from '@/utils/request' | @@ -3,7 +3,6 @@ import request from '@/utils/request' | ||
| 3 | 3 | ||
| 4 | // 分页查询列表 | 4 | // 分页查询列表 |
| 5 | export function listLimitOfLinggangKeyWorkLocation(params,page,limit) { | 5 | export function listLimitOfLinggangKeyWorkLocation(params,page,limit) { |
| 6 | - console.log("page------------------------->"+page); | ||
| 7 | 6 | ||
| 8 | return request({ | 7 | return request({ |
| 9 | url: '/linggang/key/work/location/list/limit/'+page+'/'+limit, | 8 | url: '/linggang/key/work/location/list/limit/'+page+'/'+limit, |
src/components/FileUpload/index.vue
| @@ -165,7 +165,6 @@ function uploadedSuccessfully() { | @@ -165,7 +165,6 @@ function uploadedSuccessfully() { | ||
| 165 | 165 | ||
| 166 | // 获取文件名称 | 166 | // 获取文件名称 |
| 167 | function getFileName(name) { | 167 | function getFileName(name) { |
| 168 | - console.log(name); | ||
| 169 | try { | 168 | try { |
| 170 | if (name.lastIndexOf("/") > -1) { | 169 | if (name.lastIndexOf("/") > -1) { |
| 171 | return name.slice(name.lastIndexOf("/") + 1); | 170 | return name.slice(name.lastIndexOf("/") + 1); |
src/components/ImageUpload/index.vue
| @@ -73,14 +73,12 @@ const showTip = computed( | @@ -73,14 +73,12 @@ const showTip = computed( | ||
| 73 | ); | 73 | ); |
| 74 | 74 | ||
| 75 | watch(() => props.modelValue, val => { | 75 | watch(() => props.modelValue, val => { |
| 76 | - console.log("value=========>"+val); | ||
| 77 | 76 | ||
| 78 | if (val) { | 77 | if (val) { |
| 79 | // 首先将值转为数组 | 78 | // 首先将值转为数组 |
| 80 | const list = Array.isArray(val) ? val : props.modelValue.split(","); | 79 | const list = Array.isArray(val) ? val : props.modelValue.split(","); |
| 81 | // 然后将数组转为对象数组 | 80 | // 然后将数组转为对象数组 |
| 82 | fileList.value = list.map(item => { | 81 | fileList.value = list.map(item => { |
| 83 | - console.log("111111111111111111111111"); | ||
| 84 | 82 | ||
| 85 | if (typeof item === "string") { | 83 | if (typeof item === "string") { |
| 86 | item = { name: item, url: item }; | 84 | item = { name: item, url: item }; |
src/layout/components/Navbar.vue
| @@ -91,7 +91,8 @@ function logout() { | @@ -91,7 +91,8 @@ function logout() { | ||
| 91 | type: 'warning' | 91 | type: 'warning' |
| 92 | }).then(() => { | 92 | }).then(() => { |
| 93 | userStore.logOut().then(() => { | 93 | userStore.logOut().then(() => { |
| 94 | - location.href = '/index'; | 94 | + location.href = '/login'; |
| 95 | + //window.open('','_self').close() | ||
| 95 | }) | 96 | }) |
| 96 | }).catch(() => { }); | 97 | }).catch(() => { }); |
| 97 | } | 98 | } |
src/layout/components/Sidebar/Logo.vue
| @@ -30,7 +30,7 @@ defineProps({ | @@ -30,7 +30,7 @@ defineProps({ | ||
| 30 | } | 30 | } |
| 31 | }) | 31 | }) |
| 32 | 32 | ||
| 33 | -const title = ref('临港巴士岗前检测系统'); | 33 | +const title = ref('岗前检查流程信息管理'); |
| 34 | const settingsStore = useSettingsStore(); | 34 | const settingsStore = useSettingsStore(); |
| 35 | const sideTheme = computed(() => settingsStore.sideTheme); | 35 | const sideTheme = computed(() => settingsStore.sideTheme); |
| 36 | </script> | 36 | </script> |
src/permission.js
| 1 | import usePermissionStore from '@/store/modules/permission' | 1 | import usePermissionStore from '@/store/modules/permission' |
| 2 | import useSettingsStore from '@/store/modules/settings' | 2 | import useSettingsStore from '@/store/modules/settings' |
| 3 | import useUserStore from '@/store/modules/user' | 3 | import useUserStore from '@/store/modules/user' |
| 4 | -import { getToken } from '@/utils/auth' | 4 | +import { getToken,setToken } from '@/utils/auth' |
| 5 | import { isRelogin } from '@/utils/request' | 5 | import { isRelogin } from '@/utils/request' |
| 6 | import { isHttp } from '@/utils/validate' | 6 | import { isHttp } from '@/utils/validate' |
| 7 | import { ElMessage } from 'element-plus' | 7 | import { ElMessage } from 'element-plus' |
| @@ -11,11 +11,12 @@ import router from './router' | @@ -11,11 +11,12 @@ import router from './router' | ||
| 11 | 11 | ||
| 12 | NProgress.configure({ showSpinner: false }); | 12 | NProgress.configure({ showSpinner: false }); |
| 13 | 13 | ||
| 14 | -const whiteList = ['/login', '/register','/in','/home/index']; | 14 | +const whiteList = ['/login', '/register','/in','/home/index','/getInfo']; |
| 15 | 15 | ||
| 16 | router.beforeEach((to, from, next) => { | 16 | router.beforeEach((to, from, next) => { |
| 17 | NProgress.start() | 17 | NProgress.start() |
| 18 | if (getToken()) { | 18 | if (getToken()) { |
| 19 | + | ||
| 19 | to.meta.title && useSettingsStore().setTitle(to.meta.title) | 20 | to.meta.title && useSettingsStore().setTitle(to.meta.title) |
| 20 | /* has token*/ | 21 | /* has token*/ |
| 21 | if (to.path === '/login') { | 22 | if (to.path === '/login') { |
| @@ -37,10 +38,20 @@ router.beforeEach((to, from, next) => { | @@ -37,10 +38,20 @@ router.beforeEach((to, from, next) => { | ||
| 37 | next({ ...to, replace: true }) // hack方法 确保addRoutes已完成 | 38 | next({ ...to, replace: true }) // hack方法 确保addRoutes已完成 |
| 38 | }) | 39 | }) |
| 39 | }).catch(err => { | 40 | }).catch(err => { |
| 41 | + // useUserStore().logOut().then(() => { | ||
| 42 | + // ElMessage.error(err) | ||
| 43 | + // next({ path: '/' }) | ||
| 44 | + // }) | ||
| 40 | useUserStore().logOut().then(() => { | 45 | useUserStore().logOut().then(() => { |
| 41 | - ElMessage.error(err) | ||
| 42 | - next({ path: '/' }) | ||
| 43 | - }) | 46 | + // Message.error(err) |
| 47 | + // next({ path: '/' }) | ||
| 48 | + let index = to.path.indexOf("?"); | ||
| 49 | + let length = to.path.length; | ||
| 50 | + let param = to.path.substring(index,length); | ||
| 51 | + | ||
| 52 | + location.href = '/'; | ||
| 53 | + }) | ||
| 54 | + | ||
| 44 | }) | 55 | }) |
| 45 | } else { | 56 | } else { |
| 46 | next() | 57 | next() |
| @@ -52,12 +63,46 @@ router.beforeEach((to, from, next) => { | @@ -52,12 +63,46 @@ router.beforeEach((to, from, next) => { | ||
| 52 | // 在免登录白名单,直接进入 | 63 | // 在免登录白名单,直接进入 |
| 53 | next() | 64 | next() |
| 54 | } else { | 65 | } else { |
| 55 | - next(`/login?redirect=${to.fullPath}`) // 否则全部重定向到登录页 | 66 | + let params = getURLParams1(); |
| 67 | + let url = null; | ||
| 68 | + if(params && params.token){ | ||
| 69 | + setToken(params.token) | ||
| 70 | + | ||
| 71 | + url = "/?token="+params.token; | ||
| 72 | + }else{ | ||
| 73 | + url = `${to.fullPath}`; | ||
| 74 | + if(url.indexOf("redirect") == -1){ | ||
| 75 | + if(url.indexOf(url,"?") > -1){ | ||
| 76 | + url =url.replace("?", "&"); | ||
| 77 | + } | ||
| 78 | + url = `/login?redirect=`+url; | ||
| 79 | + }else{ | ||
| 80 | + url = `/login`+url; | ||
| 81 | + } | ||
| 82 | + } | ||
| 83 | + | ||
| 84 | + next(url) // 否则全部重定向到登录页 | ||
| 56 | NProgress.done() | 85 | NProgress.done() |
| 57 | } | 86 | } |
| 58 | } | 87 | } |
| 59 | }) | 88 | }) |
| 60 | 89 | ||
| 90 | + | ||
| 91 | +function getURLParams1() { | ||
| 92 | + const searchParams = window.location.search.substring(1).split('&'); | ||
| 93 | + const params = { | ||
| 94 | + | ||
| 95 | + }; | ||
| 96 | + | ||
| 97 | + for (const param of searchParams) { | ||
| 98 | + const [key, value] = param.split('='); | ||
| 99 | + params[key] = value; | ||
| 100 | + } | ||
| 101 | + | ||
| 102 | + return params; | ||
| 103 | +} | ||
| 104 | + | ||
| 105 | + | ||
| 61 | router.afterEach(() => { | 106 | router.afterEach(() => { |
| 62 | NProgress.done() | 107 | NProgress.done() |
| 63 | }) | 108 | }) |
src/router/index.js
| @@ -37,6 +37,12 @@ export const constantRoutes = [ | @@ -37,6 +37,12 @@ export const constantRoutes = [ | ||
| 37 | } | 37 | } |
| 38 | ] | 38 | ] |
| 39 | }, | 39 | }, |
| 40 | + //单点开始 | ||
| 41 | + { | ||
| 42 | + path: '/getInfo', | ||
| 43 | + component: (resolve) => require(['@/views/getInfo'], resolve), | ||
| 44 | + hidden: true | ||
| 45 | + }, | ||
| 40 | { | 46 | { |
| 41 | path: '/login', | 47 | path: '/login', |
| 42 | component: () => import('@/views/login'), | 48 | component: () => import('@/views/login'), |
src/store/modules/user.js
| @@ -19,18 +19,30 @@ const useUserStore = defineStore( | @@ -19,18 +19,30 @@ const useUserStore = defineStore( | ||
| 19 | const password = userInfo.password | 19 | const password = userInfo.password |
| 20 | const code = userInfo.code | 20 | const code = userInfo.code |
| 21 | const uuid = userInfo.uuid | 21 | const uuid = userInfo.uuid |
| 22 | + let that = this; | ||
| 22 | return new Promise((resolve, reject) => { | 23 | return new Promise((resolve, reject) => { |
| 23 | login(username, password, code, uuid).then(res => { | 24 | login(username, password, code, uuid).then(res => { |
| 24 | - setToken(res.token) | ||
| 25 | - this.token = res.token | ||
| 26 | - resolve() | 25 | + |
| 26 | + that.refreshTokenFun(res.token,resolve); | ||
| 27 | }).catch(error => { | 27 | }).catch(error => { |
| 28 | reject(error) | 28 | reject(error) |
| 29 | }) | 29 | }) |
| 30 | }) | 30 | }) |
| 31 | }, | 31 | }, |
| 32 | + | ||
| 33 | + refreshTokenFun(token,resolve){ | ||
| 34 | + setToken(token) | ||
| 35 | + this.token = token | ||
| 36 | + try{ | ||
| 37 | + resolve() | ||
| 38 | + }catch(e){ | ||
| 39 | + | ||
| 40 | + } | ||
| 41 | + | ||
| 42 | + }, | ||
| 32 | // 获取用户信息 | 43 | // 获取用户信息 |
| 33 | getInfo() { | 44 | getInfo() { |
| 45 | + | ||
| 34 | return new Promise((resolve, reject) => { | 46 | return new Promise((resolve, reject) => { |
| 35 | getInfo().then(res => { | 47 | getInfo().then(res => { |
| 36 | const user = res.user | 48 | const user = res.user |
src/utils/request.js
| @@ -86,9 +86,17 @@ service.interceptors.response.use(res => { | @@ -86,9 +86,17 @@ service.interceptors.response.use(res => { | ||
| 86 | if (!isRelogin.show) { | 86 | if (!isRelogin.show) { |
| 87 | isRelogin.show = true; | 87 | isRelogin.show = true; |
| 88 | ElMessageBox.confirm('登录状态已过期,您可以继续留在该页面,或者重新登录', '系统提示', { confirmButtonText: '重新登录', cancelButtonText: '取消', type: 'warning' }).then(() => { | 88 | ElMessageBox.confirm('登录状态已过期,您可以继续留在该页面,或者重新登录', '系统提示', { confirmButtonText: '重新登录', cancelButtonText: '取消', type: 'warning' }).then(() => { |
| 89 | - isRelogin.show = false; | ||
| 90 | - useUserStore().logOut().then(() => { | ||
| 91 | - location.href = '/index'; | 89 | + // isRelogin.show = false; |
| 90 | + // useUserStore().logOut().then(() => { | ||
| 91 | + // location.href = '/index'; | ||
| 92 | + // }) | ||
| 93 | + store.dispatch('LogOut').then(() => { | ||
| 94 | + // location.href = '/index'; | ||
| 95 | + //单点开始 | ||
| 96 | + console.log("================================>7"); | ||
| 97 | + | ||
| 98 | + location.href = '/getInfo'; | ||
| 99 | + //单点结束 | ||
| 92 | }) | 100 | }) |
| 93 | }).catch(() => { | 101 | }).catch(() => { |
| 94 | isRelogin.show = false; | 102 | isRelogin.show = false; |
src/views/equipment/carinfo/carInfo.vue
| @@ -63,7 +63,7 @@ | @@ -63,7 +63,7 @@ | ||
| 63 | </el-table-column> | 63 | </el-table-column> |
| 64 | </el-table> | 64 | </el-table> |
| 65 | 65 | ||
| 66 | - <pagination v-show="totalOfCarInfo > 0" :total="totalOfCarInfo" v-model:pageOfCarInfo="queryParamsOfCarInfo.pageNum" v-model:limit="queryParamsOfCarInfo.pageSize" | 66 | + <pagination v-show="totalOfCarInfo > 0" :total="totalOfCarInfo" v-model:page="queryParamsOfCarInfo.pageNum" v-model:limit="queryParamsOfCarInfo.pageSize" |
| 67 | @pagination="getListOfCarInfo" /> | 67 | @pagination="getListOfCarInfo" /> |
| 68 | 68 | ||
| 69 | <el-dialog :title="titleOfCarInfo" v-model="openOfCarInfo" width="500px" append-to-body> | 69 | <el-dialog :title="titleOfCarInfo" v-model="openOfCarInfo" width="500px" append-to-body> |
src/views/equipment/equipment_keyinfo/keyInfo.vue
| @@ -58,7 +58,7 @@ | @@ -58,7 +58,7 @@ | ||
| 58 | </el-table-column> | 58 | </el-table-column> |
| 59 | </el-table> | 59 | </el-table> |
| 60 | 60 | ||
| 61 | - <pagination v-show="totalOfKeyInfo > 0" :total="totalOfKeyInfo" v-model:pageOfKeyInfo="queryParamsOfKeyInfo.pageNum" v-model:limit="queryParamsOfKeyInfo.pageSize" | 61 | + <pagination v-show="totalOfKeyInfo > 0" :total="totalOfKeyInfo" v-model:page="queryParamsOfKeyInfo.pageNum" v-model:limit="queryParamsOfKeyInfo.pageSize" |
| 62 | @pagination="getListOfKeyInfo" /> | 62 | @pagination="getListOfKeyInfo" /> |
| 63 | 63 | ||
| 64 | <el-dialog :title="titleOfKeyInfo" v-model="openOfKeyInfo" width="500px" append-to-body> | 64 | <el-dialog :title="titleOfKeyInfo" v-model="openOfKeyInfo" width="500px" append-to-body> |
src/views/home/index.vue
| @@ -7,7 +7,7 @@ | @@ -7,7 +7,7 @@ | ||
| 7 | <div class="big-view-container-title"> | 7 | <div class="big-view-container-title"> |
| 8 | <!-- 标题 --> | 8 | <!-- 标题 --> |
| 9 | <div class="big-view-container-box"> | 9 | <div class="big-view-container-box"> |
| 10 | - 临港巴士岗前检查 | 10 | + 岗前检查流程信息管理系统 |
| 11 | </div> | 11 | </div> |
| 12 | <div class="big-view-container-time"> | 12 | <div class="big-view-container-time"> |
| 13 | <text> | 13 | <text> |
| @@ -248,8 +248,6 @@ const startUpdateDataTaskScheduler = () => { | @@ -248,8 +248,6 @@ const startUpdateDataTaskScheduler = () => { | ||
| 248 | }, 1000); | 248 | }, 1000); |
| 249 | } | 249 | } |
| 250 | 250 | ||
| 251 | - | ||
| 252 | - | ||
| 253 | /** 监听数据更新日期 */ | 251 | /** 监听数据更新日期 */ |
| 254 | watch(() => timeTaskObject.updateDateObject, (val1, val2) => { | 252 | watch(() => timeTaskObject.updateDateObject, (val1, val2) => { |
| 255 | // 发送请求更新数据 | 253 | // 发送请求更新数据 |
src/views/login.vue
| 1 | <template> | 1 | <template> |
| 2 | <div class="login"> | 2 | <div class="login"> |
| 3 | <el-form ref="loginRef" :model="loginForm" :rules="loginRules" class="login-form"> | 3 | <el-form ref="loginRef" :model="loginForm" :rules="loginRules" class="login-form"> |
| 4 | - <h3 class="title">临港巴士岗前检测系统</h3> | 4 | + <h3 class="title">岗前检查流程信息管理系统</h3> |
| 5 | <el-form-item prop="username"> | 5 | <el-form-item prop="username"> |
| 6 | <el-input v-model="loginForm.username" type="text" size="large" auto-complete="off" placeholder="账号"> | 6 | <el-input v-model="loginForm.username" type="text" size="large" auto-complete="off" placeholder="账号"> |
| 7 | <template #prefix><svg-icon icon-class="user" class="el-input__icon input-icon" /></template> | 7 | <template #prefix><svg-icon icon-class="user" class="el-input__icon input-icon" /></template> |
| @@ -85,6 +85,7 @@ function handleLogin() { | @@ -85,6 +85,7 @@ function handleLogin() { | ||
| 85 | } | 85 | } |
| 86 | // 调用action的登录方法 | 86 | // 调用action的登录方法 |
| 87 | userStore.login(loginForm.value).then(() => { | 87 | userStore.login(loginForm.value).then(() => { |
| 88 | + | ||
| 88 | router.push({ path: redirect.value || "/" }); | 89 | router.push({ path: redirect.value || "/" }); |
| 89 | }).catch(() => { | 90 | }).catch(() => { |
| 90 | loading.value = false; | 91 | loading.value = false; |
| @@ -118,8 +119,37 @@ function getCookie() { | @@ -118,8 +119,37 @@ function getCookie() { | ||
| 118 | }; | 119 | }; |
| 119 | } | 120 | } |
| 120 | 121 | ||
| 122 | +function getURLParams() { | ||
| 123 | + const searchParams = window.location.search.substring(1).split('&'); | ||
| 124 | + const params = { | ||
| 125 | + | ||
| 126 | + }; | ||
| 127 | + | ||
| 128 | + for (const param of searchParams) { | ||
| 129 | + const [key, value] = param.split('='); | ||
| 130 | + params[key] = value; | ||
| 131 | + } | ||
| 132 | + | ||
| 133 | + return params; | ||
| 134 | + } | ||
| 135 | + | ||
| 136 | +function singleSignOn(fun){ | ||
| 137 | + let params = getURLParams(); | ||
| 138 | + console.log(params); | ||
| 139 | + | ||
| 140 | + if(params.token && params.redirect){ | ||
| 141 | + | ||
| 142 | + userStore.refreshTokenFun(params.token); | ||
| 143 | + console.log(params.token); | ||
| 144 | + router.push("/index?token="+params.token); | ||
| 145 | + } | ||
| 146 | +} | ||
| 147 | + | ||
| 148 | +singleSignOn() | ||
| 121 | getCode(); | 149 | getCode(); |
| 122 | getCookie(); | 150 | getCookie(); |
| 151 | + | ||
| 152 | + | ||
| 123 | </script> | 153 | </script> |
| 124 | 154 | ||
| 125 | <style lang='scss' scoped> | 155 | <style lang='scss' scoped> |
src/views/refresh/page.vue
| @@ -19,8 +19,8 @@ | @@ -19,8 +19,8 @@ | ||
| 19 | import { refreshScheduling, refreshKeyInfoLocal, refreshDriver, refreshDriverImageByJob,refreshDriverImageByName } from "@/api/refresh/page"; | 19 | import { refreshScheduling, refreshKeyInfoLocal, refreshDriver, refreshDriverImageByJob,refreshDriverImageByName } from "@/api/refresh/page"; |
| 20 | const { proxy } = getCurrentInstance(); | 20 | const { proxy } = getCurrentInstance(); |
| 21 | 21 | ||
| 22 | - const imagePath=ref(); | ||
| 23 | - const device =ref("/data/lingang/images"); | 22 | + const imagePath=ref("/images"); |
| 23 | + const device =ref(); | ||
| 24 | 24 | ||
| 25 | function refreshSchedulingFun(){ | 25 | function refreshSchedulingFun(){ |
| 26 | refreshScheduling().then(res=>{ | 26 | refreshScheduling().then(res=>{ |
src/views/register.vue
| 1 | <template> | 1 | <template> |
| 2 | <div class="register"> | 2 | <div class="register"> |
| 3 | <el-form ref="registerRef" :model="registerForm" :rules="registerRules" class="register-form"> | 3 | <el-form ref="registerRef" :model="registerForm" :rules="registerRules" class="register-form"> |
| 4 | - <h3 class="title">临港巴士岗前检测系统</h3> | 4 | + <h3 class="title">岗前检查流程信息管理系统</h3> |
| 5 | <el-form-item prop="username"> | 5 | <el-form-item prop="username"> |
| 6 | <el-input v-model="registerForm.username" type="text" size="large" auto-complete="off" placeholder="账号"> | 6 | <el-input v-model="registerForm.username" type="text" size="large" auto-complete="off" placeholder="账号"> |
| 7 | <template #prefix><svg-icon icon-class="user" class="el-input__icon input-icon" /></template> | 7 | <template #prefix><svg-icon icon-class="user" class="el-input__icon input-icon" /></template> |
src/views/system/venueInfo/venueInfo.vue
| @@ -54,7 +54,7 @@ | @@ -54,7 +54,7 @@ | ||
| 54 | </el-table-column> | 54 | </el-table-column> |
| 55 | </el-table> | 55 | </el-table> |
| 56 | 56 | ||
| 57 | - <pagination v-show="totalOfVenueInfo > 0" :total="totalOfVenueInfo" v-model:pageOfVenueInfo="queryParamsOfVenueInfo.pageNum" v-model:limit="queryParamsOfVenueInfo.pageSize" | 57 | + <pagination v-show="totalOfVenueInfo > 0" :total="totalOfVenueInfo" v-model:page="queryParamsOfVenueInfo.pageNum" v-model:limit="queryParamsOfVenueInfo.pageSize" |
| 58 | @pagination="getListOfVenueInfo" /> | 58 | @pagination="getListOfVenueInfo" /> |
| 59 | 59 | ||
| 60 | <el-dialog :title="titleOfVenueInfo" v-model="openOfVenueInfo" width="500px" append-to-body> | 60 | <el-dialog :title="titleOfVenueInfo" v-model="openOfVenueInfo" width="500px" append-to-body> |