createOrder.vue 393 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <view class="">
  3. <loading ref="loading" type="3"/>
  4. <web-view :src="src"></web-view>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. name: '',
  10. data() {
  11. return {
  12. src: ''
  13. };
  14. },
  15. onLoad(options) {
  16. this.$refs.loading.showLoading()
  17. this.src=options.url +'?goodsId='+options.goodsId
  18. },
  19. methods: {
  20. }
  21. };
  22. </script>
  23. <style lang="scss" scoped>
  24. </style>