[本时生活h5端]

This commit is contained in:
2023-06-21 17:19:58 +08:00
commit ebb9575bd0
284 changed files with 39689 additions and 0 deletions

22
pages/washcar/washcar.vue Normal file
View File

@@ -0,0 +1,22 @@
<template>
<view>
<web-view :src="url"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
url: '' // h5连接地址
}
},
onLoad(options) {
this.url = decodeURIComponent(options.url)
},
methods:{}
}
</script>
<style>
</style>