曹睿
2025-04-23 76bee36dc9da0e09276f93d03c424e07e9608ea3
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>
    <CardTitle title="绞线盘具领用" :hideAction="false" />
    <PlateForm 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 lang="ts" setup>
import CardTitle from "@/components/card-title/index.vue";
import PlateForm from "./form.vue";
 
const handleSubmit = () => {};
</script>
<style lang="scss" scoped>
.footer {
  margin: 20px 16px 0 16px;
}
</style>