interface.uts 14.6 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
/**
 * 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: 不显示图标。
   */
  icon?: string | null,
  /**
   * 自定义图标的本地路径(app端暂不支持gif)
   */
  image?: string | null,
  /**
   * 是否显示透明蒙层,防止触摸穿透,默认:false
   */
  mask?: boolean | null,
  /**
   * 提示的延迟时间,单位毫秒,默认:1500
   */
  duration?: number | null,
  /**
   * 纯文本轻提示显示位置,填写有效值后只有 title 属性生效,且不支持通过 uni.hideToast 隐藏。
   * @description position值说明(仅App生效) top: 居上显示; center: 居中显示;bottom: 居底显示
   */
  position?: string | null,
  /**
   * 接口调用成功的回调函数
   */
  success?: ShowToastSuccessCallback | null,
  /**
   * 接口调用失败的回调函数
   */
  fail?: ShowToastFailCallback | null,
  /**
   * 接口调用结束的回调函数(调用成功、失败都会执行)
   */
  complete?: ShowToastCompleteCallback | null
}

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

/**
 * uni.hideToast函数定义
 * 隐藏toast
lizhongyi_'s avatar
lizhongyi_ 已提交
90
 *
91 92 93 94 95 96 97 98 99 100 101
 * @tutorial https://uniapp.dcloud.net.cn/api/ui/prompt.html#hidetoast
 * @uniPlatform {
 *    "app": {
 *        "android": {
 *            "osVer": "4.4.4",
 *            "uniVer": "√",
 *            "unixVer": "3.9.0"
 *        },
 *        "ios": {
 *            "osVer": "9.0",
 *            "uniVer": "√",
lizhongyi_'s avatar
lizhongyi_ 已提交
102
 *            "unixVer": "x"
103 104 105 106 107 108 109 110 111 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
 *   	  }
 *    }
 * }
 */
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
lizhongyi_'s avatar
lizhongyi_ 已提交
158 159
 *
 * @param {ShowLoadingOptions} options
160 161 162 163 164 165 166 167 168 169 170
 * @tutorial https://uniapp.dcloud.net.cn/api/ui/prompt.html#showloading
 * @uniPlatform {
 *    "app": {
 *        "android": {
 *            "osVer": "4.4.4",
 *            "uniVer": "√",
 *            "unixVer": "3.9.0"
 *        },
 *        "ios": {
 *            "osVer": "9.0",
 *            "uniVer": "√",
lizhongyi_'s avatar
lizhongyi_ 已提交
171
 *            "unixVer": "x"
172 173 174 175 176 177 178 179 180
 *   	  }
 *    }
 * }
 */
export type ShowLoading = (options: ShowLoadingOptions) => void

/**
 * uni.hideLoading函数定义
 * 隐藏loading
lizhongyi_'s avatar
lizhongyi_ 已提交
181
 *
182 183 184 185 186 187 188 189 190 191 192
 * @tutorial https://uniapp.dcloud.net.cn/api/ui/prompt.html#hideloading
 * @uniPlatform {
 *    "app": {
 *        "android": {
 *            "osVer": "4.4.4",
 *            "uniVer": "√",
 *            "unixVer": "3.9.0"
 *        },
 *        "ios": {
 *            "osVer": "9.0",
 *            "uniVer": "√",
lizhongyi_'s avatar
lizhongyi_ 已提交
193
 *            "unixVer": "x"
194 195 196
 *   	  }
 *    }
 * }
lizhongyi_'s avatar
lizhongyi_ 已提交
197
 *
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 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 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
 */
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"
   */
  cancelColor?: string | null,
  /**
   * 确定按钮的文字,默认为"确定"
   */
  confirmText?: string | null,
  /**
   * 确定按钮的文字颜色
   */
  confirmColor?: string | null,
  /**
   * @default false
   * 是否显示输入框
   */
  editable?: boolean | null,
  /**
   * 显示输入框时的提示文本
   */
  placeholderText?: string | null,
  /**
   * 接口调用成功的回调函数
   */
  success?: ShowModalSuccessCallback | null,
  /**
   * 接口调用失败的回调函数
   */
  fail?: ShowModalFailCallback | null,
  /**
   * 接口调用结束的回调函数(调用成功、失败都会执行)
   */
  complete?: ShowModalCompleteCallback | null
}

/**
 * uni.showModal 函数定义
lizhongyi_'s avatar
lizhongyi_ 已提交
289
 *
290
 * 弹出modal
lizhongyi_'s avatar
lizhongyi_ 已提交
291 292
 *
 * @param {ShowModalOptions} options
293 294 295 296 297 298 299 300 301 302 303
 * @tutorial https://uniapp.dcloud.net.cn/api/ui/prompt.html#showmodal
 * @uniPlatform {
 *    "app": {
 *        "android": {
 *            "osVer": "4.4.4",
 *            "uniVer": "√",
 *            "unixVer": "3.9.0"
 *        },
 *        "ios": {
 *            "osVer": "9.0",
 *            "uniVer": "√",
lizhongyi_'s avatar
lizhongyi_ 已提交
304
 *            "unixVer": "x"
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 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 392
 *   	  }
 *    }
 * }
 */
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默认为系统控件颜色)
   */
  itemColor?: string | null,
  /**
   * 大屏设备弹出原生选择按钮框的指示区域,默认居中显示
   */
  popover?: Popover | null,
  /**
   * 接口调用成功的回调函数
   */
  success?: ShowActionSheetSuccessCallback | null,
  /**
   * 接口调用失败的回调函数
   */
  fail?: ShowActionSheetFailCallback | null,
  /**
   * 接口调用结束的回调函数(调用成功、失败都会执行)
   */
  complete?: ShowActionSheetCompleteCallback | null
}

/**
 * uni.showActionSheet函数定义
lizhongyi_'s avatar
lizhongyi_ 已提交
393
 *
394
 * 弹出actionSheet
lizhongyi_'s avatar
lizhongyi_ 已提交
395 396
 *
 * @param {ShowActionSheetOptions} options
397 398 399 400 401 402 403 404 405 406 407
 * @tutorial https://uniapp.dcloud.net.cn/api/ui/prompt.html#showactionsheet
 * @uniPlatform {
 *    "app": {
 *        "android": {
 *            "osVer": "4.4.4",
 *            "uniVer": "√",
 *            "unixVer": "3.9.0"
 *        },
 *        "ios": {
 *            "osVer": "9.0",
 *            "uniVer": "√",
lizhongyi_'s avatar
lizhongyi_ 已提交
408
 *            "unixVer": "x"
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440
 *   	  }
 *    }
 * }
 */
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": {
   *            "osVer": "4.4.4",
   *            "uniVer": "√",
   *            "unixVer": "3.9.0"
   *        },
   *        "ios": {
   *            "osVer": "9.0",
   *            "uniVer": "√",
lizhongyi_'s avatar
lizhongyi_ 已提交
441
   *            "unixVer": "x"
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
   *        }
   *    }
   * }
   */
  showToast(options: ShowToastOptions): void,
  /**
   * @description 隐藏消息提示框。
   * @example
   * ```typescript
   *    uni.hideToast();
   * ```
   * @tutorial [](https://uniapp.dcloud.net.cn/api/ui/prompt.html#hidetoast)
   * @uniPlatform {
   *    "app": {
   *        "android": {
   *            "osVer": "4.4.4",
   *            "uniVer": "√",
   *            "unixVer": "3.9.0"
   *        },
   *        "ios": {
   *            "osVer": "9.0",
   *            "uniVer": "√",
lizhongyi_'s avatar
lizhongyi_ 已提交
464
   *            "unixVer": "x"
465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492
   *        }
   *    }
   * }
   */
  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": {
   *            "osVer": "4.4.4",
   *            "uniVer": "√",
   *            "unixVer": "3.9.0"
   *        },
   *        "ios": {
   *            "osVer": "9.0",
   *            "uniVer": "√",
lizhongyi_'s avatar
lizhongyi_ 已提交
493
   *            "unixVer": "x"
494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
   *        }
   *    }
   * }
   */
  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": {
   *            "osVer": "4.4.4",
   *            "uniVer": "√",
   *            "unixVer": "3.9.0"
   *        },
   *        "ios": {
   *            "osVer": "9.0",
   *            "uniVer": "√",
lizhongyi_'s avatar
lizhongyi_ 已提交
523
   *            "unixVer": "x"
524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558
   *        }
   *    }
   * }
   */
  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": {
   *            "osVer": "4.4.4",
   *            "uniVer": "√",
   *            "unixVer": "3.9.0"
   *        },
   *        "ios": {
   *            "osVer": "9.0",
   *            "uniVer": "√",
lizhongyi_'s avatar
lizhongyi_ 已提交
559
   *            "unixVer": "x"
560 561 562 563 564 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
   *        }
   *    }
   * }
   */
  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": {
   *            "osVer": "4.4.4",
   *            "uniVer": "√",
   *            "unixVer": "3.9.0"
   *        },
   *        "ios": {
   *            "osVer": "9.0",
   *            "uniVer": "√",
lizhongyi_'s avatar
lizhongyi_ 已提交
591
   *            "unixVer": "x"
592 593 594 595 596 597
   *        }
   *    }
   * }
   */
  showActionSheet(options: ShowActionSheetOptions) : void
}