interface.uts 15.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
/**
 * uni.showToast成功回调参数
 */
export type ShowToastSuccess = {
}

/**
 * uni.showToast成功回调函数定义
 */
export type ShowToastSuccessCallback = (res: ShowToastSuccess) => void
/**
 * uni.showToast失败回调函数定义
 */
export type ShowToastFailCallback = (res: UniError) => void
/**
 * uni.showToast完成回调函数定义
 */
export type ShowToastCompleteCallback = (res: any) => void

/**
 * uni.showToast参数定义
 */
export type ShowToastOptions = {
  /**
   * 提示的内容,长度与 icon 取值有关。
   */
  title: string,
  /**
   * 图标,有效值详见下方说明,默认:success。
   * @description icon值说明 success: 显示成功图标,error: 显示错误图标; fail: 显示错误图标,此时title文本无长度显示; exception: 显示异常图标,此时title文本无长度显示; loading: 显示加载图标;none: 不显示图标。
   */
DCloud-yyl's avatar
DCloud-yyl 已提交
32
  icon?: "success" | "error" | "fail" | "exception" | "loading" | "none" | null,
33 34 35
  /**
   * 自定义图标的本地路径(app端暂不支持gif)
   */
DCloud-yyl's avatar
DCloud-yyl 已提交
36
  image?: string.ImageURIString | null,
37 38 39 40 41 42 43 44 45 46 47 48
  /**
   * 是否显示透明蒙层,防止触摸穿透,默认:false
   */
  mask?: boolean | null,
  /**
   * 提示的延迟时间,单位毫秒,默认:1500
   */
  duration?: number | null,
  /**
   * 纯文本轻提示显示位置,填写有效值后只有 title 属性生效,且不支持通过 uni.hideToast 隐藏。
   * @description position值说明(仅App生效) top: 居上显示; center: 居中显示;bottom: 居底显示
   */
DCloud-yyl's avatar
DCloud-yyl 已提交
49
  position?: "top" | "center" | "bottom" | null,
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
  /**
   * 接口调用成功的回调函数
   */
  success?: ShowToastSuccessCallback | null,
  /**
   * 接口调用失败的回调函数
   */
  fail?: ShowToastFailCallback | null,
  /**
   * 接口调用结束的回调函数(调用成功、失败都会执行)
   */
  complete?: ShowToastCompleteCallback | null
}

/**
 * uni.showToast函数定义
DCloud-yyl's avatar
DCloud-yyl 已提交
66 67 68
 * 弹出toast  
 * 
 * @param {ShowToastOptions} options 
69 70 71 72
 * @tutorial https://uniapp.dcloud.net.cn/api/ui/prompt.html#showtoast
 * @uniPlatform {
 *    "app": {
 *        "android": {
DCloud-yyl's avatar
DCloud-yyl 已提交
73
 *            "osVer": "5.0",
74 75 76 77 78 79
 *            "uniVer": "√",
 *            "unixVer": "3.9.0"
 *        },
 *        "ios": {
 *            "osVer": "9.0",
 *            "uniVer": "√",
DCloud-yyl's avatar
DCloud-yyl 已提交
80
 *            "unixVer": "3.9.0"
81
 *   	  }
DCloud-yyl's avatar
DCloud-yyl 已提交
82 83 84 85
 *    },
 *    "web": {
 *        "uniVer": "√",
 *        "unixVer": "4.0"
86 87 88 89 90 91 92 93
 *    }
 * }
 */
export type ShowToast = (options: ShowToastOptions) => void

/**
 * uni.hideToast函数定义
 * 隐藏toast
DCloud-yyl's avatar
DCloud-yyl 已提交
94
 * 
95 96 97 98
 * @tutorial https://uniapp.dcloud.net.cn/api/ui/prompt.html#hidetoast
 * @uniPlatform {
 *    "app": {
 *        "android": {
DCloud-yyl's avatar
DCloud-yyl 已提交
99
 *            "osVer": "5.0",
100 101 102 103 104 105
 *            "uniVer": "√",
 *            "unixVer": "3.9.0"
 *        },
 *        "ios": {
 *            "osVer": "9.0",
 *            "uniVer": "√",
DCloud-yyl's avatar
DCloud-yyl 已提交
106
 *            "unixVer": "3.9.0"
107
 *   	  }
DCloud-yyl's avatar
DCloud-yyl 已提交
108 109 110 111
 *    },
 *    "web": {
 *        "uniVer": "√",
 *        "unixVer": "4.0"
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
 *    }
 * }
 */
export type HideToast = () => void


/**
 * uni.showLoading成功回调参数
 */
export type ShowLoadingSuccess = {
}

/**
 * uni.showLoading成功回调函数定义
 */
export type ShowLoadingSuccessCallback = (res: ShowLoadingSuccess) => void
/**
 * uni.showLoading失败回调函数定义
 */
export type ShowLoadingFailCallback = (res: UniError) => void
/**
 * uni.showLoading完成回调函数定义
 */
export type ShowLoadingCompleteCallback = (res: any) => void

/**
 * uni.showLoading参数定义
 */
export type ShowLoadingOptions = {
  /**
   * 提示的内容,长度与 icon 取值有关。
   */
  title: string,
  /**
   * 是否显示透明蒙层,防止触摸穿透,默认:false
   */
  mask?: boolean | null,
  /**
   * 接口调用成功的回调函数
   */
  success?: ShowLoadingSuccessCallback | null,
  /**
   * 接口调用失败的回调函数
   */
  fail?: ShowLoadingFailCallback | null,
  /**
   * 接口调用结束的回调函数(调用成功、失败都会执行)
   */
  complete?: ShowLoadingCompleteCallback | null
}

/**
 * uni.showLoading函数定义
 * 弹出loading
DCloud-yyl's avatar
DCloud-yyl 已提交
166 167
 * 
 * @param {ShowLoadingOptions} options 
168 169 170 171
 * @tutorial https://uniapp.dcloud.net.cn/api/ui/prompt.html#showloading
 * @uniPlatform {
 *    "app": {
 *        "android": {
DCloud-yyl's avatar
DCloud-yyl 已提交
172
 *            "osVer": "5.0",
173 174 175 176 177 178
 *            "uniVer": "√",
 *            "unixVer": "3.9.0"
 *        },
 *        "ios": {
 *            "osVer": "9.0",
 *            "uniVer": "√",
DCloud-yyl's avatar
DCloud-yyl 已提交
179
 *            "unixVer": "3.9.0"
180
 *   	  }
DCloud-yyl's avatar
DCloud-yyl 已提交
181 182 183 184
 *    },
 *    "web": {
 *        "uniVer": "√",
 *        "unixVer": "4.0"
185 186 187 188 189 190 191 192
 *    }
 * }
 */
export type ShowLoading = (options: ShowLoadingOptions) => void

/**
 * uni.hideLoading函数定义
 * 隐藏loading
DCloud-yyl's avatar
DCloud-yyl 已提交
193
 * 
194 195 196 197
 * @tutorial https://uniapp.dcloud.net.cn/api/ui/prompt.html#hideloading
 * @uniPlatform {
 *    "app": {
 *        "android": {
DCloud-yyl's avatar
DCloud-yyl 已提交
198
 *            "osVer": "5.0",
199 200 201 202 203 204
 *            "uniVer": "√",
 *            "unixVer": "3.9.0"
 *        },
 *        "ios": {
 *            "osVer": "9.0",
 *            "uniVer": "√",
DCloud-yyl's avatar
DCloud-yyl 已提交
205
 *            "unixVer": "3.9.0"
206
 *   	  }
DCloud-yyl's avatar
DCloud-yyl 已提交
207 208 209 210
 *    },
 *    "web": {
 *        "uniVer": "√",
 *        "unixVer": "4.0"
211 212
 *    }
 * }
DCloud-yyl's avatar
DCloud-yyl 已提交
213
 * 
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
 */
export type HideLoading = () => void

/**
 * uni.showModal 成功回调参数
 */
export type ShowModalSuccess = {
  /**
   * 为 true 时,表示用户点击了确定按钮
   */
  confirm: boolean,
  /**
   * 为 true 时,表示用户点击了取消(用于 Android 系统区分点击蒙层关闭还是点击取消按钮关闭)
   */
  cancel: boolean,
  /**
   * editable 为 true 时,用户输入的文本
   */
  content: string | null
}

/**
 * uni.showModal成功回调函数定义
 */
export type ShowModalSuccessCallback = (res: ShowModalSuccess) => void
/**
 * uni.showModal失败回调函数定义
 */
export type ShowModalFailCallback = (res: UniError) => void
/**
 * uni.showModal完成回调函数定义
 */
export type ShowModalCompleteCallback = (res: any) => void
/**
 * uni.showModal 参数定义
 */
export type ShowModalOptions = {
  /**
   * 提示的标题
   */
  title?: string | null,
  /**
   * 提示的内容
   */
  content?: string | null,
  /**
   * @default true
   * 是否显示取消按钮,默认为 true
   */
  showCancel?: boolean | null,
  /**
   * 取消按钮的文字,默认为"取消"
   */
  cancelText?: string | null,
  /**
   * 取消按钮的文字颜色,默认为"#000000"
   */
DCloud-yyl's avatar
DCloud-yyl 已提交
271
  cancelColor?: string.ColorString | null,
272 273 274 275 276 277 278
  /**
   * 确定按钮的文字,默认为"确定"
   */
  confirmText?: string | null,
  /**
   * 确定按钮的文字颜色
   */
DCloud-yyl's avatar
DCloud-yyl 已提交
279
  confirmColor?: string.ColorString | null,
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
  /**
   * @default false
   * 是否显示输入框
   */
  editable?: boolean | null,
  /**
   * 显示输入框时的提示文本
   */
  placeholderText?: string | null,
  /**
   * 接口调用成功的回调函数
   */
  success?: ShowModalSuccessCallback | null,
  /**
   * 接口调用失败的回调函数
   */
  fail?: ShowModalFailCallback | null,
  /**
   * 接口调用结束的回调函数(调用成功、失败都会执行)
   */
  complete?: ShowModalCompleteCallback | null
}

/**
 * uni.showModal 函数定义
DCloud-yyl's avatar
DCloud-yyl 已提交
305
 * 
306
 * 弹出modal
DCloud-yyl's avatar
DCloud-yyl 已提交
307 308
 * 
 * @param {ShowModalOptions} options 
309 310 311 312
 * @tutorial https://uniapp.dcloud.net.cn/api/ui/prompt.html#showmodal
 * @uniPlatform {
 *    "app": {
 *        "android": {
DCloud-yyl's avatar
DCloud-yyl 已提交
313
 *            "osVer": "5.0",
314 315 316 317 318 319
 *            "uniVer": "√",
 *            "unixVer": "3.9.0"
 *        },
 *        "ios": {
 *            "osVer": "9.0",
 *            "uniVer": "√",
DCloud-yyl's avatar
DCloud-yyl 已提交
320
 *            "unixVer": "3.9.0"
321
 *   	  }
DCloud-yyl's avatar
DCloud-yyl 已提交
322 323 324 325
 *    },
 *    "web": {
 *        "uniVer": "√",
 *        "unixVer": "4.0"
326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
 *    }
 * }
 */
export type ShowModal = (options: ShowModalOptions) => void

/**
 * uni.ShowActionSheet成功回调参数
 */
export type ShowActionSheetSuccess = {
  /**
   * 用户点击的按钮,从上到下的顺序,从0开始
   */
  tapIndex: number | null,
}

export type Popover = {
  /**
   * 指示区域坐标,使用原生 navigationBar 时一般需要加上 navigationBar 的高度
   */
  top: number,
  /**
   * 指示区域坐标
   */
  left: number,
  /**
   * 指示区域宽度
   */
  width: number,
  /**
   * 指示区域高度
   */
  height: number
}

/**
 * uni.showActionSheet成功回调函数定义
 */
export type ShowActionSheetSuccessCallback = (res: ShowActionSheetSuccess) => void
/**
 * uni.showActionSheet成功回调函数定义
 */
export type ShowActionSheetFailCallback = (res: UniError) => void
/**
 * uni.showActionSheet成功回调函数定义
 */
export type ShowActionSheetCompleteCallback = (res: any) => void

/**
 * uni.showActionSheet函数参数定义
 */
export type ShowActionSheetOptions = {
  /**
   * 菜单标题
   */
  title?: string | null,
  /**
   * 警示文案(同菜单标题, app无效)
   */
  alertText?: string | null,
  /**
   * 按钮的文字数组
   */
  itemList: string[],
  /**
   * 按钮的文字颜色,字符串格式(iOS默认为系统控件颜色)
   */
DCloud-yyl's avatar
DCloud-yyl 已提交
392
  itemColor?: string.ColorString | null,
393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412
  /**
   * 大屏设备弹出原生选择按钮框的指示区域,默认居中显示
   */
  popover?: Popover | null,
  /**
   * 接口调用成功的回调函数
   */
  success?: ShowActionSheetSuccessCallback | null,
  /**
   * 接口调用失败的回调函数
   */
  fail?: ShowActionSheetFailCallback | null,
  /**
   * 接口调用结束的回调函数(调用成功、失败都会执行)
   */
  complete?: ShowActionSheetCompleteCallback | null
}

/**
 * uni.showActionSheet函数定义
DCloud-yyl's avatar
DCloud-yyl 已提交
413
 * 
414
 * 弹出actionSheet
DCloud-yyl's avatar
DCloud-yyl 已提交
415 416
 * 
 * @param {ShowActionSheetOptions} options 
417 418 419 420
 * @tutorial https://uniapp.dcloud.net.cn/api/ui/prompt.html#showactionsheet
 * @uniPlatform {
 *    "app": {
 *        "android": {
DCloud-yyl's avatar
DCloud-yyl 已提交
421
 *            "osVer": "5.0",
422 423 424 425 426 427
 *            "uniVer": "√",
 *            "unixVer": "3.9.0"
 *        },
 *        "ios": {
 *            "osVer": "9.0",
 *            "uniVer": "√",
DCloud-yyl's avatar
DCloud-yyl 已提交
428
 *            "unixVer": "3.9.0"
429
 *   	  }
DCloud-yyl's avatar
DCloud-yyl 已提交
430 431 432 433
 *    },
*    "web": {
 *        "uniVer": "√",
 *        "unixVer": "4.0"
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457
 *    }
 * }
 */
export type ShowActionSheet = (options: ShowActionSheetOptions) => void


export interface Uni {
  /**
   * @description 显示消息提示框
   * @param {ShowToastOptions} option
   * @example
   * ```typescript
   *    uni.showToast({
   *        title: '标题',
   *        duration: 2000
   *    });
   * ```
   * @remark
   * - showLoading 和 showToast 同时只能显示一个
   * - showToast 应与 hideToast 配对使用
   * @tutorial [](https://uniapp.dcloud.net.cn/api/ui/prompt.html#showtoast)
   * @uniPlatform {
   *    "app": {
   *        "android": {
DCloud-yyl's avatar
DCloud-yyl 已提交
458
   *            "osVer": "5.0",
459 460 461 462 463 464
   *            "uniVer": "√",
   *            "unixVer": "3.9.0"
   *        },
   *        "ios": {
   *            "osVer": "9.0",
   *            "uniVer": "√",
DCloud-yyl's avatar
DCloud-yyl 已提交
465
   *            "unixVer": "3.9.0"
466
   *        }
DCloud-yyl's avatar
DCloud-yyl 已提交
467 468 469 470
   *    },
   *    "web": {
   *        "uniVer": "√",
   *        "unixVer": "4.0"
471 472 473 474 475 476 477 478 479 480 481 482 483 484
   *    }
   * }
   */
  showToast(options: ShowToastOptions): void,
  /**
   * @description 隐藏消息提示框。
   * @example
   * ```typescript
   *    uni.hideToast();
   * ```
   * @tutorial [](https://uniapp.dcloud.net.cn/api/ui/prompt.html#hidetoast)
   * @uniPlatform {
   *    "app": {
   *        "android": {
DCloud-yyl's avatar
DCloud-yyl 已提交
485
   *            "osVer": "5.0",
486 487 488 489 490 491
   *            "uniVer": "√",
   *            "unixVer": "3.9.0"
   *        },
   *        "ios": {
   *            "osVer": "9.0",
   *            "uniVer": "√",
DCloud-yyl's avatar
DCloud-yyl 已提交
492
   *            "unixVer": "3.9.0"
493
   *        }
DCloud-yyl's avatar
DCloud-yyl 已提交
494 495 496 497
   *    },
   *    "web": {
   *        "uniVer": "√",
   *        "unixVer": "4.0"
498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517
   *    }
   * }
   */
  hideToast(): void,
  /**
   * @description 显示 loading 提示框, 需主动调用 uni.hideLoading 才能关闭提示框。
   * @param {ShowLoadingOptions} option
   * @example
   * ```typescript
   *	uni.showLoading({
   *		title: '加载中'
   *	});
   * ```
   * @remark
   * - showLoading 和 showToast 同时只能显示一个
   * - showToast 应与 hideToast 配对使用
   * @tutorial [](https://uniapp.dcloud.net.cn/api/ui/prompt.html#showloading)
   * @uniPlatform {
   *    "app": {
   *        "android": {
DCloud-yyl's avatar
DCloud-yyl 已提交
518
   *            "osVer": "5.0",
519 520 521 522 523 524
   *            "uniVer": "√",
   *            "unixVer": "3.9.0"
   *        },
   *        "ios": {
   *            "osVer": "9.0",
   *            "uniVer": "√",
DCloud-yyl's avatar
DCloud-yyl 已提交
525
   *            "unixVer": "3.9.0"
526
   *        }
DCloud-yyl's avatar
DCloud-yyl 已提交
527 528 529 530
   *    },
   *    "web": {
   *        "uniVer": "√",
   *        "unixVer": "4.0"
531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551
   *    }
   * }
   */
  showLoading(options: ShowLoadingOptions): void,
  /**
   * @description 隐藏 loading 提示框。
   * @example
   * ```typescript
   *	uni.showLoading({
   *		title: '加载中'
   *	});
   *
   *	setTimeout(function () {
   *		uni.hideLoading();
   *	}, 2000);
   *
   * ```
   * @tutorial [](https://uniapp.dcloud.net.cn/api/ui/prompt.html#hideloading)
   * @uniPlatform {
   *    "app": {
   *        "android": {
DCloud-yyl's avatar
DCloud-yyl 已提交
552
   *            "osVer": "5.0",
553 554 555 556 557 558
   *            "uniVer": "√",
   *            "unixVer": "3.9.0"
   *        },
   *        "ios": {
   *            "osVer": "9.0",
   *            "uniVer": "√",
DCloud-yyl's avatar
DCloud-yyl 已提交
559
   *            "unixVer": "3.9.0"
560
   *        }
DCloud-yyl's avatar
DCloud-yyl 已提交
561 562 563 564
   *    },
   *    "web": {
   *        "uniVer": "√",
   *        "unixVer": "4.0"
565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591
   *    }
   * }
   */
  hideLoading():void,
  /**
   * @description 显示模态弹窗,可以只有一个确定按钮,也可以同时有确定和取消按钮。类似于一个API整合了 html 中:alert、confirm。
   * @param {ShowModalOptions} option
   * @example
   * ```typescript
   *	uni.showModal({
   *		title: '提示',
   *		content: '这是一个模态弹窗',
   *		success: function (res) {
   *			if (res.confirm) {
   *				console.log('用户点击确定');
   *			} else if (res.cancel) {
   *				console.log('用户点击取消');
   *			}
   *		}
   *	});
     *
   *
   * ```
   * @tutorial [](https://uniapp.dcloud.net.cn/api/ui/prompt.html#showmodal)
   * @uniPlatform {
   *    "app": {
   *        "android": {
DCloud-yyl's avatar
DCloud-yyl 已提交
592
   *            "osVer": "5.0",
593 594 595 596 597 598
   *            "uniVer": "√",
   *            "unixVer": "3.9.0"
   *        },
   *        "ios": {
   *            "osVer": "9.0",
   *            "uniVer": "√",
DCloud-yyl's avatar
DCloud-yyl 已提交
599
   *            "unixVer": "3.9.0"
600
   *        }
DCloud-yyl's avatar
DCloud-yyl 已提交
601 602 603 604
   *    },
   *    "web": {
   *        "uniVer": "√",
   *        "unixVer": "4.0"
605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627
   *    }
   * }
   */
  showModal(options: ShowModalOptions) :  void,
  /**
   * @description 从底部向上弹出操作菜单
   * @param {ShowActionSheetOptions} option
   * @example
   * ```typescript
   *	uni.showActionSheet({
   *		itemList: ['A', 'B', 'C'],
   *		success: function (res) {
   *			console.log('选中了第' + (res.tapIndex + 1) + '个按钮');
   *		},
   *		fail: function (res) {
   *			console.log(res.errMsg);
   *		}
   *	});
   * ```
   * @tutorial [](https://uniapp.dcloud.net.cn/api/ui/prompt.html#showactionsheet)
   * @uniPlatform {
   *    "app": {
   *        "android": {
DCloud-yyl's avatar
DCloud-yyl 已提交
628
   *            "osVer": "5.0",
629 630 631 632 633 634
   *            "uniVer": "√",
   *            "unixVer": "3.9.0"
   *        },
   *        "ios": {
   *            "osVer": "9.0",
   *            "uniVer": "√",
DCloud-yyl's avatar
DCloud-yyl 已提交
635
   *            "unixVer": "3.9.0"
636
   *        }
DCloud-yyl's avatar
DCloud-yyl 已提交
637 638 639 640
   *    },
   *    "web": {
   *        "uniVer": "√",
   *        "unixVer": "4.0"
641 642 643 644 645
   *    }
   * }
   */
  showActionSheet(options: ShowActionSheetOptions) : void
}