曹睿
2025-04-18 60deadf038123d057c38f3ba8da48f8e2517806c
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" />
    <wireForm 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 wireForm from "./wireForm.vue";
 
const handleSubmit = () => {};
</script>
<style lang="scss" scoped>
.footer {
  margin: 20px 16px 0 16px;
}
</style>