|
@@ -9,6 +9,7 @@ import closeIcon from './images/closeIcon.png';
|
|
import clockIcon from './images/clockIcon.png';
|
|
import clockIcon from './images/clockIcon.png';
|
|
import schoolDot from './images/schoolDot.png';
|
|
import schoolDot from './images/schoolDot.png';
|
|
import personIcon from './images/personIcon.png';
|
|
import personIcon from './images/personIcon.png';
|
|
|
|
+import iconAboutus from './images/icon-aboutus.png';
|
|
import { useUserStore } from '@/store/modules/users';
|
|
import { useUserStore } from '@/store/modules/users';
|
|
import inFront from './images/inFront.png';
|
|
import inFront from './images/inFront.png';
|
|
import inBack from './images/inBack.png';
|
|
import inBack from './images/inBack.png';
|
|
@@ -53,6 +54,9 @@ export default defineComponent({
|
|
showWord.value = true;
|
|
showWord.value = true;
|
|
userInfoStatus.value = false;
|
|
userInfoStatus.value = false;
|
|
};
|
|
};
|
|
|
|
+ const aboutUs = () => {
|
|
|
|
+ router.push({ path: '/aboutUs' });
|
|
|
|
+ };
|
|
const body = document.querySelector('body');
|
|
const body = document.querySelector('body');
|
|
if (body) {
|
|
if (body) {
|
|
body.className = 'myBody body';
|
|
body.className = 'myBody body';
|
|
@@ -301,13 +305,20 @@ export default defineComponent({
|
|
) : null}
|
|
) : null}
|
|
|
|
|
|
<div class={styles.propWrapItem} onClick={() => resetPwd()}>
|
|
<div class={styles.propWrapItem} onClick={() => resetPwd()}>
|
|
- {' '}
|
|
|
|
<NImage
|
|
<NImage
|
|
class={styles.smallIcon}
|
|
class={styles.smallIcon}
|
|
src={clockIcon}
|
|
src={clockIcon}
|
|
previewDisabled></NImage>
|
|
previewDisabled></NImage>
|
|
<p class={styles.smallTitle}>修改密码</p>
|
|
<p class={styles.smallTitle}>修改密码</p>
|
|
</div>
|
|
</div>
|
|
|
|
+
|
|
|
|
+ <div class={styles.propWrapItem} onClick={() => aboutUs()}>
|
|
|
|
+ <NImage
|
|
|
|
+ class={styles.smallIcon}
|
|
|
|
+ src={iconAboutus}
|
|
|
|
+ previewDisabled></NImage>
|
|
|
|
+ <p class={styles.smallTitle}>关于我们</p>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
<div
|
|
<div
|
|
class={styles.logoutInfo}
|
|
class={styles.logoutInfo}
|