环卫车小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
296 B

5 months ago
  1. <template>
  2. <view></view>
  3. </template>
  4. <script>
  5. export default{
  6. components:{
  7. },
  8. data(){
  9. return{
  10. }
  11. },
  12. onLoad(options) {
  13. if(options.shareId){
  14. uni.setStorageSync('shareId',options.shareId)
  15. uni.switchTab({
  16. url:"/pages/home/index"
  17. })
  18. }
  19. }
  20. }
  21. </script>