| 123456789101112131415161718 |
- // pages/me/me.js
- import {
- getApi,
- postApi
- } from "../../apis/api"
- import cloudApi from "../../apis/cloudApi"
- Page({
- data: {
- },
- async getCargoOwnerInfo() {
- let res = await cloudApi('getOpenId')
- console.log(res)
- },
- onLoad() {
- this.getCargoOwnerInfo()
- }
- })
|