zhangwencui
2026-01-16 41c9d91da0c73303ea6f8eae03f030ce28b6cd1d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<template>
  <view class="container">
    <!-- 引入index.vue组件并传递参数 -->
    <ApprovalProcessIndex :approveType="7" />
  </view>
</template>
 
<script setup>
  import ApprovalProcessIndex from "./index.vue";
</script>
 
<style scoped>
  .container {
    width: 100%;
    height: 100%;
  }
</style>