12345678910111213141516171819202122 |
- <!-- 订单列表 -->
- <template>
- <s-layout title="收银台">
- <view style="width: 100%;height: 100%;">
- <iframe :src="url" width="100%" height="98%"></iframe>
- </view>
- </s-layout>
- </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)
- console.log(url, 'ssssssssssssssssss')
- </script>
- <style>
- </style>
|