| 12345678910111213141516171819202122232425262728293031 |
- <template>
- <view class="detail">
- 详情
- </view>
- </template>
- <script>
- import {
- Details
- } from '../../api/home.js';
- export default {
- onLoad(options) {
- console.log(options.ids)
- this.init(options.ids);
- },
- data(){
- return {
-
- }
- },
- methods:{
- async init(val) {
- let res = await Details(val)
- console.log(res);
- }
- }
- }
- </script>
- <style>
- </style>
|