orderInfoList.vue 444 B

123456789101112131415161718
  1. <!-- 订单列表 -->
  2. <template>
  3. <web-view :src="url"></web-view>
  4. </template>
  5. <script setup>
  6. import {
  7. reactive,
  8. ref
  9. } from 'vue';
  10. const price = ref(0.01)
  11. const url = ref('https://massage.niusenyun.com/static/payDemo/cashier.html?price='+price.value+'&code='+localStorage.getItem('code')+'&type='+localStorage.getItem('type')+'&state='+localStorage.getItem('state'))
  12. console.log(url, 'ssssssssssssssssss')
  13. </script>
  14. <style>
  15. </style>