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
| <!--
| OA / 合同管理 / 采购合同
| 路由:/pages/oa/ContractManage/purchase-contract/index
| 说明:跳转至采购台账 /pages/procurementManagement/procurementLedger/index
| -->
| <template>
| <view class="redirect-page" />
| </template>
|
| <script setup>
| /** OA - 合同管理 - 采购合同(跳转采购台账) */
| import { onLoad } from "@dcloudio/uni-app";
|
| onLoad(() => {
| uni.redirectTo({
| url: "/pages/procurementManagement/procurementLedger/index",
| });
| });
| </script>
|
| <style scoped>
| .redirect-page {
| min-height: 100vh;
| background: #f8f9fa;
| }
| </style>
|
|