123456789101112131415161718192021 |
- <!-- 空白支付页面 -->
- <template>
- <web-view :src="url"></web-view>
- </template>
- <script setup>
- import { reactive, ref } from 'vue';
- const price = ref(0.01);
- const url = ref(
- 'https://mall.niusenyun.com/static/payDemo/cashier.html?price=' +
- price.value +
- '&code=' +
- localStorage.getItem('code') +
- '&type=' +
- localStorage.getItem('type') +
- '&state=' +
- localStorage.getItem('state'),
- );
- </script>
- <style></style>
|