InspectionCleaning/pages/templates.vue

31 lines
445 B
Vue
Raw Normal View History

2025-04-07 09:30:11 +08:00
<template>
<view class="content">
<view class="">
</view>
</view>
</template>
<script>
import {toast, clearStorageSync, setStorageSync, getStorageSync, useRouter} from '@/utils/utils.js'
export default {
data() {
return {
id: 0
}
},
onLoad(op) {
//this.id = op.id
},
onShow() {
},
onReady() {
},
methods: {
}
}
</script>
<style lang="scss" scoped>
page{background:#f2f2f2}
.content{padding: 20rpx;}
</style>