日志、考核等修改

dev_2022-04-07
yujialong 3 years ago
parent e8adc22c5a
commit eb66e79c8e
  1. BIN
      src/assets/img/log.png
  2. BIN
      src/assets/img/login/school.png
  3. 66
      src/components/log/index.vue
  4. 94
      src/layouts/header/index.vue
  5. 331
      src/pages/account/login/index.vue
  6. 12
      src/pages/ass/list/index.vue
  7. 70
      src/pages/log/list/index.vue
  8. 1
      src/pages/station/preview/index.vue
  9. 7
      src/store/modules/user.js

Binary file not shown.

After

Width:  |  Height:  |  Size: 426 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 594 B

@ -0,0 +1,66 @@
<template>
<!-- 更新日志 -->
<div class="timeline">
<div class="item" v-for="(item, i) in list" :key="i">
<span class="date">{{ item.updateTime }}</span>
<div class="right">
<h6>{{ item.versionName }}</h6>
<img v-if="item.coverUrl" :src="item.coverUrl" alt="" class="cover">
<ul class="detail">
<li v-for="(item, i) in item.logContents" :key="i">
<p class="name"><img :src="require('@/assets/img/' + funcList.find(e => e.id === item.type).icon + '.png')" alt=""> {{ funcList.find(e => e.id === item.type).name }}</p>
<div class="val">
<p class="" v-for="(item, i) in item.content" :key="i">{{ item }}</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</template>
<script>
import Setting from '@/setting'
export default {
data() {
return {
list: [],
funcList: [
{
id: 0,
name: '新功能',
icon: 'func'
},
{
id: 1,
name: '修复',
icon: 'bug'
},
{
id: 2,
name: '优化',
icon: 'optimize'
}
]
};
},
mounted() {
this.getData()
},
methods: {
getData() {
this.$get(`${this.api.platformLogList}?platformId=${Setting.platformId}&port=1&versionName=`).then(({ logList }) => {
logList.map((e, i) => {
e.logContents.map(n => {
n.content = n.content.split('\n')
})
})
this.list = logList
}).catch(res => {})
},
}
};
</script>
<style lang="scss" scoped>
</style>

@ -24,6 +24,10 @@
</div>
</div>
</div>
<el-dialog title="更新日志" :visible.sync="logVisible" :close-on-click-modal="false" custom-class="user-dia" append-to-body width="1000px">
<log></log>
</el-dialog>
</div>
</template>
<script>
@ -31,34 +35,45 @@ import { mapState, mapMutations, mapActions } from "vuex";
import Setting from "@/setting";
import util from "@/libs/util";
import navbar from "../navbar";
import log from '@/components/log'
export default {
data() {
return {
token: util.local.get(Setting.tokenKey),
isIndex: Setting.whiteList.find(e => e === this.$route.path) //
isIndex: Setting.whiteList.find(e => e === this.$route.path), //
logVisible: false
};
},
components: {
navbar
navbar,
log
},
computed: {
...mapState("user", [
"title", "logoUrl", "avatar", "userName", 'customerName'
"title", "logoUrl", "avatar", "userName", 'customerName', 'logView'
])
},
mounted() {
if (this.token) {
this.getSystemDetail();
this.getUserInfo();
}
if (this.token) {
this.getSystemDetail();
this.getUserInfo();
this.logView || this.getLogStatus() // logViewfalse
}
},
methods: {
...mapMutations("user", [
'SET_CUSTOMERNAME'
'SET_CUSTOMERNAME', 'SET_LOG'
]),
...mapActions("user", [
"logout", "setTitle", "setLogoUrl", "setAvatar", "setUserName"
]),
//
getLogStatus() {
this.$get(this.api.logNotification).then(({ notification }) => {
this.SET_LOG() // true
if (notification) this.logVisible = true // true
}).catch(res => {})
},
getSystemDetail () {
this.$get(this.api.logoDetail).then(res => {
if (res.data) {
@ -192,4 +207,67 @@ $height: 64px;
}
}
}
/deep/.timeline {
display: flex;
flex-direction: column;
.item {
display: flex;
justify-content: center;
margin-bottom: 30px;
}
.date {
width: 350px;
margin-right: 50px;
text-align: right;
color: #6a6a6a;
font-size: 14px;
}
.right {
flex: 1;
}
h6 {
margin-bottom: 15px;
font-size: 18px;
color: #333;
line-height: 1;
}
.cover {
max-width: 400px;
margin: 10px 0 20px;
}
.detail {
li {
margin-bottom: 20px;
}
.name {
display: flex;
align-items: center;
margin-bottom: 5px;
font-size: 14px;
img {
width: 20px;
margin-right: 8px;
}
}
.val {
font-size: 15px;
line-height: 1.8;
white-space: pre-wrap;
p {
position: relative;
color: #505050;
&:before {
content: '';
display: inline-block;
width: 5px;
height: 5px;
margin: 0 15px 0 8px;
vertical-align: middle;
border-radius: 20px;
background-color: $main-color;
}
}
}
}
}
</style>

@ -7,11 +7,21 @@
<li v-for="(item,index) in tabList" :key="index" :class="{active: form.distinguish == item.id}" @click="typeClick(item)">{{item.label}}</li>
</ul>
<el-form :model="form" :rules="loginRules" ref="form" style="margin-top: 20px">
<el-form-item prop="school">
<label class="school"></label>
<el-select v-model="form.schoolId" clearable filterable placeholder="请选择学校">
<el-option v-for="(item, i) in schoolList" :key="i" :label="item.schoolName" :value="item.schoolId"></el-option>
</el-select>
</el-form-item>
<el-form-item v-if="form.distinguish == '1'" prop="account">
<label class="account"></label>
<el-input v-model.trim="form.account" placeholder="请输入账号"></el-input>
<el-input v-model.trim="form.account" placeholder="请输入号"></el-input>
</el-form-item>
<el-form-item v-if="form.distinguish == '2'" prop="account">
<label class="account"></label>
<el-input v-model.trim="form.account" placeholder="请输入工号"></el-input>
</el-form-item>
<el-form-item v-if="form.distinguish == '3'" prop="account">
<label class="account"></label>
<el-input v-model.trim="form.account" placeholder="请输入手机号/邮箱"></el-input>
</el-form-item>
@ -29,12 +39,12 @@
<el-input
placeholder="请输入验证码"
v-model.trim="form.code"
@keyup.enter.native="submitFormLogin"
@keyup.enter.native="submit"
>
</el-input>
<img @click="getVerImg" :src="verificationIMG" class="ver-img" alt="">
</el-form-item>
<el-button class="submit" type="primary" @click="submitFormLogin">登录</el-button>
<el-button class="submit" type="primary" @click="submit">登录</el-button>
</el-form>
</div>
</div>
@ -72,6 +82,23 @@
</li>
</ul>
</el-dialog>
<el-dialog title="请选择您要登录的用户" :visible.sync="userVisible" :close-on-click-modal="false" custom-class="user-dia" width="500px">
<p class="tips">该手机号已绑定以下用户信息</p>
<ul class="users">
<li>
<span>中山大学孙逸仙工号8814</span>
<i class="el-icon-right"></i>
</li>
<li>
<span>中山大学孙逸仙工号8814</span>
<i class="el-icon-right"></i>
</li>
<li>
<span>中山大学孙逸仙工号8814</span>
<i class="el-icon-right"></i>
</li>
</ul>
</el-dialog>
<v-footer ref="footer"></v-footer>
</div>
</template>
@ -82,20 +109,23 @@ import { mapMutations, mapActions } from "vuex";
import util from "@/libs/util";
import Setting from "@/setting";
import axios from "axios"
export default {
data: function() {
return {
tabList: [
{
id: '1',
label: '账号'
},{
label: '学生学号登录'
}, {
id: '2',
label: '老师工号登录'
}, {
id: '3',
label: '手机号/邮箱'
}
],
verificationIMG: "",
schoolList: [],
form: {
account: "",
password: "",
@ -118,7 +148,8 @@ export default {
phoneBtnText: "发送验证码",
selectVisible: false,
selectedRole: '',
token: ''
token: '',
userVisible: false
};
},
components: {
@ -128,6 +159,7 @@ export default {
this.getVerImg();
},
mounted() {
// this.getSchool()
//
this.$once("hook:beforeDestroy", function() {
clearInterval(this.phoneTimer);
@ -141,15 +173,28 @@ export default {
...mapActions("user", [
"setInfo"
]),
getSchool() {
this.$get(this.api.querySchool, {
provinceId: '',
cityId: ''
}).then(res => {
this.schoolList = res.list
}).catch(res => {})
},
getVerImg() { //
this.form.random = Math.floor(Math.random() * 999999999);
this.verificationIMG = this.api.verification + "?random=" + `${this.form.random}`;
},
typeClick(tab) { //
this.form.distinguish = tab.id
const { id } = tab
this.form.distinguish = id
this.form.account = "";
this.$refs.form.clearValidate();
this.loginRules.account[0].message = tab.id === "1" ? "请输入账号" : "请输入手机号/邮箱";
this.loginRules.account[0].message = id === '1' ?
'请输入学号' :
id === '2' ?
'请输入工号' :
'请输入手机号/邮箱'
},
//
reloadIndex() {
@ -160,45 +205,37 @@ export default {
util.local.set(Setting.tokenKey, this.token, Setting.tokenExpires)
util.cookies.remove('serverLogin')
this.reloadIndex()
// true
this.$get(this.api.logNotification).then(res => {
const history = this.$route.query.redirect
const redirect = res.notification ?
'/log' :
history ?
decodeURIComponent(history) :
'/station'
util.successMsg('登录成功')
this.$router.replace(redirect)
}).catch(res => {})
util.successMsg('登录成功')
this.$router.replace('/station')
},
submitFormLogin() { //
submit() { //
this.$refs.form.validate(valid => {
if (valid) {
this.form.distinguish = Number(this.form.distinguish);
this.$post(this.api.logins, this.form).then((res) => {
if (res && res.status == 30001) {
this.$post(this.api.logins, this.form).then(({ status, data, message }) => {
if (status == 30001) {
this.phoneVisible = true
this.getVerImg()
this.form.code = ''
} else if (res.status == 200) {
this.token = res.data.token
} else if (status == 200) {
const { token } = data
this.token = token
//
axios.get(this.api.isClient, {
headers: {
token: res.data.token
token
}
}).then(res => {
//
if (res.data.customer) {
this.SET_CUSTOMERNAME(res.data.customerName)
if (data.customer) {
this.SET_CUSTOMERNAME(data.customerName)
this.selectVisible = true
} else {
this.setLogin()
}
}).catch(res => {})
} else {
util.errorMsg(res.message)
util.errorMsg(message)
}
}).catch(res => {
this.getVerImg()
@ -213,10 +250,12 @@ export default {
if (val === 1) {
this.setLogin()
} else {
// 使
util.cookies.set('serverLogin', true, {
expires: new Date(Date.now() + 15 * 60 * 1000)
expires: new Date(Date.now() + 15 * 60 * 1000) // 15
})
this.reloadIndex()
//
location.href = process.env.NODE_ENV === 'development' ?
'http://192.168.31.125:8081/#/redirect?auth=' + btoa(this.token) :
`${location.origin}/admin/#/redirect?auth=${window.btoa(this.token)}`
@ -287,103 +326,110 @@ export default {
.wrap {
min-height: 100%;
background-color: #F3F6FA;
.login{
min-height: calc(100vh - 43px);
padding-top: calc((100vh - 584px) / 2);
background: url(../../../assets/img/shapes/shape1.png) (0 123px)/auto no-repeat,
url(../../../assets/img/shapes/shape2.png) (35px 238px)/auto no-repeat,
url(../../../assets/img/shapes/shape3.png) (0 485px)/auto no-repeat,
url(../../../assets/img/shapes/shape4.png) (right 50%)/auto no-repeat,
url(../../../assets/img/shapes/shape5.png) (right 80%)/auto no-repeat,
url(../../../assets/img/shapes/shape6.png) (right bottom)/auto no-repeat;
.form{
width: 436px;
padding: 38px 38px 60px;
margin: 0 auto 0;
border-radius: 6px;
background-color: #fff;
.title{
margin-bottom: 25px;
font-size: 26px;
color: #0B1D30;
letter-spacing: 4px;
}
.tab{
display: flex;
align-items: center;
margin-bottom: 24px;
border-bottom: 2px solid #E1E6F2;
li{
padding: 18px 0;
margin-bottom: -1px;
font-size: 18px;
color: #555;
cursor: pointer;
border-bottom: 4px solid transparent;
&:first-child{
margin-right: 50px;
}
&.active{
color: $main-color;;
border-bottom-color: $main-color;
}
}
.login{
min-height: calc(100vh - 43px);
padding-top: calc((100vh - 584px) / 2);
background: url(../../../assets/img/shapes/shape1.png) (0 123px)/auto no-repeat,
url(../../../assets/img/shapes/shape2.png) (35px 238px)/auto no-repeat,
url(../../../assets/img/shapes/shape3.png) (0 485px)/auto no-repeat,
url(../../../assets/img/shapes/shape4.png) (right 50%)/auto no-repeat,
url(../../../assets/img/shapes/shape5.png) (right 80%)/auto no-repeat,
url(../../../assets/img/shapes/shape6.png) (right bottom)/auto no-repeat;
.form{
width: 436px;
padding: 38px 38px 60px;
margin: 0 auto 0;
border-radius: 6px;
background-color: #fff;
.title{
margin-bottom: 25px;
font-size: 26px;
color: #0B1D30;
letter-spacing: 4px;
}
.tab{
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 24px;
border-bottom: 2px solid #E1E6F2;
li{
padding: 18px 0;
margin-bottom: -1px;
font-size: 18px;
color: #555;
cursor: pointer;
border-bottom: 4px solid transparent;
&:last-child{
margin-right: 0;
}
&.active{
color: $main-color;;
border-bottom-color: $main-color;
}
}
.label{
margin-bottom: 10px;
color: #105CB2;
}
/deep/.el-form-item{
margin-bottom: 20px;
}
/deep/.el-input__inner{
position: relative;
height: 52px;
padding: 0 20px 0 34px;
line-height: 50px;
background-color: #FBFBFB;
border: 1px solid #E1E6F2;
border-radius: 4px !important;
}
.account,.password,.code{
z-index: 1;
position: absolute;
top: 17px;
left: 11px;
width: 18px;
height: 18px;
background: url(../../../assets/img/login/account.png) 0 0/100% 100% no-repeat;
}
.password{
top: 18px;
background-image: url(../../../assets/img/login/password.png);
}
.code{
top: 18px;
background-image: url(../../../assets/img/login/code.png);
}
.ver-img{
position: absolute;
top: 1px;
right: 1px;
}
/deep/.el-form-item__error{
top: 105%;
left: auto;
right: 0;
color: #FFA94E;
}
.submit{
width: 100%;
height: 48px;
margin-top: 30px;
line-height: 48px;
padding: 0;
font-size: 20px;
background-color: $main-color;
border-radius: 4px;
border: 0;
}
}
.label{
margin-bottom: 10px;
color: #105CB2;
}
/deep/.el-form-item{
margin-bottom: 20px;
}
/deep/.el-input__inner{
position: relative;
height: 52px;
padding: 0 20px 0 34px;
line-height: 50px;
background-color: #FBFBFB;
border: 1px solid #E1E6F2;
border-radius: 4px !important;
}
.el-select {
width: 100%;
}
label {
z-index: 1;
position: absolute;
top: 17px;
left: 11px;
width: 18px;
height: 18px;
background: url(../../../assets/img/login/account.png) 0 0/100% 100% no-repeat;
}
.school{
background-image: url(../../../assets/img/login/school.png);
}
.password{
top: 18px;
background-image: url(../../../assets/img/login/password.png);
}
.code{
top: 18px;
background-image: url(../../../assets/img/login/code.png);
}
.ver-img{
position: absolute;
top: 1px;
right: 1px;
}
/deep/.el-form-item__error{
top: 105%;
left: auto;
right: 0;
color: #FFA94E;
}
.submit{
width: 100%;
height: 48px;
margin-top: 30px;
line-height: 48px;
padding: 0;
font-size: 20px;
background-color: $main-color;
border-radius: 4px;
border: 0;
}
}
}
@ -400,12 +446,6 @@ export default {
}
}
}
.tips {
margin: 0 0 10px 5px;
font-size: 14px;
text-align: center;
color: #666;
}
.port {
display: flex;
justify-content: center;
@ -439,6 +479,35 @@ export default {
/deep/.select-dia {
margin-top: calc((100vh - 383px) / 2) !important;
}
/deep/.user-dia {
.tips {
margin-bottom: 20px;
text-align: center;
color: #666;
}
.users {
li {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 15px;
margin-bottom: 10px;
line-height: 40px;
font-size: 14px;
background-color: #ebeef5;
cursor: pointer;
&:last-child {
margin-bottom: 0;
}
&:hover {
background-color: #d3e0ff;
}
i {
font-size: 16px;
}
}
}
}
@media (max-height: 680px) {
.wrap .login {
padding: 40px 0;

@ -63,6 +63,10 @@
></el-option>
</el-select>
</li>
<li>
<label>搜索</label>
<el-input placeholder="请输入考核名称" v-model="form.keyWord" clearable></el-input>
</li>
</ul>
</div>
<div class="page">
@ -164,6 +168,7 @@ export default {
listData: [],
date: [],
form: {
keyWord: '',
month: "",
startTime: "",
endTime: "",
@ -171,7 +176,6 @@ export default {
curriculumId: "",
classId: ""
},
keyword: "",
dateList: [
{
id: "",
@ -237,7 +241,7 @@ export default {
}
this.initData();
},
keyword: function(val) {
'form.keyWord': function(val) {
clearTimeout(this.searchTimer);
this.searchTimer = setTimeout(() => {
this.initData();
@ -380,8 +384,8 @@ export default {
});
},
getClassData() {
this.$post(this.api.myClassByStudent).then(res => {
this.classList = res.data;
this.$post(this.api.myClassByStudent).then(({ data }) => {
this.classList = data.filter(e => e)
}).catch(err => {
});
},

@ -4,68 +4,27 @@
<img width="450" src="@/assets/img/update.png" alt="">
<p>给用户带来更好的服务与体验是我们不断优化和迭代产品的动力</p>
</div>
<div class="timeline">
<div class="item" v-for="(item, i) in listData" :key="i">
<span class="date">{{ item.updateTime }}</span>
<div class="right">
<h6>{{ item.versionName }}</h6>
<img v-if="item.coverUrl" :src="item.coverUrl" alt="" class="cover">
<ul class="detail">
<li v-for="(item, i) in item.logContents" :key="i">
<p class="name"><img :src="require('@/assets/img/' + funcList.find(e => e.id === item.type).icon + '.png')" alt=""> {{ funcList.find(e => e.id === item.type).name }}</p>
<div class="val">
<p class="" v-for="(item, i) in item.content" :key="i">{{ item }}</p>
</div>
</li>
</ul>
</div>
</div>
</div>
<log-list></log-list>
</div>
</template>
<script>
import Setting from '@/setting'
import logList from '@/components/log'
export default {
name: 'log',
data() {
return {
platformList: Setting.platformList,
listData: [],
funcList: [
{
id: 0,
name: '新功能',
icon: 'func'
},
{
id: 1,
name: '修复',
icon: 'bug'
},
{
id: 2,
name: '优化',
icon: 'optimize'
}
]
}
},
components: {
logList
},
mounted() {
this.getData()
},
methods: {
getData() {
this.$get(`${this.api.platformLogList}?platformId=${Setting.platformId}&port=1&versionName=`).then(res => {
const { logList } = res
logList.map((e, i) => {
e.logContents.map(n => {
n.content = n.content.split('\n')
})
})
this.listData = logList
}).catch(res => {})
},
}
};
</script>
@ -84,12 +43,13 @@ export default {
color: #e9e9e9;
}
}
.timeline {
display: flex;
flex-direction: column;
width: 1000px;
margin: 0 auto;
}
}
/deep/.timeline {
display: flex;
flex-direction: column;
width: 1000px;
margin: 0 auto;
.item {
display: flex;
justify-content: center;

@ -280,7 +280,6 @@ export default {
},
goSystem() { //
const id = this.systemIds
let href = ''
let token = util.local.get(Setting.tokenKey);
let roleId = this.roleId == 4 ? 0 : 1;
let userName = window.btoa(encodeURIComponent(this.userName));

@ -3,7 +3,6 @@ import util from "@/libs/util";
import { post, get, del, put } from "@/plugins/requests/index.js";
import api from "@/api";
import addRoutes from "@/libs/route/addRoutes";
/**
* 用户信息
* */
@ -20,7 +19,8 @@ export default {
customerName: '',
schoolId: '',
roleId: '',
dataTime: ''
dataTime: '',
logView: false // 是否查询过日志状态,如果有,则不再调接口
},
mutations: {
SET_INFO: (state, info) => {
@ -50,6 +50,9 @@ export default {
SET_ACTIVE_TAB: (state, activeTab) => {
state.activeTab = activeTab;
},
SET_LOG: (state) => {
state.logView = true
},
},
actions: {
login({ state, commit }, userInfo) {

Loading…
Cancel
Save