25 lines
543 B
Vue
25 lines
543 B
Vue
|
|
<template>
|
||
|
|
<BasicLayout>
|
||
|
|
<view class="p-15">
|
||
|
|
|
||
|
|
</view>
|
||
|
|
<template #bottom>
|
||
|
|
<view class="white-bg-color py-5">
|
||
|
|
<view class="flex-row items-center pb-10 pt-5">
|
||
|
|
<u-button text="取消" class="ml-15 mr-7" :plain="true" @click="navigateBack"/>
|
||
|
|
<u-button text="提交" class="mr-15 mr-7" type="primary" @click="submit"/>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</template>
|
||
|
|
</BasicLayout>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script lang="ts" setup>
|
||
|
|
|
||
|
|
import {navigateBack} from "@/utils/uniapp";
|
||
|
|
|
||
|
|
function submit() {
|
||
|
|
|
||
|
|
}
|
||
|
|
</script>
|