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
| <template>
| <view>
| <CardTitle title="编辑拉丝领用" :hideAction="false" />
| <ReceiveForm class="mx-4" />
| <view class="footer">
| <wd-button
| class="submit_btn"
| type="primary"
| size="large"
| block
| :round="false"
| @click="handleSubmit"
| >
| 保存
| </wd-button>
| </view>
| </view>
| </template>
|
| <script setup lang="ts">
| import CardTitle from "@/components/card-title/index.vue";
| import ReceiveForm from "./form.vue";
|
| const handleSubmit = () => {};
| </script>
|
| <style lang="scss" scoped>
| .footer {
| margin: 20px 16px 0 16px;
| }
| </style>
|
|