123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <view>
- <web-view :src="webscr"></web-view>
- </view>
- </template>
- <script>
- const app = getApp();
- export default {
- data() {
- return {
- user: [],
- webscr: '',
- };
- },
- onLoad: function(e) {
- let _this = this;
- _this.$request.get('member.getkefuurl',{orderid:e.orderid}).then(res => {
- if (res.errno == 0) {
- _this.webscr = res.data.url;
- }
- });
- },
- methods: {},
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function() {
- setTimeout(() => {
- uni.stopPullDownRefresh()
- }, 200);
- },
- };
- </script>
- <style>
- page {
- background-color: #fafafa;
- font-size: 32rpx;
- }
- </style>
|