|
|
|
@ -9,6 +9,31 @@ |
|
|
|
|
<el-backtop target=".content"></el-backtop> |
|
|
|
|
<v-footer></v-footer> |
|
|
|
|
</div> |
|
|
|
|
<div class="log-mask" v-if="logVisible"></div> |
|
|
|
|
<div class="log-dia" v-if="logVisible"> |
|
|
|
|
<img class="bg1" src="@/assets/img/log-bg.png" alt=""> |
|
|
|
|
<img class="bg2" src="@/assets/img/log-bg1.png" alt=""> |
|
|
|
|
<p class="log-title">更新日志</p> |
|
|
|
|
<div class="log-wrap"> |
|
|
|
|
<div class="logs"> |
|
|
|
|
<div class="item" v-for="(item, i) in list" :key="i" v-show="!i || (i && logAll)"> |
|
|
|
|
<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 v-for="(item, i) in item.content" :key="i">{{ i + 1 }}、{{ item }}</p> |
|
|
|
|
</div> |
|
|
|
|
</li> |
|
|
|
|
</ul> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="more-wrap"> |
|
|
|
|
<el-button class="know" type="primary" size="small" @click="logVisible = false">知道了</el-button> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
@ -16,26 +41,77 @@ |
|
|
|
|
<script> |
|
|
|
|
import vHead from '../header' |
|
|
|
|
import vFooter from '../footer' |
|
|
|
|
import { mapActions } from 'vuex' |
|
|
|
|
import { mapState, mapMutations, mapActions } from 'vuex' |
|
|
|
|
import Setting from '@/setting' |
|
|
|
|
import util from '@/libs/util' |
|
|
|
|
export default { |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
|
|
|
|
|
logVisible: false, |
|
|
|
|
list: [], |
|
|
|
|
logAll: false, |
|
|
|
|
funcList: [ |
|
|
|
|
{ |
|
|
|
|
id: 0, |
|
|
|
|
name: '新功能', |
|
|
|
|
icon: 'func' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
id: 1, |
|
|
|
|
name: '修复', |
|
|
|
|
icon: 'bug' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
id: 2, |
|
|
|
|
name: '优化', |
|
|
|
|
icon: 'optimize' |
|
|
|
|
} |
|
|
|
|
] |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
components: { |
|
|
|
|
vHead, |
|
|
|
|
vFooter |
|
|
|
|
}, |
|
|
|
|
computed: { |
|
|
|
|
...mapState("user", [ |
|
|
|
|
'logView' |
|
|
|
|
]) |
|
|
|
|
}, |
|
|
|
|
mounted() { |
|
|
|
|
this.autoLogout() |
|
|
|
|
this.logView || this.getLogStatus() // logView为false才需要查询接口 |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
...mapMutations("user", [ |
|
|
|
|
'SET_LOG' |
|
|
|
|
]), |
|
|
|
|
...mapActions('user', [ |
|
|
|
|
'logout' |
|
|
|
|
]), |
|
|
|
|
// 获取日志列表 |
|
|
|
|
getLog() { |
|
|
|
|
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 => {}) |
|
|
|
|
}, |
|
|
|
|
// 获取日志状态 |
|
|
|
|
getLogStatus() { |
|
|
|
|
util.local.get(Setting.tokenKey) && this.$get(this.api.logNotification, { |
|
|
|
|
platformId: Setting.platformId |
|
|
|
|
}).then(({ notification }) => { |
|
|
|
|
this.SET_LOG() // 把查看日志状态设置为true |
|
|
|
|
if (notification) { |
|
|
|
|
this.logVisible = true // 返回true,则显示日志弹框 |
|
|
|
|
this.getLog() |
|
|
|
|
} |
|
|
|
|
}).catch(res => {}) |
|
|
|
|
}, |
|
|
|
|
// 长时间未操作,自动退出登录 |
|
|
|
|
autoLogout() { |
|
|
|
|
let lastTime = new Date().getTime() |
|
|
|
@ -55,25 +131,117 @@ export default { |
|
|
|
|
}; |
|
|
|
|
</script> |
|
|
|
|
<style lang="scss" scoped> |
|
|
|
|
.main{ |
|
|
|
|
min-height: calc(100% - 64px); |
|
|
|
|
.layout{ |
|
|
|
|
padding-top: 64px; |
|
|
|
|
} |
|
|
|
|
.view{ |
|
|
|
|
min-width: $min-width; |
|
|
|
|
min-height: calc(100vh - 134px); |
|
|
|
|
padding: 12px 80px 0; |
|
|
|
|
margin: 0 auto; |
|
|
|
|
background-color: #F3F6FA; |
|
|
|
|
background: url(../../assets/img/shapes/shape1.png) 0 50px no-repeat, |
|
|
|
|
url(../../assets/img/shapes/shape7.png) right 70px no-repeat, |
|
|
|
|
url(../../assets/img/shapes/shape8.png) 0 574px no-repeat, |
|
|
|
|
url(../../assets/img/shapes/shape9.png) right 645px no-repeat, |
|
|
|
|
url(../../assets/img/shapes/shape6.png) 0 1074px no-repeat; |
|
|
|
|
.main{ |
|
|
|
|
min-height: calc(100% - 64px); |
|
|
|
|
.layout{ |
|
|
|
|
padding-top: 64px; |
|
|
|
|
} |
|
|
|
|
.view{ |
|
|
|
|
min-width: $min-width; |
|
|
|
|
min-height: calc(100vh - 134px); |
|
|
|
|
padding: 12px 80px 0; |
|
|
|
|
margin: 0 auto; |
|
|
|
|
background-color: #F3F6FA; |
|
|
|
|
background: url(../../assets/img/shapes/shape1.png) 0 50px no-repeat, |
|
|
|
|
url(../../assets/img/shapes/shape7.png) right 70px no-repeat, |
|
|
|
|
url(../../assets/img/shapes/shape8.png) 0 574px no-repeat, |
|
|
|
|
url(../../assets/img/shapes/shape9.png) right 645px no-repeat, |
|
|
|
|
url(../../assets/img/shapes/shape6.png) 0 1074px no-repeat; |
|
|
|
|
} |
|
|
|
|
.index{ |
|
|
|
|
padding: 0; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.log-mask { |
|
|
|
|
position: fixed; |
|
|
|
|
top: 0; |
|
|
|
|
left: 0; |
|
|
|
|
bottom: 0; |
|
|
|
|
right: 0; |
|
|
|
|
background-color: rgba(0, 0, 0, .4); |
|
|
|
|
} |
|
|
|
|
/deep/.log-dia { |
|
|
|
|
z-index: 11; |
|
|
|
|
position: absolute; |
|
|
|
|
top: 250px; |
|
|
|
|
left: 50%; |
|
|
|
|
width: 550px; |
|
|
|
|
transform: translateX(-50%); |
|
|
|
|
background-color: #fff; |
|
|
|
|
border-radius: 6px; |
|
|
|
|
.bg1 { |
|
|
|
|
width: 100%; |
|
|
|
|
height: 140px; |
|
|
|
|
} |
|
|
|
|
.bg2 { |
|
|
|
|
position: absolute; |
|
|
|
|
top: -130px; |
|
|
|
|
left: 48px; |
|
|
|
|
max-width: 100%; |
|
|
|
|
height: 250px; |
|
|
|
|
} |
|
|
|
|
.log-title { |
|
|
|
|
position: absolute; |
|
|
|
|
top: 65px; |
|
|
|
|
left: 0; |
|
|
|
|
width: 100%; |
|
|
|
|
text-align: center; |
|
|
|
|
font-size: 22px; |
|
|
|
|
color: #fff; |
|
|
|
|
font-weight: 600; |
|
|
|
|
} |
|
|
|
|
.log-wrap { |
|
|
|
|
padding-bottom: 30px; |
|
|
|
|
} |
|
|
|
|
.logs { |
|
|
|
|
max-height: 250px; |
|
|
|
|
padding: 0 100px; |
|
|
|
|
margin: 30px 0; |
|
|
|
|
overflow: auto; |
|
|
|
|
} |
|
|
|
|
h6 { |
|
|
|
|
margin-bottom: 15px; |
|
|
|
|
font-size: 16px; |
|
|
|
|
color: #333; |
|
|
|
|
line-height: 1; |
|
|
|
|
} |
|
|
|
|
.more-wrap { |
|
|
|
|
padding: 0 60px; |
|
|
|
|
font-size: 14px; |
|
|
|
|
color: #333; |
|
|
|
|
text-align: center; |
|
|
|
|
} |
|
|
|
|
.know { |
|
|
|
|
margin-top: 15px; |
|
|
|
|
} |
|
|
|
|
.cover { |
|
|
|
|
max-width: 250px; |
|
|
|
|
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; |
|
|
|
|
} |
|
|
|
|
.index{ |
|
|
|
|
padding: 0; |
|
|
|
|
} |
|
|
|
|
.val { |
|
|
|
|
font-size: 15px; |
|
|
|
|
line-height: 1.8; |
|
|
|
|
white-space: pre-wrap; |
|
|
|
|
p { |
|
|
|
|
position: relative; |
|
|
|
|
font-size: 13px; |
|
|
|
|
color: #727272; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
</style> |