1. 新增:微信小程序端新增微信手机号登录功能(必须为企业认证小程序) 2. 新增:加入动态更新常见问题 3. 新增:新增小程序分享功能 4. 新增:小程序新增第一次登录需要修改密码 5. 新增:新增接口权限控制 6. 新增:用户新增is_staff用来判断是否为工作人员 7. 新增:软删除新增is_delete字段来判断,delete_datetime当前主要来记录时间 8. 更新:部分接口删除功能已更新,需要试用软删除的才会试用软删除 9. 更新:更新系统配置缓存功能 10. 更新:接口认证依赖项更新 11. 更新:获取系统基础配置信息与用户协议与隐私协议更新 12. 优化:优化接口与数据库操作
56 lines
1008 B
Vue
56 lines
1008 B
Vue
<template>
|
|
<view class="content">
|
|
<image v-if="logo" class="logo" :src="logoImage"></image>
|
|
<view class="text-area">
|
|
<text class="title">Hello {{ name }}</text>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import { wxShareMixins } from '@/common/mixins/share.js'
|
|
|
|
export default {
|
|
mixins: [wxShareMixins],
|
|
computed: {
|
|
name() {
|
|
return this.$store.state.auth.name
|
|
},
|
|
logo() {
|
|
return this.$store.state.app.logo
|
|
},
|
|
logoImage() {
|
|
return this.$store.state.app.logoImage
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
.logo {
|
|
height: 200rpx;
|
|
width: 200rpx;
|
|
margin-top: 200rpx;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
margin-bottom: 50rpx;
|
|
}
|
|
|
|
.text-area {
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
.title {
|
|
font-size: 36rpx;
|
|
color: #8f8f94;
|
|
}
|
|
}
|
|
}
|
|
</style>
|