|
@@ -7,6 +7,7 @@ import { useRoute } from 'vue-router'
|
|
|
import styles from './manage-detail.module.less'
|
|
|
import MenuFunction from './menu-function'
|
|
|
import iconTeacher from '@common/images/icon_teacher.png'
|
|
|
+import OSticky from '@/components/o-sticky'
|
|
|
|
|
|
export default defineComponent({
|
|
|
name: 'manage-detail',
|
|
@@ -84,7 +85,7 @@ export default defineComponent({
|
|
|
基本信息
|
|
|
</div>
|
|
|
|
|
|
- <CellGroup inset class={styles.detailCellGroup}>
|
|
|
+ <CellGroup inset class={[styles.detailCellGroup, styles.sectionCellGroup]}>
|
|
|
<Cell title={'手机号码'} value={detail.value.nickname}></Cell>
|
|
|
<Cell
|
|
|
title={'性别'}
|
|
@@ -114,21 +115,26 @@ export default defineComponent({
|
|
|
</>
|
|
|
)}
|
|
|
|
|
|
- <div class={['btnGroup', 'btnMore']} style={{ paddingLeft: '13px', paddingRight: '13px' }}>
|
|
|
- <Button type="primary" round onClick={() => (state.menuStatus = true)}>
|
|
|
- 修改权限
|
|
|
- </Button>
|
|
|
- <Button
|
|
|
- type="primary"
|
|
|
- round
|
|
|
- color="#64A9FF"
|
|
|
- onClick={() => (state.status = true)}
|
|
|
- // disabled={ ? false : true}
|
|
|
+ <OSticky position="bottom">
|
|
|
+ <div
|
|
|
+ class={['btnGroup', 'btnMore']}
|
|
|
+ style={{ paddingLeft: '13px', paddingRight: '13px' }}
|
|
|
>
|
|
|
- {detail.value.status === 'ACTIVATION' && '冻结账号'}
|
|
|
- {detail.value.status === 'LOCKED' && '解冻账号'}
|
|
|
- </Button>
|
|
|
- </div>
|
|
|
+ <Button type="primary" round onClick={() => (state.menuStatus = true)}>
|
|
|
+ 修改权限
|
|
|
+ </Button>
|
|
|
+ <Button
|
|
|
+ type="primary"
|
|
|
+ round
|
|
|
+ color="#64A9FF"
|
|
|
+ onClick={() => (state.status = true)}
|
|
|
+ // disabled={ ? false : true}
|
|
|
+ >
|
|
|
+ {detail.value.status === 'ACTIVATION' && '冻结账号'}
|
|
|
+ {detail.value.status === 'LOCKED' && '解冻账号'}
|
|
|
+ </Button>
|
|
|
+ </div>
|
|
|
+ </OSticky>
|
|
|
|
|
|
<OPopup v-model:modelValue={state.menuStatus} destroy>
|
|
|
<MenuFunction
|