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
| <template>
| <view>
| <ProductCard />
| <view class="mx-3">
| <wd-grid class="rounded-lg" clickable>
| <wd-grid-item
| icon="computer"
| link-type="navigateTo"
| url="/pages/production/twist/report/index"
| text="报工"
| />
| <!-- <wd-grid-item
| icon="chart"
| text="自检"
| link-type="navigateTo"
| url="/pages/production/twist/selfInspect/index"
| /> -->
| <wd-grid-item
| icon="tips"
| link-type="navigateTo"
| url="/pages/production/twist/backman/index"
| text="杂工"
| />
| <wd-grid-item
| icon="wallet"
| link-type="navigateTo"
| url="/pages/production/twist/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>
|
|