wupengfei
2025-02-18 a261170567648a5b425077049835ce8b7fb0c466
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<template>
  <ContentScrollView :paddingH="false">
    <List>
      <ListItem title="健康证" @click="handleEdit"> </ListItem>
      <ListItem title="健康证" @click="handleEdit"> </ListItem>
      <ListItem title="健康证" @click="handleEdit"> </ListItem>
      <ListItem title="健康证" @click="handleEdit"> </ListItem>
      <ListItem title="健康证" @click="handleEdit"> </ListItem>
      <ListItem title="健康证" @click="handleEdit"> </ListItem>
    </List>
  </ContentScrollView>
  <PageFooter>
    <PageFooterBtn type="primary" @click="handleAdd">添加证书</PageFooterBtn>
  </PageFooter>
</template>
 
<script setup lang="ts">
import { useUser } from '@/hooks';
import { List, ListItem } from '@12333/components';
import Taro from '@tarojs/taro';
import { RouterPath } from '@/constants';
 
defineOptions({
  name: 'InnerPage',
});
 
const { userDetail } = useUser();
 
const form = reactive({
  workYear: '',
});
 
function handleAdd() {
  Taro.navigateTo({
    url: RouterPath.mineCertificateAddOrEdit,
  });
}
function handleEdit() {}
</script>
 
<style lang="scss">
@import '@/styles/common.scss';
</style>