chore: bump 2.0.0.rc.16

This commit is contained in:
vben
2021-01-12 23:12:05 +08:00
parent cdf0a600e5
commit 3571eb4c47
7 changed files with 21 additions and 13 deletions

View File

@@ -16,7 +16,7 @@
<div :class="`${prefixCls}-entry`" v-show="!showDate">
<div :class="`${prefixCls}-entry-content`">
<div :class="`${prefixCls}-entry__header`">
<img src="/@/assets/images/header.jpg" :class="`${prefixCls}-entry__header-img`" />
<img :src="headerImg" :class="`${prefixCls}-entry__header-img`" />
<p :class="`${prefixCls}-entry__header-name`">{{ realName }}</p>
</div>
<InputPassword :placeholder="t('sys.lock.placeholder')" v-model:value="password" />
@@ -70,6 +70,7 @@
import { useDesign } from '/@/hooks/web/useDesign';
import { LockOutlined } from '@ant-design/icons-vue';
import headerImg from '/@/assets/images/header.jpg';
export default defineComponent({
name: 'LockPage',
@@ -129,6 +130,7 @@
showDate,
password: passwordRef,
handleShowForm,
headerImg,
...state,
};
},