| 123456789101112131415 |
- // pages/shipOwnerManage/shipOwnerList/shipOwnerList.js
- import {
- postApi
- } from "../../../apis/api"
- Page({
- data: {
- phone: ''
- },
- async checkShipOwner() {
- let res = await postApi('/ship/search/shipOwner', {
- phone: this.data.phone
- })
- console.log(res)
- }
- })
|