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
| <template>
| <default-header-page-layout ref="page" title="出库">
| <template v-slot:footer>
| <view class="bottom-btns-row">
| <template>
| <div class="btn-frame"><u-button type="primary" text="确 定" @click="onSubmit"></u-button></div>
| </template>
| </view>
| </template>
|
| </default-header-page-layout>
| </template>
|
| <script>
| import DefaultHeaderPageLayout from '@/components/DefaultHeaderPageLayout.vue'
| export default {
| components: {
| DefaultHeaderPageLayout
|
| },
| data() {
| return {
|
| }
| },
| methods: {
|
| }
| }
| </script>
|
| <style>
|
| </style>
|
|