fengdong777 2 years ago
parent
commit
f2bac630c2
  1. 3
      demo-web-ui/.env.development
  2. 2
      demo-web-ui/.env.production
  3. 3
      demo-web-ui/src/api/User/login.js
  4. 2
      demo-web-ui/src/api/system/Role/role.js
  5. 2
      demo-web-ui/src/api/system/functional/functional.js
  6. 18
      demo-web-ui/src/api/system/menu/index.js
  7. 38
      demo-web-ui/src/api/system/sources/index.js
  8. 8
      demo-web-ui/src/api/user.js
  9. 11
      demo-web-ui/src/layout/components/Navbar.vue
  10. 78
      demo-web-ui/src/layout/components/Sidebar/index.vue
  11. 1
      demo-web-ui/src/layout/index.vue
  12. 199
      demo-web-ui/src/router/index.js
  13. 7
      demo-web-ui/src/styles/sidebar.scss
  14. 2
      demo-web-ui/src/utils/auth.js
  15. 8
      demo-web-ui/src/utils/request.js
  16. 655
      demo-web-ui/src/views/Home/Home.vue
  17. 501
      demo-web-ui/src/views/Regist/User.vue
  18. 277
      demo-web-ui/src/views/copyofprocess/liuchengchasongguanli.vue
  19. 185
      demo-web-ui/src/views/login/login.vue
  20. 82
      demo-web-ui/src/views/menuManage/menuManage.vue
  21. 2
      demo-web-ui/src/views/userManage/userManage.vue
  22. 1211
      demo-web-ui/src/views/workflow/definition/definition.vue
  23. 546
      demo-web-ui/src/views/workflow/form/form.vue

3
demo-web-ui/.env.development

@ -6,5 +6,6 @@ VUE_APP_BASE_API = '/api'
## 配置测试和本地开发时的 接口地址 ## 配置测试和本地开发时的 接口地址
##VUE_APP_URL = "http://26077a35f5.wicp.vip" ##VUE_APP_URL = "http://26077a35f5.wicp.vip"
VUE_APP_URL = "http://anrui.yyundong.com" # VUE_APP_URL = "http://anrui.yyundong.com"
##VUE_APP_URL = "http://1mn7264414.qicp.vip" ##VUE_APP_URL = "http://1mn7264414.qicp.vip"
VUE_APP_URL = "http://39.104.100.138:9112"

2
demo-web-ui/.env.production

@ -5,5 +5,5 @@ ENV = 'production'
VUE_APP_BASE_API = '/api' VUE_APP_BASE_API = '/api'
## 配置 正式接口地址 ## 配置 正式接口地址
VUE_APP_URL = "http://120.46.131.15:8111" VUE_APP_URL = "http://192.168.3.183:9112"

3
demo-web-ui/src/api/User/login.js

@ -9,7 +9,6 @@ class user {
data data
}) })
} }
logout(data) { // 退出 logout(data) { // 退出
return request({ return request({
url: '/portal/v1/sysuser/signOut', url: '/portal/v1/sysuser/signOut',
@ -26,7 +25,7 @@ class user {
}) })
} }
reGetPwd(data) { reGetPwd(data) { //修改密码
return request({ return request({
url: '/portal/v1/sysuser/reGetPwd', url: '/portal/v1/sysuser/reGetPwd',
method: 'post', method: 'post',

2
demo-web-ui/src/api/system/Role/role.js

@ -13,7 +13,7 @@ export function rolemenus(data) {
// 获取左侧菜单 // 获取左侧菜单
export function getrolemenus(data) { export function getrolemenus(data) {
return request({ return request({
url: '/portal/v1/sysmenu/sourcemenutree', url: 'v1/SysMenu/list',
method: 'POST', method: 'POST',
async: false, async: false,
data: data, data: data,

2
demo-web-ui/src/api/system/functional/functional.js

@ -31,7 +31,7 @@ export function savePost(data) {
// 模块名称 // 模块名称
export function sourceList(data) { export function sourceList(data) {
return request({ return request({
url: '/portal/v1/syssource/listAll', url: 'v1/SysMenu/list',
method: 'POST', method: 'POST',
data: data, data: data,
headers: { headers: {

18
demo-web-ui/src/api/system/menu/index.js

@ -7,7 +7,7 @@ let tokens = window.sessionStorage.getItem('token');
//获取菜单 分页列表 //获取菜单 分页列表
export function pageList(data) { export function pageList(data) {
return request({ return request({
url: '/portal/v1/sysmenu/listAllVoForSource', url: 'v1/SysMenu/list',
method: 'POST', method: 'POST',
data: data, data: data,
headers: { headers: {
@ -20,27 +20,27 @@ export function pageList(data) {
// 新增保存 菜单信息 // 新增保存 菜单信息
export function saveMenusInfo(data) { export function saveMenusInfo(data) {
return request({ return request({
url: '/portal/v1/sysmenu/save', url: 'v1/SysMenu/save',
method: 'POST', method: 'POST',
data: data, data: data,
headers: {'Content-Type': 'application/json'} headers: { 'Content-Type': 'application/json' }
}) })
} }
// 修改保存 菜单信息 // 修改保存 菜单信息
export function putMenusInfo(data) { export function putMenusInfo(data) {
return request({ return request({
url: '/portal/v1/sysmenu/update/' + data.sid, url: 'v1/SysMenu/alterSysMenu',
method: 'POST', method: 'POST',
data: data, data: data,
headers: {'Content-Type': 'application/json'} headers: { 'Content-Type': 'application/json' }
}) })
} }
//根据sid 删除单个 资源信息 //根据sid 删除单个 资源信息
export function delMenus(data) { export function delMenus(data) {
return request({ return request({
url: '/portal/v1/sysmenu/delBySids/' + data.sid, url: 'v1/SysMenu/deleteSysMenu/' + data.sid,
method: 'get', method: 'get',
data: qs.stringify(data), data: qs.stringify(data),
headers: { headers: {
@ -70,7 +70,7 @@ export function roleList(data) {
url: '/system/v1/menus/list', url: '/system/v1/menus/list',
method: 'post', method: 'post',
data: data, data: data,
headers: {'Content-Type': 'application/json'} headers: { 'Content-Type': 'application/json' }
}) })
} }
@ -80,7 +80,7 @@ export function menusPageList(data) {
url: '/system/v1/menus/pagelist', url: '/system/v1/menus/pagelist',
method: 'POST', method: 'POST',
data: data, data: data,
headers: {'Content-Type': 'application/json'} headers: { 'Content-Type': 'application/json' }
}) })
} }
@ -90,7 +90,7 @@ export function menusTreelist(data) {
url: '/system/v1/menus/treelist', url: '/system/v1/menus/treelist',
method: 'POST', method: 'POST',
data: data, data: data,
headers: {'Content-Type': 'application/json'} headers: { 'Content-Type': 'application/json' }
}) })
} }

38
demo-web-ui/src/api/system/sources/index.js

@ -5,7 +5,7 @@ let tokens = window.sessionStorage.getItem('token');
//获取菜单 分页列表 //获取菜单 分页列表
export function pageList(data) { export function pageList(data) {
return request({ return request({
url: '/portal/v1/syssource/listPage', url: 'v1/sysinfo/selectInfoList',
method: 'POST', method: 'POST',
data: data, data: data,
headers: {'Content-Type': 'application/json', headers: {'Content-Type': 'application/json',
@ -16,7 +16,7 @@ export function pageList(data) {
//保存 资源信息 //保存 资源信息
export function saveSourcesInfo(data) { export function saveSourcesInfo(data) {
return request({ return request({
url: '/portal/v1/syssource/save', url: 'v1/sysinfo/saveInfo',
method: 'POST', method: 'POST',
data: data, data: data,
headers: {'Content-Type': 'application/json', headers: {'Content-Type': 'application/json',
@ -27,7 +27,7 @@ export function saveSourcesInfo(data) {
// 修改 保存 资源信息 // 修改 保存 资源信息
export function putSourcesInfo(data) { export function putSourcesInfo(data) {
return request({ return request({
url: '/portal/v1/syssource/update/' + data.sid, url: 'v1/sysinfo/alterInfo',
method: 'POST', method: 'POST',
data: data, data: data,
headers: {'Content-Type': 'application/json', headers: {'Content-Type': 'application/json',
@ -35,10 +35,40 @@ export function putSourcesInfo(data) {
} }
}) })
} }
export function addStudentScore(data) {
return request({
url: 'v1/sysstudentscore/addStudentScore',
method: 'POST',
data: data,
headers: {'Content-Type': 'application/json',
'token':tokens
}
})
}
export function saveSysInfoShip(data) {
return request({
url: 'v1/sysinfoship/saveSysInfoShip',
method: 'POST',
data: data,
headers: {'Content-Type': 'application/json',
'token':tokens
}
})
}
export function selectTeacherDownStudent(data) {
return request({
url: 'v1/sysinfoship/selectTeacherDownStudent/' + data.infoId,
method: 'get',
data: qs.stringify(data),
headers: {'Content-Type': 'application/json',
'token':tokens
}
})
}
//根据sid 删除单个 资源信息 //根据sid 删除单个 资源信息
export function delSources(data) { export function delSources(data) {
return request({ return request({
url: '/portal/v1/syssource/delBySids/' + data.sid, url: 'v1/sysinfo/deleteInfo/' + data.sid,
method: 'get', method: 'get',
data: qs.stringify(data), data: qs.stringify(data),
headers: {'Content-Type': 'application/json', headers: {'Content-Type': 'application/json',

8
demo-web-ui/src/api/user.js

@ -3,19 +3,17 @@ import qs from 'qs'
//登录 //登录
export function login(data) { export function login(data) {
return request({ return request({
url: '/portal/v1/sysuser/login', url: '/v1/sysuser/login',
method: 'post', method: 'post',
data: data, data: data,
headers: {'Content-Type': 'application/json'}
}) })
} }
// 用户注册 // 用户注册
export function registUser(data) { export function registUser(data) {
return request({ return request({
url: '/system/user/save', url: 'v1/sysuser/register',
method: 'post', method: 'post',
data, data,
headers:{'Content-Type':'application/x-www-form-urlencoded;'}
}) })
} }
// 获取手机验证码 // 获取手机验证码
@ -46,7 +44,7 @@ export function getInfo(token) {
// 根据token值获取登录后的用户信息 // 根据token值获取登录后的用户信息
export function loginDetails(data) { export function loginDetails(data) {
return request({ return request({
url: '/portal/v1/sysuser/loginDetails', url: '/v1/sysuser/loginDetails',
method: 'post', method: 'post',
data: data, data: data,
headers: { headers: {

11
demo-web-ui/src/layout/components/Navbar.vue

@ -23,6 +23,7 @@ export default {
name:'', name:'',
year:'', year:'',
pNameAndDepartmentNameAndPostName:'', pNameAndDepartmentNameAndPostName:'',
userSid:'',
} }
}, },
mounted(){ mounted(){
@ -30,15 +31,17 @@ export default {
this.departmentName = window.sessionStorage.getItem('departmentName') this.departmentName = window.sessionStorage.getItem('departmentName')
this.name = window.sessionStorage.getItem('name') this.name = window.sessionStorage.getItem('name')
this.pNameAndDepartmentNameAndPostName = window.sessionStorage.getItem('pNameAndDepartmentNameAndPostName') this.pNameAndDepartmentNameAndPostName = window.sessionStorage.getItem('pNameAndDepartmentNameAndPostName')
this.name = window.sessionStorage.getItem('name') this.userSid = window.sessionStorage.getItem('userSid')
var nowDate = new Date() var nowDate = new Date()
this.year = nowDate.getFullYear() this.year = nowDate.getFullYear()
console.log(this.userSid);
}, },
methods: { methods: {
logout() { logout() {
// this.$router.push({path: '/home'}) window.localStorage.removeItem("token");
window.opener = null this.$router.push("/login");
window.open('about:blank', '_top').close() // window.opener = null
// window.open('about:blank', '_top').close()
} }
} }
} }

78
demo-web-ui/src/layout/components/Sidebar/index.vue

@ -12,12 +12,19 @@
mode="vertical" mode="vertical"
router router
> >
<el-submenu index="/workflow">
<template slot="title">
<span>用户管理</span>
</template>
<el-menu-item index="/workflow/definition">学生信息</el-menu-item>
<el-menu-item index="/workflow/form">教师信息</el-menu-item>
</el-submenu>
<template v-for="(item,index) in routes"> <template v-for="(item,index) in routes">
<!--<template v-if="item.children && item.children.length != 0"> <!--<template v-if="item.children && item.children.length != 0">
</template> </template>
<template v-else>--> <template v-else>-->
<el-menu-item :index="item.path" :key="index"> <el-menu-item :index="item.pageUrl" :key="index">
<!-- <i :class="item.icon"></i> --> <!-- <i :class="item.icon"></i> -->
<span slot="title">{{ item.name }}</span> <span slot="title">{{ item.name }}</span>
</el-menu-item> </el-menu-item>
@ -28,13 +35,6 @@
:item="route" :item="route"
:base-path="route.path" :base-path="route.path"
/>--> />-->
<el-submenu index="/workflow">
<template slot="title">
<span>工作流</span>
</template>
<el-menu-item index="/workflow/definition">流程定义</el-menu-item>
<el-menu-item index="/workflow/form">表单配置</el-menu-item>
</el-submenu>
</el-menu> </el-menu>
</el-scrollbar> </el-scrollbar>
@ -97,44 +97,34 @@
getrolemenus(params).then(res => { getrolemenus(params).then(res => {
console.log('aaa') console.log('aaa')
console.log(res) console.log(res)
let userRoles = this.resRouter(res.data) this.routes = res.data
// userRoles.push( // let userRoles = this.resRouter(res.data)
// {
// path: '/workflow', component: Layout, redirect: '/workflow/index', name: '', // return userRoles
// children: [{
// name: "WorkflowIndex",
// path: "/workflow/index",
// component: "",
// alwaysShow: true,
// meta: {icon: "", title: ""}
// }]
// })
// userRoles.push({path: '*', redirect: '/404', hidden: true})
return userRoles
}) })
}, },
resRouter(menus) { // // resRouter(menus) { //
for (var i = 0; i < menus.length; i++) { // for (var i = 0; i < menus.length; i++) {
if (menus[i].children && menus[i].children.length != 0) { // if (menus[i].children && menus[i].children.length != 0) {
this.resRouter(menus[i].children) // this.resRouter(menus[i].children)
} // }
if (menus[i].children.length == 0) { // if (menus[i].children.length == 0) {
delete menus[i].children // delete menus[i].children
delete menus[i].redirect // delete menus[i].redirect
} // }
if (menus[i].component == '') { // if (menus[i].component == '') {
menus[i] = { // menus[i] = {
path: menus[i].path, // path: menus[i].path,
component: Layout, // component: Layout,
redirect: menus[i].path, // redirect: menus[i].path,
children: [menus[i]], // children: [menus[i]],
name: menus[i].meta.title, // name: menus[i].meta.title,
} // }
} // }
} // }
this.routes = menus // this.routes = menus
return menus // return menus
} // }
} }
} }
</script> </script>

1
demo-web-ui/src/layout/index.vue

@ -6,7 +6,6 @@
<div v-if="device==='mobile'&&sidebar.opened" class="drawer-bg" @click="handleClickOutside"/> <div v-if="device==='mobile'&&sidebar.opened" class="drawer-bg" @click="handleClickOutside"/>
<div class="main-container"> <div class="main-container">
<div class="home-box"> <div class="home-box">
<a href="javascript:window.opener=null;window.open('','_self');window.close();" class="text-center">平台首页</a>
<a href="javascript:void(0);" class="text-center">系统管理</a> <a href="javascript:void(0);" class="text-center">系统管理</a>
</div> </div>
<sidebar class="sidebar-container"/> <!--菜单--> <sidebar class="sidebar-container"/> <!--菜单-->

199
demo-web-ui/src/router/index.js

@ -22,30 +22,155 @@ export const constantRoutes = [
redirect: 'login' redirect: 'login'
}, },
{ {
path: '/login', path: '/reg',
component: () => import('@/views/login/login.vue') component: () => import("@/views/regist/User.vue")
}, },
{ {
path: '/home', path: '/login',
component: () => import('@/views/Home/Home.vue'), component: () => import('@/views/login/login.vue')
name: 'home'
}, },
{ {
path: '/index', path: '/index',
component: Layout, component: Layout,
redirect: '/index', redirect: '/index',
children: [{ children: [
path: '/index', {
component: () => path: '/index',
import('@/views/index.vue'), component: () =>
name: 'index', import('@/views/index.vue'),
meta: { meta: {
title: '主页', title: '主页',
noCache: true, noCache: true,
affix: true affix: true
}
},
{
path: '/userManage',
component: () =>
import('@/views/userManage/userManage.vue'),
meta: {
title: '用户管理'
}
},
{
path: '/region',
component: () =>
import('@/views/region/region.vue'),
meta: {
title: '自主学习计划管理'
}
},
{
path: '/RoleAdminister',
component: () => import('@/views/RoleAdminister/RoleAdminister.vue'),
meta: {
title: '角色管理'
}
},
{
path: '/postManage',
component: () =>
import('@/views/postManage/postManage.vue'),
meta: {
title: '自主学习计划进度管理'
}
},
{
path: '/guideManage',
component: () =>
import('@/views/guideManage/guideManage.vue'),
meta: {
title: '指导任务管理'
}
},
{
path: '/functional',
component: () =>
import('@/views/functional/functional.vue'),
meta: {
title: '成绩设置'
}
},
{
path: '/sourceManage',
component: () =>
import('@/views/sourceManage/sourceManage.vue'),
meta: {
title: '自学资源管理'
}
},
{
path: '/menuManage',
component: () => import('@/views/menuManage/menuManage.vue'),
meta: {
title: '菜单管理'
}
},
{
path: '/mobileterminal',
component: () => import('@/views/mobileterminal/mobileterminal.vue'),
meta: {
title: '移动端管理'
}
},
{
path: '/personalization',
component: () => import('@/views/personalization/personalization.vue'),
meta: {
title: '公告管理'
}
},
{
path: '/copyofprocess',
component: () => import('@/views/copyofprocess/liuchengchasongguanli'),
meta: {
title: '论坛管理'
}
},
{
path: '/dictManage',
component: () => import('@/views/dictManage/dictManage.vue'),
meta: {
title: '数据字典管理'
}
},
{
path: '/logManage',
component: () =>
import('@/views/logManage/logManage.vue'),
meta: {
title: '统计信息管理'
}
},
{
path: '/PwdModify',
component: () => import('@/views/PwdModify/PwdModify.vue'),
meta: {
title: '账户信息管理'
}
},
{
path: '/organizationManage',
component: () =>
import('@/views/organizationManage/organizationManage.vue'),
meta: {
title: '论坛交流'
}
},
{
path: '/datamapping',
component: () => import('@/views/datamapping/shujuyingshe.vue'),
meta: { title: '自主学习计划制定指导', noCache: true }
},
{
path: '/organizationManage',
component: () =>
import('@/views/organizationManage/organizationManage.vue'),
meta: {
title: '自主学习计划实施指导'
}
} }
}] ]
}, { }, {
path: '/region', path: '/region',
component: Layout, component: Layout,
@ -78,9 +203,7 @@ export const constantRoutes = [
redirect: '/RoleAdminister', redirect: '/RoleAdminister',
children: [{ children: [{
path: '/RoleAdminister', path: '/RoleAdminister',
component: () => component: () => import('@/views/RoleAdminister/RoleAdminister.vue'), name: 'RoleAdminister',
import('@/views/RoleAdminister/RoleAdminister.vue'),
name: 'RoleAdminister',
meta: { meta: {
title: '角色管理' title: '角色管理'
} }
@ -121,7 +244,7 @@ export const constantRoutes = [
import('@/views/sourceManage/sourceManage.vue'), import('@/views/sourceManage/sourceManage.vue'),
name: 'sourceManage', name: 'sourceManage',
meta: { meta: {
title: '资源管理' title: '自学资源管理'
} }
}] }]
}, { }, {
@ -234,7 +357,7 @@ export const constantRoutes = [
component: Layout, component: Layout,
redirect: '/workflow', redirect: '/workflow',
meta: { meta: {
title: '工作流' title: '用户管理'
}, },
children: [ children: [
{ {
@ -243,7 +366,7 @@ export const constantRoutes = [
import('@/views/workflow/definition/definition.vue'), import('@/views/workflow/definition/definition.vue'),
name: 'definition', name: 'definition',
meta: { meta: {
title: '流程定义' title: '学生信息'
} }
}, },
{ {
@ -252,7 +375,7 @@ export const constantRoutes = [
import('@/views/workflow/form/form.vue'), import('@/views/workflow/form/form.vue'),
name: 'form', name: 'form',
meta: { meta: {
title: '表单配置' title: '教师信息'
} }
} }
] ]
@ -299,20 +422,20 @@ export const constantRoutes = [
component: () => import('@/views/flow/havereadList.vue') component: () => import('@/views/flow/havereadList.vue')
}, },
// { // {
// path: '/', // path: '/',
// component: Layout, // component: Layout,
// redirect: 'dictCommon', // redirect: 'dictCommon',
// children: [{ // children: [{
// path: 'dictCommon', // path: 'dictCommon',
// component: () => // component: () =>
// import('@/views/system-admin/dictCommon.vue'), // import('@/views/system-admin/dictCommon.vue'),
// name: 'dictCommon', // name: 'dictCommon',
// meta: { // meta: {
// title: '数据字典值' // title: '数据字典值'
// } // }
// }] // }]
// }, // },
{ {
path: '/404', path: '/404',
component: () => component: () =>
@ -337,7 +460,7 @@ export const constantRoutes = [
const createRouter = () => new Router({ const createRouter = () => new Router({
// mode: 'history', // require service support // mode: 'history', // require service support
scrollBehavior: () => ({y: 0}), scrollBehavior: () => ({ y: 0 }),
routes: constantRoutes routes: constantRoutes
}) })

7
demo-web-ui/src/styles/sidebar.scss

@ -12,6 +12,7 @@
.TagsView{ .TagsView{
height: 40px; height: 40px;
} }
.home-box{ .home-box{
position: fixed; position: fixed;
top: 60px; top: 60px;
@ -25,9 +26,9 @@
display: inline-block; display: inline-block;
line-height: 40px; line-height: 40px;
box-sizing: border-box; box-sizing: border-box;
width: 50%; width: 100%;
text-align: center; text-align: center;
font-size: 16px; font-size: 18px;
font-weight: 500; font-weight: 500;
color: #FFFFFF; color: #FFFFFF;
} }
@ -122,7 +123,7 @@
} }
} }
& .el-menu-item.is-active { & .el-menu-item.is-active {
background-color: $subMenuHover !important; // background-color: $subMenuHover !important;
} }
} }

2
demo-web-ui/src/utils/auth.js

@ -8,7 +8,7 @@ export function getToken() {
} }
export function setToken(token) { export function setToken(token) {
return Cookies.set(TokenKey, token,{ expires: 7, path: '/' }) return Cookies.set(TokenKey, token, { expires: 7, path: '/' })
} }
export function removeToken() { export function removeToken() {

8
demo-web-ui/src/utils/request.js

@ -4,11 +4,11 @@ import store from '@/store'
import { getToken, getStorage } from '@/utils/auth' import { getToken, getStorage } from '@/utils/auth'
// create an axios instance // create an axios instance
console.log(process.env.VUE_APP_URL) console.log('dadadadad', process.env.VUE_APP_URL)
const service = axios.create({ const service = axios.create({
baseURL: process.env.VUE_APP_BASE_API, // url = base url + request url baseURL: process.env.VUE_APP_URL, // url = base url + request url
// timeout: 5000 // request timeout timeout: 5000, // request timeout
headers:{'Content-Type':'application/x-www-form-urlencoded;'} // headers: { 'Content-Type': 'application/json' }
}) })
// request interceptor // request interceptor

655
demo-web-ui/src/views/Home/Home.vue

@ -1,655 +0,0 @@
<template>
<div style="height: 100%;">
<div class="header">
<p class="title"><img src="../../assets/loginImg/logo.png"/>安瑞集团信息化平台</p>
<div class="head_info" style="display: flex;flex-direction: row;justify-content:space-between;align-items: center">
<div>欢迎您</div>
<div>
<el-select v-model="defaultOrgPathName" class="selectStyle" size="small" placeholder="" @change="changeOrg" filterable>
<el-option v-for="item in orgDept_list" :key="item.orgPath" :label="item.orgName" :value="item.orgName"/>
</el-select>
</div>
<div style="padding-right: 5px">
<el-tooltip placement="top">
<div slot="content">{{ roleName }}</div>
<el-button style="color: #FFFFFF;font-size: 17px" type="text">{{ postName }}</el-button>
</el-tooltip>
</div>
<div>{{ name }}</div>
<div @click="logout()" style="display: flex;flex-direction: row;justify-content:center;align-items: center;padding-left: 20px;padding-right: 10px"><img src="@/assets/images/dy.png"/></div>
</div>
</div>
<div class="container1">
<el-row :gutter="20">
<el-col :span="14">
<ul class="grid-content bg-ltop">
<li @click="todowork">
<div style="position: relative">
<el-badge v-if="shuliang.workCount !== 0" :value="shuliang.workCount" size="mini" class="mark"/>
<img src="@/assets/home/ltIcon1.png">
</div>
<p>待办工作</p>
</li>
<li @click="donework">
<img src="@/assets/home/ltIcon2.png">
<p>已办工作</p>
</li>
<li @click="tobereadwork">
<div style="position: relative">
<el-badge v-if="shuliang.toBeReadCount !== 0" :value="shuliang.toBeReadCount" size="mini" class="mark"/>
<img src="@/assets/home/ltIcon4.png">
</div>
<p>待阅工作</p>
</li>
<li @click="havereadwork">
<img src="@/assets/home/ltIcon3.png">
<p>已阅工作</p>
</li>
</ul>
</el-col>
<el-col :span="10">
<div class="grid-content bg-rtop">
<img class="anrui" src="@/assets/home/anrui.png"/>
<p class="rt_title">通知公告</p>
<ul>
<li>
<img class="rtImg" src="../../assets/home/notice.png"/>
<span class="notice">关于召开2021年公司全体员工大会的通知工大会的通知工大会的通知...</span>
<span class="anrui_time">2021-09-01</span>
</li>
<li>
<img src="../../assets/home/notice.png"/>
<span class="notice">关于召开2021年公司全体员工大会的通知工大会的通知工大会的通知</span>
<span class="anrui_time">2021-09-01</span>
</li>
<li>
<img src="../../assets/home/notice.png"/>
<span class="notice">关于召开2021年公司全体员工大会的通知</span>
<span class="anrui_time">2021-09-01</span>
</li>
<li>
<img src="../../assets/home/notice.png"/>
<span class="notice">关于召开2021年公司全体员工大会的通知</span>
<span class="anrui_time">2021-09-01</span>
</li>
<li>
<img src="../../assets/home/notice.png"/>
<span class="notice">关于召开2021年公司全体员工大会的通知</span>
<span class="anrui_time">2021-09-01</span>
</li>
</ul>
</div>
</el-col>
</el-row>
<ul class="bg-bottom">
<li @click="toNav(index)" v-for="(item,index) in menus" :key='index'>
<img :src="item.imgUrl">
<p>{{ item.title }}</p>
</li>
</ul>
<p class="copy">Copyright © {{ year }} 安瑞集团 All Rights Reserved</p>
</div>
<!--<ul class="nav-box">-->
<!--<li style="background-color: #e87861;" @click="toNavbar('http://39.104.100.138:8081/')">
<img src="@/assets/images/jcxx.png">
<p>基础信息</p>
</li>-->
<!--<template v-for="(item, i) in menus">
<li v-if="item.sourceName == '系统管理'" :key="i" @click="toNav('index','系统管理')" :style="{backgroundColor: item.iconBgColor}">
<img :src="item.iconUrl">
<p>{{ item.sourceName }}</p>
</li>
<li v-else :key="i" @click="toNavbar(item.pageUrl)" :style="{backgroundColor: item.iconBgColor}">
<img :src="item.iconUrl">
<p>{{ item.sourceName }}</p>
</li>
</template>-->
<!-- <li style="background-color: #e87861;" @click="toNavbar('http://39.104.100.138:8081/')">
<img src="@/assets/images/jcxx.png">
<p>基础信息</p>
</li>
<li style="background-color: #e87861;" @click="toNavbar('http://localhost:9529/')">
<img src="@/assets/images/jcxx.png">
<p>基础信息</p>
</li> -->
<!-- <li @click="xxzx">
<img src="@/assets/images/xxzx.png">
<p>消息中心</p>
</li>
<li @click="xxzx">
<img src="@/assets/images/xxzx.png">
<p>消息中心</p>
</li>
<li @click="xxzx">
<img src="@/assets/images/xxzx.png">
<p>消息中心</p>
</li>
<li @click="xxzx">
<img src="@/assets/images/xxzx.png">
<p>消息中心</p>
</li>
<li style="background-color: #ffb751;" @click="xxzx">
<img src="@/assets/images/cxjl.png">
<p>诚信计量</p>
</li>
<li style="background-color: #6fb3e0;" @click="xxzx">
<img src="@/assets/images/zwsm.png">
<p>C标志自我声明</p>
</li>
<li style="background-color: #87b880;" @click="xxzx">
<img src="@/assets/images/sjcc.png">
<p>双随机抽查</p>
</li>
<li style="background-color: #448fb9;" @click="xxzx">
<img src="@/assets/images/jlsc.png">
<p>能量计量审查</p>
</li>
<li style="background-color: #24ca95;" @click="xxzx">
<img src="@/assets/images/qjsh.png">
<p>强检计量器具审核</p>
</li>
<li style="background-color: #b4429d;" @click="xxzx">
<img src="@/assets/images/jsxd.png">
<p>技术规范制修订</p>
</li>
<li style="background-color: #b3b442;" @click="toNavbar('http://39.104.100.138:8083/')">
<img src="@/assets/images/xtbg.png">
<p>协同办公</p>
</li>
<li style="background-color: #eab054;" @click="xxzx">
<img src="@/assets/images/tjfx.png">
<p>统计分析</p>
</li>
<li style="background-color: #e87861;" @click="toNavbar('http://39.104.100.138:8081/')">
<img src="@/assets/images/jcxx.png">
<p>基础信息</p>
</li>
<li style="background-color: #e87861;" @click="toNavbar('http://localhost:9529/')">
<img src="@/assets/images/jcxx.png">
<p>基础信息</p>
</li>
<li style="background-color: #617be8;" @click="toNav('index','系统管理')">
<img src="@/assets/images/xtgl.png">
<p>系统管理</p>
</li> -->
<!--</ul>-->
<el-dialog center :visible.sync="dialogVisible" width="40%" :show-close="false" :close-on-click-modal="false">
<el-form :model="form" class="formadd">
<el-row style="border-top: 1px solid #e0e3eb">
<el-col :span="4" class="tleftb">
<span>原密码</span>
</el-col>
<el-col :span="20">
<el-form-item><el-input v-model="form.original" type="password" show-password/></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="4" class="tleftb">
<span>新密码</span>
</el-col>
<el-col :span="20">
<el-form-item><el-input v-model="form.password" type="password" show-password/></el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="4" class="tleftb">
<span>确认密码</span>
</el-col>
<el-col :span="20">
<el-form-item><el-input v-model="form.confirmPassword" type="password" show-password/></el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" size="small" @click="handleConirm"> </el-button>
<el-button size="small" @click="handleQuXiao"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import { getToken, removeToken, getStorage, removeStorage } from '@/utils/auth'
import {sourcesofrole} from '@/api/system/Role/role.js'
import User from '@/api/User/login.js'
import { getTodoNum } from '@/api/system/home/home'
import { getToBeReadNum } from '@/api/flow/read'
export default {
data() {
return {
menus: [{
imgUrl: require('@/assets/home/bIcon1.png'),
title: '业务管理'
}, {
imgUrl: require('@/assets/home/scm.png'),
title: '供应链管理'
}, {
imgUrl: require('@/assets/home/bIcon2.png'),
title: '风控管理'
}, {
imgUrl: require('@/assets/home/bIcon3.png'),
title: '审计管理'
}, {
imgUrl: require('@/assets/home/bIcon4.png'),
title: '财务管理'
}, {
imgUrl: require('@/assets/home/bIcon5.png'),
title: '行政管理'
}, {
imgUrl: require('@/assets/home/bIcon6.png'),
title: '报表中心'
}, {
imgUrl: require('@/assets/home/bIcon7.png'),
title: '基础信息'
}, {
imgUrl: require('@/assets/home/notice.png'),
title: '消息中心'
}, {
imgUrl: require('@/assets/home/bIcon8.png'),
title: '系统管理'
}],
userInfo: {},
orgDept_list: [],
shuliang: {
workCount: '',
toBeReadCount: ''
},
dialogVisible: false,
form: {
original: '',
password: '',
confirmPassword: '',
userSid: ''
},
timer: '',
Orgname: '',
departmentName: '',
name: '',
pNameAndDepartmentNameAndPostName: '',
defaultOrgPathName: '',
defaultOrgPath: '',
roleName: '',
postName: '',
year: ''
}
},
beforeCreate() {
},
created() {
this.getsPasswordByUserSid()
},
mounted() {
this.Orgname = window.sessionStorage.getItem('Orgname')
this.departmentName = window.sessionStorage.getItem('departmentName')
this.pNameAndDepartmentNameAndPostName = window.sessionStorage.getItem('pNameAndDepartmentNameAndPostName')
this.defaultOrgPathName = window.sessionStorage.getItem('defaultOrgPathName')
this.defaultOrgPath = window.sessionStorage.getItem('defaultOrgPath')
this.roleName = window.sessionStorage.getItem('roleName')
this.postName = window.sessionStorage.getItem('postName')
this.name = window.sessionStorage.getItem('name')
var nowDate = new Date()
this.year = nowDate.getFullYear()
// sourcesofrole({ psid: '0', roleSid: this.$store.getters.userInfo.roleSid }).then(res => {
// this.menus = res.data
// })
},
methods: {
getsPasswordByUserSid() {
User.selectPasswordByUserSid(window.sessionStorage.getItem('userSid')).then((resp) => {
if (resp.success && resp.data) {
this.dialogVisible = true
} else {
this.getNum()
this.timer = setInterval(this.getNum, 20000)
}
})
User.getOrgListByUserSid({ userSid: window.sessionStorage.getItem('userSid') }).then((res) => {
if (res.success) {
this.orgDept_list = res.data
}
})
},
getNum() {
getTodoNum(window.sessionStorage.getItem('userSid')).then((resp) => {
if (resp.success) {
this.shuliang.workCount = resp.data
}
})
getToBeReadNum(window.sessionStorage.getItem('userSid')).then((resp) => {
if (resp.success) {
this.shuliang.toBeReadCount = resp.data
}
})
},
handleConirm() {
if (this.form.original === '') {
this.$message({ showClose: true, type: 'error', message: '原密码不能为空' })
return
}
if (this.form.password !== this.form.confirmPassword) {
this.$message({ showClose: true, type: 'error', message: '两次输入密码不一致' })
return
}
this.form.userSid = window.sessionStorage.getItem('userSid')
User.updatePassword(this.form).then((resp) => {
if (resp.success) {
this.$alert('密码修改成功!请重新登录点击确定后退出。', '修改成功', {
confirmButtonText: '确定',
callback: action => {
this.handleQuXiao()
}
})
}
})
},
handleQuXiao() {
this.dialogVisible = false
this.form = {
original: '',
password: '',
confirmPassword: ''
}
User.logout({ token: getStorage() }).then((res) => {
if (res.success) {
removeStorage()
this.$store.commit('user/SET_UESRINFO', '')
this.$router.push({ path: '/login' })
}
})
},
todowork() {
window.open('/#/todo' + '?token=' + getStorage(), '_blank')
// this.$router.push({ path: '/todo' + '?token=' + getStorage() })
// window.open('http://127.0.0.1/message'+'?token='+getStorage(),'_blank')
},
donework() {
window.open('/#/done' + '?token=' + getStorage(), '_blank')
// this.$router.push({ path: '/done' + '?token=' + getStorage() })
// window.open('http://127.0.0.1/message'+'?token='+getStorage(),'_blank')
},
tobereadwork() {
window.open('/#/toberead' + '?token=' + getStorage(), '_blank')
},
havereadwork() {
window.open('/#/haveread' + '?token=' + getStorage(), '_blank')
},
logout() {
this.$confirm('确定要退出吗, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
User.logout({token: getStorage()}).then(res => {
removeStorage()
this.$store.commit('user/SET_UESRINFO', '')
this.$router.push({ path: '/login' })
})
})
},
xxzx() {
this.$alert('项目正在开发中', '提示', {
dangerouslyUseHTMLString: true
})
},
toNavbar(name) {
let myPopup = window.open(name + '?token=' + getStorage(), '_blank')
},
changeOrg(value) {
const choose = this.orgDept_list.filter((item) => item.orgName === value)
this.defaultOrgPathName = choose[0].orgName
this.defaultOrgPath = choose[0].orgPath
},
toNav(index, name, titleName) {
const organizationData = {
defaultOrgPathName: this.defaultOrgPathName,
defaultOrgPath: this.defaultOrgPath
}
if (index == '9') {
// this.$router.push({path: '/index'})
let myPopup = window.open('/#/index', '_blank')
} else if (index == '7') {
// let myPopup = window.open('http://127.0.0.1:9531/base/#/' + '?token=' + getStorage() + '&organizationData=' + encodeURI((JSON.stringify(organizationData))), '_blank')
let myPopup = window.open('http://anrui.yyundong.com/base/#/' + '?token=' + getStorage() + '&organizationData=' + encodeURI((JSON.stringify(organizationData))), '_blank')
// let myPopup = window.open('http://120.46.172.184/base/#/' + '?token=' + getStorage() + '&organizationData=' + encodeURI((JSON.stringify(organizationData))), '_blank')
} else if (index == '8') {
// let myPopup = window.open('http://127.0.0.1:9531/message/#/' + '?token=' + getStorage() + '&organizationData=' + encodeURI((JSON.stringify(organizationData))), '_blank')
let myPopup = window.open('http://anrui.yyundong.com/message/#/' + '?token=' + getStorage() + '&organizationData=' + encodeURI((JSON.stringify(organizationData))), '_blank')
// let myPopup = window.open('http://120.46.172.184/message/#/' + '?token=' + getStorage() + '&organizationData=' + encodeURI((JSON.stringify(organizationData))), '_blank')
} else if (index == '1') {
// let myPopup = window.open('http://127.0.0.1:9531/scm/#/' + '?token=' + getStorage() + '&organizationData=' + encodeURI((JSON.stringify(organizationData))), '_blank')
let myPopup = window.open('http://anrui.yyundong.com/scm/#/' + '?token=' + getStorage() + '&organizationData=' + encodeURI((JSON.stringify(organizationData))), '_blank')
// let myPopup = window.open('http://120.46.172.184/scm/#/' + '?token=' + getStorage() + '&organizationData=' + encodeURI((JSON.stringify(organizationData))), '_blank')
} else if (index == '4') {
// let myPopup = window.open('http://127.0.0.1:9531/fin/#/' + '?token=' + getStorage() + '&organizationData=' + encodeURI((JSON.stringify(organizationData))), '_blank')
let myPopup = window.open('http://anrui.yyundong.com/fin/#/' + '?token=' + getStorage() + '&organizationData=' + encodeURI((JSON.stringify(organizationData))), '_blank')
// let myPopup = window.open('http://120.46.172.184/fin/#/' + '?token=' + getStorage() + '&organizationData=' + encodeURI((JSON.stringify(organizationData))), '_blank')
} else if (index == '5') {
// let myPopup = window.open('http://127.0.0.1:9531/manage/#/' + '?token=' + getStorage() + '&organizationData=' + encodeURI((JSON.stringify(organizationData))), '_blank')
let myPopup = window.open('http://anrui.yyundong.com/manage/#/' + '?token=' + getStorage() + '&organizationData=' + encodeURI((JSON.stringify(organizationData))), '_blank')
// let myPopup = window.open('http://120.46.172.184/manage/#/' + '?token=' + getStorage() + '&organizationData=' + encodeURI((JSON.stringify(organizationData))), '_blank')
} else if (index == '0') {
// let myPopup = window.open('http://127.0.0.1:9531/buscenter/#/' + '?token=' + getStorage() + '&organizationData=' + encodeURI((JSON.stringify(organizationData))), '_blank')
let myPopup = window.open('http://anrui.yyundong.com/buscenter/#/' + '?token=' + getStorage() + '&organizationData=' + encodeURI((JSON.stringify(organizationData))), '_blank')
// let myPopup = window.open('http://120.46.172.184/buscenter/#/' + '?token=' + getStorage() + '&organizationData=' + encodeURI((JSON.stringify(organizationData))), '_blank')
}
// const page = this.$router.resolve({name: name})
// window.open(page.href,'_blank')
}
},
beforeDestroy() {
clearInterval(this.timer)
}
}
</script>
<style scoped="scoped">
li:hover,
p:hover {
cursor: pointer
}
</style>
<style lang="scss" scoped>
p {
margin: 0;
padding: 0;
}
.header {
background-color: #0294d7;
color: #fff;
overflow: hidden;
height: 60px;
line-height: 60px;
.title {
img {
width: 70px;
vertical-align: middle;
font-family: Adobe Heiti Std;
}
float: left;
font-size: 34px;
margin-left: 35px;
height: 60px;
line-height: 60px;
}
.head_info {
float: right;
margin-top: 0;
font-size: 17px;
}
p {
float: left;
}
}
//.head_info img {
// width: 25px;
// margin-top: 20px;
// margin-left: 30px;
// margin-right: 10px;
// float: left;
//}
//
//.head_info .dy {
// margin-left: 10px;
// margin-right: 20px;
//}
.container1 {
background: #E9F1F7;
padding: 20px;
width: 100%;
height: calc(100% - 60px);
margin: 0;
.bg-ltop {
margin: 0;
padding: 0 20px;
background-image: url(../../assets/home/ltBg.png);
border-radius: 10px;
overflow: hidden;
height: 190px;
li {
float: left;
list-style: none;
width: 25%;
text-align: center;
img {
width: 70px;
margin: 45px auto 10px auto;
}
}
}
.bg-rtop {
background-image: url(../../assets/home/rtBg.png);
border-radius: 10px;
height: 190px;
overflow: hidden;
position: relative;
.anrui {
width: 100%;
height: 40px;
}
.rt_title {
position: absolute;
top: 10px;
left: 15px;
font-size: 18px;
font-family: SourceHanSerifCN;
font-weight: 600;
color: #191919;
}
ul {
margin: 0px auto;
padding: 0;
height: 148px;
width: 100%;
li {
font-size: 14px;
height: 33px;
line-height: 28px;
list-style: none;
text-decoration: underline;
border-bottom: 1px solid #666;
width: calc(100% - 70px);
margin-left: 40px;
position: relative;
padding-top: 10px;
font-family: SimSun;
img {
width: 16px;
margin: 5px 10px;
position: absolute;
left: -30px;
}
.notice {
display: inline-block;
width: 65%;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.anrui_time {
float: right;
display: inline-block;
margin-right: 5px;
line-height: 30px;
}
}
}
}
.bg-bottom {
background-image: url(../../assets/home/bottomBg.png);
border-radius: 10px;
overflow: hidden;
margin: 20px 0 0 0;
padding: 10px 20px;
li {
float: left;
list-style: none;
width: 11.6%;
margin: 10px 2.5%;
background: #fff;
border-radius: 40px;
text-align: center;
padding: 10px 25px 15px;
img {
width: 80%;
margin: 10px auto;
}
}
}
}
.copy {
position: fixed;
bottom: 0;
width: calc(100% - 40px);
margin: auto;
text-align: center;
line-height: 40px;
border-top: 2px solid #4E74A6;
background: #E9F1F7;
font-size: 14px;
color: #666;
}
.mark {
position: absolute;
top: 38%;
margin-left: 58px;
}
.mark {
::v-deep .el-badge__content {
font-size: 14px !important;
}
}
.selectStyle {
::v-deep .el-input__inner {
border: 0px !important;
background-color: #0294d7 !important;
font-size: 17px;
color: #FFFFFF;
}
}
</style>

501
demo-web-ui/src/views/Regist/User.vue

@ -1,293 +1,256 @@
<template> <template>
<div class="content"> <div class="content">
<el-header> <el-header>
<h3 class="title">河北省计量业务应用平台</h3> <h3 class="title">河北省计量业务应用平台</h3>
</el-header> </el-header>
<div class="user-from"> <div class="stude">学生注册</div>
<el-form :model="userForm" :rules="rules" ref="userForm" label-width="120px" class="demo-userForm"> <div class="user-from">
<el-form-item label="身份证号" prop="idNo"> <el-form
<el-input v-model="userForm.idNo" @blur="onInputBlur" placeholder="请输入身份证号" :maxlength="18"></el-input> :model="userForm"
</el-form-item> :rules="rules"
<el-form-item label="真实姓名" prop="name"> ref="userForm"
<el-input v-model="userForm.name" placeholder="请输入真实姓名"></el-input> label-width="120px"
</el-form-item> class="demo-userForm"
<el-form-item label="个人手机号" prop="mobile"> >
<el-input v-model="userForm.mobile" placeholder="请输入手机号" ></el-input> <el-form-item label="学生学号" prop="userName">
<el-button class="Tips" type="text" :disabled='isDisabled' @click.stop.prevent="getcode()">点击获取验证码 {{downTime ? downTime+'s':''}}</el-button> <el-input
</el-form-item> v-model="userForm.userName"
<el-form-item label="手机验证码" prop="verificationCode"> placeholder="请输入学号"
<el-input v-model="userForm.verificationCode" placeholder="请输入验证码"></el-input> ></el-input>
</el-form-item> </el-form-item>
<el-form-item label="用户名" prop="userName"> <el-form-item label="姓名" prop="name">
<el-input v-model="userForm.userName" :disabled="true"></el-input> <el-input v-model="userForm.name" placeholder="请输入姓名"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="密码" prop="password"> <el-form-item label="密码" prop="password">
<paddwordinput v-model="userForm.password" placeholder="请输入密码" :pastips='true' :maxlength="10"></paddwordinput> <paddwordinput
<el-button class="Tips" type="text">密码必须为8至10位大小写字母和数字组合</el-button> v-model="userForm.password"
</el-form-item> placeholder="请输入密码"
<el-form-item label="确认密码" prop="rePassword"> :pastips="true"
<paddwordinput v-model="userForm.rePassword" placeholder="请再次输入密码" :maxlength="10"></paddwordinput> :maxlength="10"
</el-form-item> ></paddwordinput>
<el-row :gutter="20"> <el-button class="Tips" type="text"
<el-col :span="12"> >密码必须为8至10位大小写字母和数字组合</el-button
<el-form-item label="身份证正面照" prop="idFrontPhoto"> >
<UploadImg @imgUrl="FrontPhotoUrl"></UploadImg> </el-form-item>
<el-input v-model="userForm.idFrontPhoto" v-show="false"></el-input> <el-form-item label="确认密码" prop="confirmPassword">
</el-form-item> <paddwordinput
</el-col> v-model="userForm.confirmPassword"
<el-col :span="12"> placeholder="请再次输入密码"
<el-form-item label="身份证背面照" prop="idBackPhoto"> :maxlength="10"
<UploadImg @imgUrl="BackPhotoUrl"></UploadImg> ></paddwordinput>
<el-input v-model="userForm.idBackPhoto" v-show="false"></el-input> </el-form-item>
</el-form-item> <el-form-item label="昵称" prop="nickName">
</el-col> <el-input v-model="userForm.nickName" placeholder="请输入昵称"></el-input>
</el-row> </el-form-item>
<el-form-item style="text-align: center;"> <el-form-item style="text-align: center">
<el-button type="primary" @click="submitForm('userForm')" :disabled="btnDisabled">注册</el-button> <el-button
<el-button @click="resetForm('userForm')">关闭</el-button> type="primary"
</el-form-item> @click="submitForm('userForm')"
</el-form> :disabled="btnDisabled"
</div> >注册</el-button
</div> >
<el-button @click="resetForm()">关闭</el-button>
</el-form-item>
</el-form>
</div>
</div>
</template> </template>
<script> <script>
import { import {registUser} from '@/api/user.js'
registUser, import qs from "qs";
getVerificationCode import paddwordinput from "@/components/passwordSafe/index.vue";
} from '@/api/user1.js' export default {
import qs from 'qs' components: { paddwordinput },
import UploadImg from '@/components/uploadFile/index.vue' data() {
import paddwordinput from '@/components/passwordSafe/index.vue' var validatorPhone = function (rule, value, callback) {
export default { if (value === "") {
components:{ UploadImg, paddwordinput }, callback(new Error("学号不能为空"));
data() { } else {
var validatorPhone = function (rule, value, callback) { callback();
if (value === '') {
callback(new Error('手机号不能为空'))
} else if (!/^1\d{10}$/.test(value)) {
callback(new Error('手机号格式错误'))
} else {
callback()
}
} }
var validatePass2 = (rule, value, callback) => { };
if (value === '') { var validatePass2 = (rule, value, callback) => {
callback(new Error('请再次输入密码')) if (value === "") {
// password callback(new Error("请再次输入密码"));
} else if (value !== this.userForm.password) { // password
callback(new Error('两次输入密码不一致!')) } else if (value !== this.userForm.password) {
} else { callback(new Error("两次输入密码不一致!"));
callback() } else {
} callback();
} }
return { };
downTime: '', return {
isDisabled: false, downTime: "",
userForm: { isDisabled: false,
name: '', userForm: {
userName: '', // name: "",//
password: '', userName: "", //
rePassword: '', password: "",
mobile: '', // confirmPassword: "",
verificationCode: '', nickName: "", //
idNo: '', },
idBackPhoto: '', // btnDisabled: false,
idFrontPhoto: '' rule: [{ required: true, message: "不能为空", trigger: "blur" }],
}, rules: {
btnDisabled: false, userName: [
rule: [{required: true, message: '不能为空', trigger: 'blur'}], { required: true, validator: validatorPhone, trigger: "blur" },
rules: { ],
idNo: [ password: [
{ required: true, message: '请输入身份证号', trigger: 'blur' }, { required: true, message: "请输入密码", trigger: "blur" },
{ pattern: /(^[1-9]\d{5}(18|19|([23]\d))\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$)|(^[1-9]\d{5}\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{2}$)/, {
message: '身份证号格式错误', trigger: 'blur' , min: 8,
} max: 10,
], message: "长度在 8 到 10 个字符大小写字母和数字组合",
name: [ trigger: "blur",
{ required: true, message: '请输入真实姓名', trigger: 'blur' } },
], ],
mobile: [ confirmPassword: [
{ required: true, validator: validatorPhone, trigger: 'blur' }
],
verificationCode: [
{ required: true, message: '请输入手机验证码', trigger: 'blur' }
],
userName: [
{ required: true, message: '请输入身份证号', trigger: 'blur' }
],
password: [
{ required: true, message: '请输入密码', trigger: 'blur' },
{ min: 8, max: 10, message: '长度在 8 到 10 个字符大小写字母和数字组合', trigger: 'blur' }
],
rePassword: [
{ required: true, validator: validatePass2, trigger: 'blur' } { required: true, validator: validatePass2, trigger: 'blur' }
], ],
idFrontPhoto: [ },
{ required: true, message: '请输入上传身份证', trigger: 'blur' } };
], },
idBackPhoto: [ methods: {
{ required: true, message: '请输入上传身份证', trigger: 'blur' } FrontPhotoUrl(url) {
], this.userForm.idFrontPhoto = url.filePath;
} },
}; BackPhotoUrl(url) {
}, this.userForm.idBackPhoto = url.filePath;
methods: { },
// submitForm(formName) {
getcode() { this.btnDisabled = true;
let _this = this this.$refs[formName].validate((valid) => {
if (!/^1\d{10}$/.test(_this.userForm.mobile)) { if (valid) {
this.$message({ registUser(this.userForm)
type: 'error', .then((res) => {
message: '手机号格式错误!' console.log(res);
}); this.btnDisabled = false;
}else { this.$confirm("注册成功, 是否关闭页面?", "提示", {
_this.downTime = 60 confirmButtonText: "确定",
let timeInterval = null cancelButtonText: "取消",
_this.isDisabled = true type: "success",
timeInterval = setInterval(()=>{ }).then(() => {
--_this.downTime this.$router.push('/login');
if(_this.downTime == 0){ });
clearInterval(timeInterval) })
_this.downTime = ''; .catch(() => {
_this.isDisabled = false this.btnDisabled = false;
} });
},1000) } else {
getVerificationCode({ return false;
mobile: _this.userForm.mobile
}).then(res =>{
// this.isDisabled = false
})
} }
}, });
FrontPhotoUrl(url){ },
this.userForm.idFrontPhoto = url.filePath resetForm() {
}, this.$router.push('/login');
BackPhotoUrl(url){ },
this.userForm.idBackPhoto = url.filePath onInputBlur() {
}, //
submitForm(formName) { this.userForm.userName = this.userForm.idNo;
this.btnDisabled = true },
this.$refs[formName].validate((valid) => { },
if (valid) { };
registUser(qs.stringify(this.userForm)).then((res) => {
this.btnDisabled = false
this.$confirm('注册成功, 是否关闭页面?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'success'
}).then(() => {
window.close();
})
}).catch(() => {
this.btnDisabled = false
})
} else {
return false;
}
});
},
resetForm(formName) {
window.close();
this.$refs[formName].resetFields();
},
onInputBlur() { //
this.userForm.userName = this.userForm.idNo
},
}
}
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
@import "~@/styles/variables.scss"; @import "~@/styles/variables.scss";
h3{margin: 0;padding: 0;} h3 {
.el-header{ margin: 0;
width: 100%; padding: 0;
background-color: #0294d7; }
color: #fff; .el-header {
line-height: 60px; width: 100%;
overflow: hidden; background-color: #0294d7;
position: fixed; color: #fff;
z-index: 99; line-height: 60px;
top: 0; overflow: hidden;
.title{ position: fixed;
float: left; z-index: 99;
font-size: 26px; top: 0;
margin-left: 35px; .title {
} float: left;
} font-size: 26px;
.content{ margin-left: 35px;
padding: 50px 0;
background-color: #f7f9fc;
} }
}
.content {
padding: 50px 0;
background-color: #f7f9fc;
}
</style> </style>
<style lang="scss"> <style lang="scss">
@import "~@/styles/variables.scss"; @import "~@/styles/variables.scss";
.opcity{ .opcity {
opacity: 1 !important; opacity: 1 !important;
} }
.user-from { .stude{
width: 860px; margin-left: 735px;
padding-top: 20px; margin-top: 20px;
margin: 0 auto; font-size: 26px;
.el-input__inner:focus { }
border: 1px solid $border-color; .user-from {
} width: 860px;
.Tips { padding-top: 20px;
padding-left: 10px; margin: 0 auto;
position: absolute; .el-input__inner:focus {
left: 100%; border: 1px solid $border-color;
top: 0; }
} .Tips {
padding-left: 10px;
position: absolute;
left: 100%;
top: 0;
}
.pasTips { .pasTips {
display: flex; display: flex;
justify-content: center; justify-content: center;
span { span {
display: inline-block; display: inline-block;
margin: 15px 10px 0 10px; margin: 15px 10px 0 10px;
padding: 0 30px; padding: 0 30px;
line-height: 30px; line-height: 30px;
border-top: 3px solid red; border-top: 3px solid red;
opacity: 0.3; opacity: 0.3;
} }
span:nth-child(2) { span:nth-child(2) {
border-color: blue; border-color: blue;
} }
span:nth-child(3) { span:nth-child(3) {
border-color: green; border-color: green;
} }
} }
.avatar-uploader .el-upload { .avatar-uploader .el-upload {
border: 1px dashed #d9d9d9; border: 1px dashed #d9d9d9;
border-radius: 6px; border-radius: 6px;
cursor: pointer; cursor: pointer;
position: relative; position: relative;
overflow: hidden; overflow: hidden;
} }
.avatar-uploader .el-upload:hover { .avatar-uploader .el-upload:hover {
border-color: #409EFF; border-color: #409eff;
} }
.avatar-uploader-icon { .avatar-uploader-icon {
font-size: 28px; font-size: 28px;
color: #8c939d; color: #8c939d;
width: 200px; width: 200px;
height: 178px; height: 178px;
line-height: 178px; line-height: 178px;
text-align: center; text-align: center;
} }
.avatar { .avatar {
width: 178px; width: 178px;
height: 178px; height: 178px;
display: block; display: block;
} }
} }
</style> </style>

277
demo-web-ui/src/views/copyofprocess/liuchengchasongguanli.vue

@ -1,35 +1,98 @@
<template> <template>
<div class="app-container"> <div class="app-container">
<div v-show="viewState == 1"> <div v-show="viewState == 1">
<button-bar view-title="流程抄送设置" ref="btnbar" :btndisabled="btndisabled" @btnhandle="btnHandle"/> <button-bar
view-title="流程抄送设置"
ref="btnbar"
:btndisabled="btndisabled"
@btnhandle="btnHandle"
/>
<div class="main-content"> <div class="main-content">
<div class="searchcon"> <div class="searchcon">
<el-button size="small" class="searchbtn" @click="clicksearchShow">{{ searchxianshitit }}</el-button> <el-button size="small" class="searchbtn" @click="clicksearchShow">{{
searchxianshitit
}}</el-button>
<div v-show="isSearchShow" class="search"> <div v-show="isSearchShow" class="search">
<el-form ref="listQueryform" :inline="true" :model="listQuery" label-width="100px" class="tab-header"> <el-form
ref="listQueryform"
:inline="true"
:model="listQuery"
label-width="100px"
class="tab-header"
>
<el-form-item label="流程名称"> <el-form-item label="流程名称">
<el-select v-model="listQuery.params.flowName" placeholder="请选择" filterable> <el-select
<el-option v-for="item in flow_list" :key="item.key" :label="item.name" :value="item.name"></el-option> v-model="listQuery.params.flowName"
placeholder="请选择"
filterable
>
<el-option
v-for="item in flow_list"
:key="item.key"
:label="item.name"
:value="item.name"
></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-form> </el-form>
<div class="btn" style="text-align: center;"> <div class="btn" style="text-align: center">
<el-button type="primary" size="small" icon="el-icon-search" @click="handleFilter">查询</el-button> <el-button
<el-button type="primary" size="small" icon="el-icon-refresh" @click="handleReset">重置</el-button> type="primary"
size="small"
icon="el-icon-search"
@click="handleFilter"
>查询</el-button
>
<el-button
type="primary"
size="small"
icon="el-icon-refresh"
@click="handleReset"
>重置</el-button
>
</div> </div>
</div> </div>
</div> </div>
<div class="listtop"> <div class="listtop">
<div class="tit">业务流程列表</div> <div class="tit">业务流程列表</div>
<pageye v-show="list.length > 0" :total="listQuery.total" :page.sync="listQuery.current" :limit.sync="listQuery.size" class="pagination" @pagination="getList"/> <pageye
v-show="list.length > 0"
:total="listQuery.total"
:page.sync="listQuery.current"
:limit.sync="listQuery.size"
class="pagination"
@pagination="getList"
/>
</div> </div>
<div class=""> <div class="">
<el-table :key="tableKey" v-loading="listLoading" :data="list" border style="width: 100%"> <el-table
<el-table-column width="60" label="序号" type="index" :index="indexMethod" align="center"/> :key="tableKey"
v-loading="listLoading"
:data="list"
border
style="width: 100%"
>
<el-table-column
width="60"
label="序号"
type="index"
:index="indexMethod"
align="center"
/>
<el-table-column width="180" label="操作" align="center"> <el-table-column width="180" label="操作" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button size="small" type="primary" @click="handleUpdate(scope.row)">设置</el-button> <el-button
<el-button size="small" type="danger" @click="handleDelete(scope.row)">删除</el-button> size="small"
type="primary"
@click="handleUpdate(scope.row)"
>设置</el-button
>
<el-button
size="small"
type="danger"
@click="handleDelete(scope.row)"
>删除</el-button
>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="流程名称" align="center" width="400"> <el-table-column label="流程名称" align="center" width="400">
@ -37,7 +100,11 @@
<span>{{ scope.row.flowName }}</span> <span>{{ scope.row.flowName }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="抄送角色" align="left" header-align="center"> <el-table-column
label="抄送角色"
align="left"
header-align="center"
>
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.roleName }}</span> <span>{{ scope.row.roleName }}</span>
</template> </template>
@ -45,53 +112,68 @@
</el-table> </el-table>
</div> </div>
<div class="pages"> <div class="pages">
<div class="tit"/> <div class="tit" />
<!-- 翻页 --> <!-- 翻页 -->
<pagination v-show="list.length > 0" :total="listQuery.total" :page.sync="listQuery.current" :limit.sync="listQuery.size" class="pagination" @pagination="getList"/> <pagination
v-show="list.length > 0"
:total="listQuery.total"
:page.sync="listQuery.current"
:limit.sync="listQuery.size"
class="pagination"
@pagination="getList"
/>
</div> </div>
</div> </div>
</div> </div>
<liuchengchaosongAdd v-show="viewState == 2 ||viewState == 3" ref="divadd" @doback="resetState" @reloadlist="getList" /> <liuchengchaosongAdd
v-show="viewState == 2 || viewState == 3"
ref="divadd"
@doback="resetState"
@reloadlist="getList"
/>
</div> </div>
</template> </template>
<script> <script>
import { pageList, delBySids } from '@/api/system/liuchengchaosong/liuchengchaosong' import {
import { selectFlowList } from '@/api/system/postManage/index' pageList,
import Pagination from '@/components/pagination' delBySids,
import pageye from '@/components/pagination/pageye' } from "@/api/system/liuchengchaosong/liuchengchaosong";
import ButtonBar from '@/components/ButtonBar' import { selectFlowList } from "@/api/system/postManage/index";
import liuchengchaosongAdd from './liuchengchaosongAdd' import Pagination from "@/components/pagination";
import pageye from "@/components/pagination/pageye";
import ButtonBar from "@/components/ButtonBar";
import liuchengchaosongAdd from "./liuchengchaosongAdd";
export default { export default {
name: 'liuchengchaosong', name: "liuchengchaosong",
components: { components: {
Pagination, Pagination,
pageye, pageye,
ButtonBar, ButtonBar,
liuchengchaosongAdd liuchengchaosongAdd,
}, },
data() { data() {
return { return {
btndisabled: false, btndisabled: false,
btnList: [ btnList: [
{ {
type: 'primary', type: "primary",
size: 'small', size: "small",
icon: 'plus', icon: "plus",
btnKey: 'toAdd', btnKey: "toAdd",
btnLabel: '新增' btnLabel: "新增",
}, },
{ {
type: 'info', type: "info",
size: 'small', size: "small",
icon: 'cross', icon: "cross",
btnKey: 'doClose', btnKey: "doClose",
btnLabel: '关闭' btnLabel: "关闭",
} },
], ],
isSearchShow: false, isSearchShow: false,
searchxianshitit: '显示查询条件', searchxianshitit: "显示查询条件",
viewState: 1, // 1 2- 3 4 5- viewState: 1, // 1 2- 3 4 5-
// ----------- // -----------
flow_list: [], // flow_list: [], //
@ -105,75 +187,76 @@ export default {
size: 5, size: 5,
total: 0, total: 0,
params: { params: {
flowName: '' flowName: "",
} },
} },
} };
}, },
mounted() { mounted() {
this.$refs['btnbar'].setButtonList(this.btnList) this.$refs["btnbar"].setButtonList(this.btnList);
}, },
created() { created() {
// //
this.init() this.init();
// //
this.getList() this.getList();
}, },
methods: { methods: {
init() { init() {
selectFlowList().then((res) => { selectFlowList().then((res) => {
if (res.success) { if (res.success) {
this.flow_list = res.data this.flow_list = res.data;
} }
}) });
}, },
btnHandle(btnKey) { btnHandle(btnKey) {
console.log('XXXXXXXXXXXXXXX ' + btnKey) console.log("XXXXXXXXXXXXXXX " + btnKey);
switch (btnKey) { switch (btnKey) {
case 'toAdd': case "toAdd":
this.toAdd() this.toAdd();
break break;
case 'doClose': case "doClose":
this.doClose() this.doClose();
break break;
default: default:
break break;
} }
}, },
// //
clicksearchShow() { clicksearchShow() {
this.isSearchShow = !this.isSearchShow this.isSearchShow = !this.isSearchShow;
if (this.isSearchShow) { if (this.isSearchShow) {
this.searchxianshitit = '隐藏查询条件' this.searchxianshitit = "隐藏查询条件";
} else { } else {
this.searchxianshitit = '显示查询条件' this.searchxianshitit = "显示查询条件";
} }
}, },
// //
indexMethod(index) { indexMethod(index) {
var pagestart = (this.listQuery.current - 1) * this.listQuery.size var pagestart = (this.listQuery.current - 1) * this.listQuery.size;
var pageindex = index + 1 + pagestart var pageindex = index + 1 + pagestart;
return pageindex return pageindex;
}, },
// //
getList() { getList() {
this.listLoading = true this.listLoading = true;
this.listQuery.params.orgSidPath = window.sessionStorage.getItem('orgSidPath') this.listQuery.params.orgSidPath =
window.sessionStorage.getItem("orgSidPath");
pageList(this.listQuery).then((response) => { pageList(this.listQuery).then((response) => {
this.listLoading = false this.listLoading = false;
if (response.success) { if (response.success) {
this.list = response.data.records this.list = response.data.records;
this.listQuery.total = response.data.total this.listQuery.total = response.data.total;
} else { } else {
this.list = [] this.list = [];
this.listQuery.total = 0 this.listQuery.total = 0;
} }
}) });
}, },
// //
handleFilter() { handleFilter() {
this.listQuery.current = 1 this.listQuery.current = 1;
this.getList() this.getList();
}, },
// //
handleReset() { handleReset() {
@ -182,46 +265,50 @@ export default {
size: 5, size: 5,
total: 0, total: 0,
params: { params: {
flowName: '' flowName: "",
} },
} };
this.getList() this.getList();
}, },
toAdd() { toAdd() {
this.viewState = 2 this.viewState = 2;
this.$refs['divadd'].showAdd() this.$refs["divadd"].showAdd();
}, },
// //
handleUpdate(row) { handleUpdate(row) {
this.viewState = 3 this.viewState = 3;
this.$refs['divadd'].showEdit(row) this.$refs["divadd"].showEdit(row);
}, },
handleDelete(row) { handleDelete(row) {
const tip = '请确认是否删除' const tip = "请确认是否删除";
this.$confirm(tip, '提示', { this.$confirm(tip, "提示", {
confirmButtonText: '确定', confirmButtonText: "确定",
cancelButtonText: '取消', cancelButtonText: "取消",
type: 'warning' type: "warning",
}).then(() => { }).then(() => {
const aa = [] const aa = [];
aa.push(row.sid) aa.push(row.sid);
delBySids(aa).then((res) => { delBySids(aa).then((res) => {
if (res.success) { if (res.success) {
this.$message({ showClose: true, type: 'success', message: '删除成功' }) this.$message({
this.getList() showClose: true,
type: "success",
message: "删除成功",
});
this.getList();
} }
}) });
}) });
}, },
resetState() { resetState() {
this.viewState = 1 this.viewState = 1;
}, },
doClose() { doClose() {
this.$store.dispatch('tagsView/delView', this.$route) this.$store.dispatch("tagsView/delView", this.$route);
this.$router.go(-1) this.$router.go(-1);
} },
} },
} };
</script> </script>
<style scoped> <style scoped>

185
demo-web-ui/src/views/login/login.vue

@ -1,7 +1,7 @@
<template> <template>
<div class="login"> <div class="login">
<div class="logoTitle"> <div class="logoTitle">
<img src="../../assets/loginImg/logo.png"/><span>安瑞集团</span> <img src="../../assets/loginImg/logo.png" /><span>安瑞集团</span>
<p class="title">安瑞集团信息化平台</p> <p class="title">安瑞集团信息化平台</p>
</div> </div>
<div class="main"> <div class="main">
@ -9,38 +9,54 @@
<el-form ref="loginForm" :model="loginForm" class="login-form"> <el-form ref="loginForm" :model="loginForm" class="login-form">
<h3 class="title1">用户登录</h3> <h3 class="title1">用户登录</h3>
<el-form-item> <el-form-item>
<el-input v-model="loginForm.userName" autocomplete="off" placeholder="请输入账号" prefix-icon="el-icon-user"> <el-input
v-model="loginForm.userName"
autocomplete="off"
placeholder="请输入账号"
prefix-icon="el-icon-user"
>
</el-input> </el-input>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-input v-model="loginForm.password" autocomplete="off" placeholder="请输入密码" prefix-icon="el-icon-lock" show-password> <el-input
v-model="loginForm.password"
autocomplete="off"
placeholder="请输入密码"
prefix-icon="el-icon-lock"
show-password
>
</el-input> </el-input>
<span class="nopsw register" @click="handleforgetPwd">忘记密码 </span>
</el-form-item> </el-form-item>
<el-form-item v-show="showMsg" style="margin-bottom:0;"> <el-form-item v-show="showMsg" style="margin-bottom: 0">
<span class="text-danger">提示用户名或密码错误请重试</span> <span class="text-danger">提示用户名或密码错误请重试</span>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-popover <el-popover placement="top" width="400" trigger="click">
placement="top" <el-button
width="400" slot="reference"
trigger="click" v-loading="loading"
v-model="loginCode" type="primary"
@show="codeShow"> class="login-btn"
<imgCodeRole @login="login" ref="imgCodeRole"></imgCodeRole> @click="login"
<el-button slot="reference" type="primary" class="login-btn" v-loading="loading"> </el-button> > </el-button
>
</el-popover> </el-popover>
<!--<router-link :to="{name: 'registUser'}" target="_blank" tag="a" class="register fl">个人注册</router-link>
<router-link :to="{name: 'registOrg'}" target="_blank" tag="a" class="register fr">单位注册</router-link>-->
</el-form-item> </el-form-item>
</el-form> </el-form>
</div> </div>
</div> </div>
<el-link :underline="false" class="register" @click="regist">注册</el-link>
<el-dialog title="忘记密码" :visible.sync="forgetPwd" :close-on-click-modal="false"> <!-- <el-dialog
title="忘记密码"
:visible.sync="forgetPwd"
:close-on-click-modal="false"
>
<el-form :model="nopassword"> <el-form :model="nopassword">
<el-form-item label="手机号"> <el-form-item label="手机号">
<el-input v-model="nopassword.userPhone" autocomplete="off"></el-input> <el-input
v-model="nopassword.userPhone"
autocomplete="off"
></el-input>
</el-form-item> </el-form-item>
<el-form-item label="姓名"> <el-form-item label="姓名">
<el-input v-model="nopassword.userName" autocomplete="off"></el-input> <el-input v-model="nopassword.userName" autocomplete="off"></el-input>
@ -50,96 +66,105 @@
<el-button @click="forgetPwd = false"> </el-button> <el-button @click="forgetPwd = false"> </el-button>
<el-button type="primary" @click="reGetPwd()"> </el-button> <el-button type="primary" @click="reGetPwd()"> </el-button>
</div> </div>
</el-dialog> </el-dialog> -->
</div> </div>
</template> </template>
<script> <script>
import { import { login, imgCode } from "@/api/user.js";
login, import user from "@/api/User/login.js";
imgCode import { setToken, getToken, setSession } from "@/utils/auth";
} from '@/api/user.js' // import imgCodeRole from "@/components/imgCodeRole/index.vue";
import user from '@/api/User/login.js'
import {setToken, getToken, setSession} from '@/utils/auth'
import imgCodeRole from '@/components/imgCodeRole/index.vue'
export default { export default {
components: {imgCodeRole}, components: {},
data() { data() {
return { return {
loginForm: { loginForm: {
userName: '', userName: "",
password: '', password: "",
verifyCode: '', verifyCode: "",
uuid: '' uuid: "",
}, },
imgCode: '', imgCode: "",
loading: false, loading: false,
loginCode: false, loginCode: false,
showMsg: false, showMsg: false,
forgetPwd: false, forgetPwd: false,
nopassword: { nopassword: {
userPhone: '', userPhone: "",
userName: '' userName: "",
} },
} };
},
mounted() {
// window.loginIt = this.loginIt;
}, },
mounted() {},
methods: { methods: {
// loginIt(data) {
// alert(data);
// },
login(data) { login(data) {
this.loading = true this.loading = true;
this.loginForm.verifyCode = data.verifyCode this.loginForm.verifyCode = data.verifyCode;
this.loginForm.uuid = data.uuid this.loginForm.uuid = data.uuid;
this.$store.dispatch('user/login', this.loginForm).then((res) => { this.$store
// this.$store.dispatch('user/getInfo') .dispatch("user/login", this.loginForm)
this.$router.push({path: '/home'}) .then((res) => {
this.loading = false // this.$store.dispatch('user/getInfo')
}).catch(() => { this.$router.push({ path: "/index" });
this.loading = false this.loading = false;
this.$refs.imgCodeRole.getCodeImage() })
}) .catch(() => {
this.loading = false;
// this.$refs.imgCodeRole.getCodeImage();
});
}, },
codeShow() { codeShow() {
if (this.loginForm.password == '' || this.loginForm.userName == '') { if (this.loginForm.password == "" || this.loginForm.userName == "") {
this.loginCode = false this.loginCode = false;
this.showMsg = true this.showMsg = true;
return; return;
} }
this.$refs.imgCodeRole.getCodeImage() this.$refs.imgCodeRole.getCodeImage();
}, },
handleforgetPwd() { handleforgetPwd() {
this.forgetPwd = true this.forgetPwd = true;
this.nopassword = { this.nopassword = {
userPhone: '', userPhone: "",
userName: '' userName: "",
} };
}, },
reGetPwd() { reGetPwd() {
if (this.nopassword.userPhone === '') { if (this.nopassword.userPhone === "") {
this.$message({ showClose: true, type: 'error', message: '手机号不能为空' }) this.$message({
return showClose: true,
type: "error",
message: "手机号不能为空",
});
return;
} }
if (this.nopassword.userName === '') { if (this.nopassword.userName === "") {
this.$message({ showClose: true, type: 'error', message: '姓名不能为空' }) this.$message({
return showClose: true,
type: "error",
message: "姓名不能为空",
});
return;
} }
user.reGetPwd(this.nopassword).then((res) => { user.reGetPwd(this.nopassword).then((res) => {
if (res.success) { if (res.success) {
this.$message({ showClose: true, type: 'success', message: '新密码已发送至手机,请查看短信' }) this.$message({
this.forgetPwd = false showClose: true,
type: "success",
message: "新密码已发送至手机,请查看短信",
});
this.forgetPwd = false;
} else { } else {
this.$message({ showClose: true, type: 'error', message: res.msg }) this.$message({ showClose: true, type: "error", message: res.msg });
} }
}) });
},
regist(){
this.$router.push('/reg')
} }
} },
} };
</script> </script>
<style lang="scss"> <style lang="scss">
@ -151,7 +176,11 @@ export default {
background-image: url(../../assets/loginImg/bgImg.png); background-image: url(../../assets/loginImg/bgImg.png);
background-position: center; background-position: center;
overflow: hidden; overflow: hidden;
.register{
position: absolute;
left: 1300px;
top:370px;
}
.logoTitle { .logoTitle {
margin: 30px; margin: 30px;
@ -176,7 +205,7 @@ export default {
.main { .main {
width: 30%; width: 30%;
/*height: 640px;*/ /*height: 640px;*/
background: #FFFFFF; background: #ffffff;
box-shadow: 0px 13px 12px 0px rgba(0, 0, 0, 0.15); box-shadow: 0px 13px 12px 0px rgba(0, 0, 0, 0.15);
opacity: 0.9; opacity: 0.9;
border-radius: 20px; border-radius: 20px;
@ -249,7 +278,7 @@ export default {
} }
.text-danger { .text-danger {
color: #F56C6C; color: #f56c6c;
} }
.login-btn { .login-btn {
@ -275,7 +304,7 @@ export default {
} }
.el-loading-mask { .el-loading-mask {
background-color: rgba(255, 255, 255, .6); background-color: rgba(255, 255, 255, 0.6);
} }
} }
</style> </style>

82
demo-web-ui/src/views/menuManage/menuManage.vue

@ -2,36 +2,6 @@
<el-tabs v-model="activeName" class="my-tabs" type="card" @tab-click="handleClick"> <el-tabs v-model="activeName" class="my-tabs" type="card" @tab-click="handleClick">
<el-tab-pane label="菜单列表" name="roleList"> <el-tab-pane label="菜单列表" name="roleList">
<div class="content"> <div class="content">
<!--<div class="tab-header">-->
<!-- <el-form :inline="true" :model="form" class="demo-form-inline">
<el-row :gutter="20">
<el-col :span="18">
<el-form-item label="菜单名称">
<el-input v-model="page.params.name" placeholder="菜单名称" clearable/>
</el-form-item>
<el-form-item label="资源名称">
&lt;!&ndash;<el-select v-model="page.sourceSid" @change="$forceUpdate()" :disabled="isadd">
<el-option
v-for="(item, i) in sourceNameData"
:key="i"
:label="item.sourceName"
:value="item.sid">
</el-option>
</el-select>&ndash;&gt;
<el-input v-model="page.params.sourceName" placeholder="资源名称" clearable/>
</el-form-item>
<el-button type="primary" @click="getPageList">查询</el-button>
</el-col>-->
<!-- <el-col :span="6">
<el-form-item style="float: right;">
<el-button type="primary" @click="getSorting">保存排序</el-button>
</el-form-item>
</el-col>-->
<!--</el-row>
</el-form>-->
<!-- </div>-->
<!-- table -->
<div class="table-describe clearfix"> <div class="table-describe clearfix">
<h4 style="color:#000;">菜单列表</h4> <h4 style="color:#000;">菜单列表</h4>
</div> </div>
@ -46,14 +16,10 @@
<el-table-column prop="name" label="菜单名称" width="220"/> <el-table-column prop="name" label="菜单名称" width="220"/>
<el-table-column label="操作" width="260" align="center"> <el-table-column label="操作" width="260" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button type="primary" size="mini" @click="add(scope.row)"> <el-button type="primary" size="mini" @click="editRow(scope.row)">
添加子菜单
</el-button>
<el-button v-if="scope.row.isSource == '0'" type="primary" size="mini" @click="editRow(scope.row)">
修改 修改
</el-button> </el-button>
<el-button <el-button
v-if="scope.row.isSource == '0'"
type="danger" type="danger"
size="mini" size="mini"
@click.native.prevent="deleteRow(scope.row)" @click.native.prevent="deleteRow(scope.row)"
@ -62,12 +28,6 @@
</el-button> </el-button>
</template> </template>
</el-table-column> </el-table-column>
<!--<el-table-column prop="sourceName" label="资源名称" align="center"></el-table-column>-->
<!-- <el-table-column prop="sortNo" sortable label="排序" align="center" width="100">
<template slot-scope="scope">
<el-input v-model="scope.row.sortNo" size="mini"/>
</template>
</el-table-column>-->
<el-table-column prop="pageUrl" label="链接地址" align="center"/> <el-table-column prop="pageUrl" label="链接地址" align="center"/>
<el-table-column prop="isEnable" label="可见性" align="center"> <el-table-column prop="isEnable" label="可见性" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
@ -83,29 +43,8 @@
</el-table-column> </el-table-column>
</el-table> </el-table>
</div> </div>
<!-- <pagination :total="page.total" :page.sync="page.current" :limit.sync="page.size" @pagination="pagination"/> -->
<!-- 编辑功能信息 -->
<el-dialog :title="dialogTitle + '功能信息'" :visible.sync="editDialog" width="40%"> <el-dialog :title="dialogTitle + '功能信息'" :visible.sync="editDialog" width="40%">
<table class="e-table" cellspacing="0"> <table class="e-table" cellspacing="0">
<tr>
<td>上级菜单</td>
<td>
<el-input v-model="form.pname" :disabled="true" style="width:300px"/>
</td>
</tr>
<tr>
<td>资源名称</td>
<td>
<el-select v-model="form.sourceSid" :disabled="isadd" @change="$forceUpdate()">
<el-option
v-for="(item, i) in sourceNameData"
:key="i"
:label="item.sourceName"
:value="item.sid"
/>
</el-select>
</td>
</tr>
<tr> <tr>
<td>菜单名称</td> <td>菜单名称</td>
<td> <td>
@ -169,25 +108,6 @@
<!-- 添加 --> <!-- 添加 -->
<!--<el-dialog :title="dialogTitle + '菜单管理'" :visible.sync="editDialog" width="40%">--> <!--<el-dialog :title="dialogTitle + '菜单管理'" :visible.sync="editDialog" width="40%">-->
<table class="e-table" cellspacing="0"> <table class="e-table" cellspacing="0">
<tr>
<td>上级菜单</td>
<td>
<el-input v-model="form.pname" :disabled="true" style="width:300px"/>
</td>
</tr>
<tr>
<td>资源名称</td>
<td>
<el-select v-model="form.sourceSid" :disabled="isadd" @change="$forceUpdate()" style="width:300px">
<el-option
v-for="(item, i) in sourceNameData"
:key="i"
:label="item.sourceName"
:value="item.sid"
/>
</el-select>
</td>
</tr>
<tr> <tr>
<td>菜单名称</td> <td>菜单名称</td>
<td> <td>

2
demo-web-ui/src/views/userManage/userManage.vue

@ -1,7 +1,7 @@
<template> <template>
<div> <div>
<el-tabs class="my-tabs" v-model="activeName" type="card" @tab-click="handleClick"> <el-tabs class="my-tabs" v-model="activeName" type="card" @tab-click="handleClick">
<el-tab-pane label="用户列表" name="roleList"> <el-tab-pane label="学生信息" name="roleList">
<user-manage-list :dataObj='dataObj' @status='isShow' @item='listObj'></user-manage-list> <user-manage-list :dataObj='dataObj' @status='isShow' @item='listObj'></user-manage-list>
</el-tab-pane> </el-tab-pane>
<!-- <el-tab-pane label="新增用户" name="addrole"> <!-- <el-tab-pane label="新增用户" name="addrole">

1211
demo-web-ui/src/views/workflow/definition/definition.vue

File diff suppressed because it is too large

546
demo-web-ui/src/views/workflow/form/form.vue

@ -1,331 +1,281 @@
<template> <template>
<div class="app-container"> <el-tabs class="my-tabs" v-model="activeName" type="card" @tab-click="handleClick">
<!--Start 列表页面--> <el-tab-pane label="教师信息" name="roleList">
<div v-show=" viewState == 1 ">
<el-menu :default-active="activeIndex" style="" class="el-menu-demo" mode="horizontal">
<el-menu-item
index="1"
style="margin-left: 0;text-align: center; background-color: #028ac8!important;color: #fff;">
流程定义
</el-menu-item>
<div class="new_" @click="handleAdd">新增</div>
<div class="new_out" @click="handleExport"></div>
</el-menu>
<div class="container"> <div class="container">
<div class="tab-header"> <el-table :data="tableData" border style="width: 100%;">
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px"> <el-table-column label="序号" width="70px" type="index" align="center">
<el-form-item label="表单名称" prop="formName"> </el-table-column>
<el-input <el-table-column label="操作" width="150px" align="center">
v-model="queryParams.formName" <template slot-scope="scope">
placeholder="请输入表单名称" <el-button type="primary" size="mini" @click="editRow(scope.row)">
clearable 修改
size="small" </el-button>
@keyup.enter.native="handleQuery" <el-button type="danger" size="mini" @click.native.prevent="deleteRow(scope.row)">
/> 删除
</el-form-item> </el-button>
<el-form-item> </template>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button> </el-table-column>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button> <el-table-column prop="name" label="教师姓名" width="100px" align="center">
</el-form-item> </el-table-column>
</el-form> <el-table-column prop="infoId" label="教师工号" align="center" width="150px">
</div> </el-table-column>
</div> <el-table-column prop="sex" label="性别" align="center" width="70px">
<!-- <el-row :gutter="10" class="mb8">--> </el-table-column>
<!-- <el-col :span="1.5">--> <el-table-column prop="calss" label="所属班级" align="center" width="100px">
<!-- <el-button--> </el-table-column>
<!-- type="primary"--> <el-table-column prop="department" label="系别" align="center" width="100px">
<!-- plain--> </el-table-column>
<!-- icon="el-icon-plus"--> <el-table-column prop="speciality" label="专业" align="center" width="150px">
<!-- size="mini"--> </el-table-column>
<!-- @click="handleAdd"--> <el-table-column prop="studyYear" label="入职年份" align="center" width="150px">
<!-- >新增--> </el-table-column>
<!-- </el-button>--> <el-table-column prop="remarks" label="成绩录入" align="center">
<!-- </el-col>--> </el-table-column>
<!-- <el-col :span="1.5">--> </el-table>
<!-- <el-button-->
<!-- type="success"-->
<!-- plain-->
<!-- icon="el-icon-edit"-->
<!-- size="mini"-->
<!-- :disabled="single"-->
<!-- @click="handleUpdate"-->
<!-- >修改-->
<!-- </el-button>-->
<!-- </el-col>-->
<!-- <el-col :span="1.5">-->
<!-- <el-button-->
<!-- type="danger"-->
<!-- plain-->
<!-- icon="el-icon-delete"-->
<!-- size="mini"-->
<!-- :disabled="multiple"-->
<!-- @click="handleDelete"-->
<!-- >删除-->
<!-- </el-button>-->
<!-- </el-col>-->
<!-- <el-col :span="1.5">-->
<!-- <el-button-->
<!-- type="warning"-->
<!-- plain-->
<!-- icon="el-icon-download"-->
<!-- size="mini"-->
<!-- @click="handleExport"-->
<!-- >导出-->
<!-- </el-button>-->
<!-- &lt;!&ndash; </el-col>&ndash;&gt;</el-row>-->
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
<el-table v-loading="loading" :data="formList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center"/>
<el-table-column label="表单主键" align="center" prop="formId"/>
<el-table-column label="表单名称" align="center" prop="formName"/>
<el-table-column label="备注" align="center" prop="remark"/>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-view"
@click="handleDetail(scope.row)"
>详情
</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
>修改
</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
>删除
</el-button>
</template>
</el-table-column>
</el-table>
<pagination <pagination :total="page.total" :page.sync="page.current" :limit.sync="page.size" @pagination="pagination"/>
v-show="total>0" <!-- 编辑角色信息 -->
:total="total" <el-dialog :title="dialogTitle + '教师信息'" :visible.sync="editDialog" width="40%">
:page.sync="queryParams.pageNum" <table class="e-table" cellspacing="0">
:limit.sync="queryParams.pageSize" <tr>
@pagination="getList" <td>教师姓名</td>
/> <td>
<el-input v-model="form.name" style="width:300px"></el-input>
</td>
</tr>
<tr>
<td>教师工号</td>
<td>
<el-input v-model="form.infoId" style="width:300px"></el-input>
</td>
</tr>
<tr>
<td>性别</td>
<td>
<el-input v-model="form.sex" style="width:300px"></el-input>
</td>
</tr>
<tr>
<td>所属班级</td>
<td>
<el-input v-model="form.calss" style="width:300px"></el-input>
</td>
</tr>
<tr>
<td>系别</td>
<td>
<el-input v-model="form.department" style="width:300px"></el-input>
</td>
</tr>
<tr>
<td>专业</td>
<td>
<el-input v-model="form.speciality" style="width:300px"></el-input>
</td>
</tr>
<!-- 添加或修改流程表单对话框 --> <tr>
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body> <td>入职年份</td>
<el-form ref="form" :model="form" :rules="rules" label-width="80px"> <td>
<el-form-item label="表单名称" prop="formName"> <el-input v-model="form.studyYear" style="width:300px"></el-input>
<el-input v-model="form.formName" placeholder="请输入表单名称"/> </td>
</el-form-item> </tr>
<el-form-item label="表单内容"> <tr>
<editor v-model="form.formContent" :min-height="192"/> <td>资源描述</td>
</el-form-item> <td>
<el-form-item label="备注" prop="remark"> <el-input type="textarea" v-model="form.remarks"></el-input>
<el-input v-model="form.remark" placeholder="请输入备注"/> </td>
</el-form-item> </tr>
</el-form> </table>
<div slot="footer" class="dialog-footer"> <div style="margin-top: 20px; text-align: center;">
<el-button type="primary" @click="submitForm"> </el-button> <el-button type="primary" @click="save()">保存</el-button>
<el-button @click="cancel"> </el-button> <!--<el-button @click="editDialog = false">关闭</el-button>-->
</div> </div>
</el-dialog> </el-dialog>
</div>
<!--表单配置详情--> </el-tab-pane>
<el-dialog :title="formTitle" :visible.sync="formConfOpen" width="60%" append-to-body> <el-tab-pane label="新增教师" name="addrole">
<div class="test-form"> <table class="e-table" cellspacing="0">
<parser :key="new Date().getTime()" :form-conf="formConf"/> <tr>
</div> <td>教师姓名</td>
</el-dialog> <td>
</div> <el-input v-model="form.name" style="width:300px"></el-input>
</td>
</tr>
<tr>
<td>教师工号</td>
<td>
<el-input v-model="form.infoId" style="width:300px"></el-input>
</td>
</tr>
<tr>
<td>性别</td>
<td>
<el-input v-model="form.sex" style="width:300px"></el-input>
</td>
</tr>
<tr>
<td>所属班级</td>
<td>
<el-input v-model="form.calss" style="width:300px"></el-input>
</td>
</tr>
<tr>
<td>系别</td>
<td>
<el-input v-model="form.department" style="width:300px"></el-input>
</td>
</tr>
<tr>
<td>专业</td>
<td>
<el-input v-model="form.speciality" style="width:300px"></el-input>
</td>
</tr>
<!--Start 新增页面--> <tr>
<form-add v-show=" viewState == 2"></form-add> <td>入职年份</td>
</div> <td>
<el-input v-model="form.studyYear" style="width:300px"></el-input>
</td>
</tr>
<tr>
<td>资源描述</td>
<td>
<el-input type="textarea" v-model="form.remarks"></el-input>
</td>
</tr>
</table>
<div style="margin-top: 20px; text-align: center;">
<el-button type="primary" @click="save()">保存</el-button>
<!--<el-button @click="editDialog = false">关闭</el-button>-->
</div>
<!--</el-dialog>-->
<!--</div>-->
</el-tab-pane>
</el-tabs>
</template> </template>
<script> <script>
import {listForm, getForm, delForm, addForm, updateForm, exportForm} from "@/api/workflow/form"; import {
// import Editor from '@/components/Editor'; pageList,
// import Parser from '@/components/parser/Parser' saveSourcesInfo,
import formAdd from "./formAdd"; putSourcesInfo,
delSources,
} from '@/api/system/sources/index.js'
export default { export default {
name: "form",
components: {
Editor,
// Parser,
formAdd
},
data() { data() {
return { return {
activeIndex: '1', activeName: 'roleList',
viewState: 1, dialogTitle: '',
// editDialog: false,
loading: true, form: {},
// type:'js',
ids: [], formBackup: Object.assign({}, this.form),
// page: {
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
formList: [],
//
title: "",
formConf: {}, //
formConfOpen: false,
formTitle: "",
//
open: false,
//
queryParams: {
size: 10, //
total: 0, // total: 0, //
current: 1, // current: 1, //
size: 10, //
params: { params: {
formName: null, psid: '',
formContent: null, sourceId: '',
} sourceName: ''
},
}, },
// tableData: [],
form: {}, zylb: [],
// sourceList: []
rules: {} }
};
}, },
created() { mounted() {
this.getList(); this.getPageList(this.page)
}, },
methods: { methods: {
/** 查询流程表单列表 */ pagination(val) { //
getList() { this.page.current = val.pageNum
this.loading = true; this.page.size = val.pageSize
listForm(this.queryParams).then(response => { this.getPageList(this.page)
this.formList = response.data.records;
this.total = response.data.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
}, },
// resetSearch() { //
reset() { this.page = {
this.form = { total: 0, //
formId: null, current: 1, //
formName: null, size: 10, //
formContent: null, params: {
createTime: null, name:'',
updateTime: null, psid: '',
createBy: null, sourceId: '',
updateBy: null, sourceName: ''
remark: null },
}; }
this.resetForm("form"); this.getPageList()
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
}, },
// getPageList() { //
handleSelectionChange(selection) { pageList(this.type).then((res) => {
this.ids = selection.map(item => item.formId) this.tableData = res.data
this.single = selection.length !== 1 this.page.total = res.data.total
this.multiple = !selection.length })
}, },
/** 表单配置信息 */ handleClick(tab, event) {
handleDetail(row) { if (tab.name == 'addrole') {
this.formConfOpen = true; this.dialogTitle = '新增'
this.formTitle = "流程表单配置详细"; this.roleForm = Object.assign({}, this.formBackup)
this.formConf = JSON.parse(row.formContent) } else {
this.getPageList()
}
}, },
/** 新增按钮操作 */ save() {
handleAdd() { if (this.form.sid) {
// this.reset(); putSourcesInfo(this.form).then(res => {
// this.open = true; this.editDialog = false
// this.title = ""; this.getPageList(this.page)
this.$router.push({path: '/tool/build/index', query: {formId: null}}) this.$message({
message: res.msg,
type: 'success'
})
})
} else {
saveSourcesInfo(this.form).then(res => {
this.getPageList()
this.activeName = "roleList"
this.$message({
message: res.msg,
type: 'success'
})
})
}
this.reset()
}, },
/** 修改按钮操作 */ reset() {
handleUpdate(row) { this.form = {}
// this.reset();
// const formId = row.formId || this.ids
// getForm(formId).then(response => {
// this.form = response.data;
// this.open = true;
// this.title = "";
// });
this.$router.push({path: '/tool/build/index', query: {formId: row.formId}})
}, },
/** 提交按钮 */ editRow(row) {
submitForm() { this.dialogTitle = '编辑'
this.$refs["form"].validate(valid => { this.editDialog = true
if (valid) { this.form = Object.assign({}, row)
if (this.form.formId != null) {
updateForm(this.form).then(response => {
this.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addForm(this.form).then(response => {
this.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
}, },
/** 删除按钮操作 */ deleteRow(row) {
handleDelete(row) { this.$confirm('确定要删除该资源吗, 是否继续?', '提示', {
const formIds = row.formId || this.ids; confirmButtonText: '确定',
this.$confirm('是否确认删除流程表单编号为"' + formIds + '"的数据项?', "警告", { cancelButtonText: '取消',
confirmButtonText: "确定", type: 'warning'
cancelButtonText: "取消",
type: "warning"
}).then(function () {
return delForm(formIds);
}).then(() => { }).then(() => {
this.getList(); delSources({sid: row.sid}).then(res => {
this.msgSuccess("删除成功"); this.getPageList()
}) this.$message({
}, type: 'success',
/** 导出按钮操作 */ message: '删除成功!'
handleExport() { });
const queryParams = this.queryParams; })
this.$confirm('是否确认导出所有流程表单数据项?', "警告", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
}).then(function () {
return exportForm(queryParams);
}).then(response => {
this.download(response.msg);
}) })
} }
} },
} }
</script> </script>
<style scoped> <style scoped="scoped" lang="scss">
.my-tabs {
margin-top: 10px;
}
</style> </style>

Loading…
Cancel
Save