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
| <template>
| <view>
| <ProductCard />
| <view class="mx-3">
| <wd-grid class="rounded-lg" clickable>
| <wd-grid-item
| icon="computer"
| link-type="navigateTo"
| url="/pages/production/report/wire"
| text="报工"
| />
| <wd-grid-item icon="chart" text="自检" />
| <wd-grid-item icon="tips" text="杂工" />
| <wd-grid-item
| icon="wallet"
| link-type="navigateTo"
| url="/pages/production/receive/index"
| text="材料领用"
| />
| </wd-grid>
| </view>
| </view>
| </template>
|
| <script lang="ts" setup>
| import ProductCard from "@/components/product_card/index.vue";
| </script>
|
| <style lang="scss" scoped></style>
|
|