commit 637b0bd1445ac8ab64e4205dc90a870922a066d0 Author: whwyy Date: Fri Jul 10 16:14:31 2026 +0800 ea diff --git a/miniprogram/app.json b/miniprogram/app.json new file mode 100644 index 0000000..5e9641c --- /dev/null +++ b/miniprogram/app.json @@ -0,0 +1,42 @@ +{ + "pages": [ + "pages/index/index", + "pages/myPackage/yjfk/index", + "pages/my/my", + "pages/history/history", + "pages/myPackage/edit/index", + "pages/myPackage/vip/index", + "pages/myPackage/bzzx/index", + "pages/myPackage/ysxy/index", + "pages/myPackage/golb/index", + "pages/historyPackage/historyDetail/index", + "pages/aiPackage/preview/index", + "pages/aiPackage/record/index", + "pages/aiPackage/bg/index", + "pages/aiPackage/gen/index" + ], + "window": { + "navigationBarTextStyle": "black", + "navigationBarTitleText": "Weixin", + "navigationBarBackgroundColor": "#ffffff" + }, + "style": "v2", + "componentFramework": "glass-easel", + "lazyCodeLoading": "requiredComponents", + "tabBar": { + "list": [ + { + "pagePath": "pages/index/index", + "text": "首页" + }, + { + "pagePath": "pages/history/history", + "text": "创作记录" + }, + { + "pagePath": "pages/my/my", + "text": "我的" + } + ] + } +} \ No newline at end of file diff --git a/miniprogram/app.ts b/miniprogram/app.ts new file mode 100644 index 0000000..d2c66f6 --- /dev/null +++ b/miniprogram/app.ts @@ -0,0 +1,14 @@ +import { customEvent } from "./utils/event"; +import { event } from "./utils/util"; + +// app.ts +App({ + globalData: {}, + onLaunch(op) { + // 展示本地存储能力 + wx.setStorageSync('scene', +op.scene); + + customEvent.on('update:user:info', event.user.update); + customEvent.emmit('update:user:info', null); + } +}) \ No newline at end of file diff --git a/miniprogram/app.wxss b/miniprogram/app.wxss new file mode 100644 index 0000000..e9d6461 --- /dev/null +++ b/miniprogram/app.wxss @@ -0,0 +1,19 @@ +/**app.wxss**/ +.container { + height: 100%; + display: flex; + flex-direction: column; + align-items: center; + justify-content: space-between; + padding: 200rpx 0; + box-sizing: border-box; +} + +image.icon-placeholder { + display: block !important; + flex-shrink: 0 !important; + background: none !important; + border: 0 !important; + box-shadow: none !important; + transform: none !important; +} diff --git a/miniprogram/components/checkin-popup/checkin-popup.json b/miniprogram/components/checkin-popup/checkin-popup.json new file mode 100644 index 0000000..a89ef4d --- /dev/null +++ b/miniprogram/components/checkin-popup/checkin-popup.json @@ -0,0 +1,4 @@ +{ + "component": true, + "usingComponents": {} +} diff --git a/miniprogram/components/checkin-popup/checkin-popup.ts b/miniprogram/components/checkin-popup/checkin-popup.ts new file mode 100644 index 0000000..91577dc --- /dev/null +++ b/miniprogram/components/checkin-popup/checkin-popup.ts @@ -0,0 +1,65 @@ +import { resetuserinfocache, sign, userInfo } from "../../utils/request" + +Component({ + properties: { + visible: { + type: Boolean, + value: false, + }, + reward: { + type: Number, + value: 30, + }, + streakDays: { + type: Number, + value: 7, + }, + }, + data: { + days: [ + { day: 1, label: '1天', today: false }, + { day: 2, label: '2天', today: false }, + { day: 3, label: '3天', today: false }, + { day: 4, label: '4天', today: false }, + { day: 5, label: '5天', today: false }, + { day: 6, label: '6天', today: false }, + { day: 7, label: '今天', today: true }, + ], + userInfo: null as any, + }, + + lifetimes: { + attached() { + this.setData({ userInfo: wx.getStorageSync('userInfo') }) + }, + detached() { + + } + }, + + methods: { + noop() { }, + handleOverlayTap() { + this.handleClose() + }, + handleClose() { + this.triggerEvent('close') + }, + sign() { + if (this.data.userInfo.is_sign) { + return; + } + sign().then((res: any) => { + if (!res.code) { + this.triggerEvent('close') + resetuserinfocache(this); + } else { + wx.showModal({ title: '温馨提示', content: res.message }); + } + }) + }, + handleRule() { + this.triggerEvent('rule') + }, + }, +}) diff --git a/miniprogram/components/checkin-popup/checkin-popup.wxml b/miniprogram/components/checkin-popup/checkin-popup.wxml new file mode 100644 index 0000000..a963033 --- /dev/null +++ b/miniprogram/components/checkin-popup/checkin-popup.wxml @@ -0,0 +1,19 @@ + + + + + + + {{item.label}} + + + + + + + + + + + + diff --git a/miniprogram/components/checkin-popup/checkin-popup.wxss b/miniprogram/components/checkin-popup/checkin-popup.wxss new file mode 100644 index 0000000..6725eb6 --- /dev/null +++ b/miniprogram/components/checkin-popup/checkin-popup.wxss @@ -0,0 +1,129 @@ +.checkin-overlay { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1000; + display: flex; + align-items: center; + justify-content: center; + padding: 32rpx 0; + background: rgba(0, 0, 0, 0.5); + box-sizing: border-box; +} + +.disabled { + background-color: grey; +} + +.checkin-popup { + position: relative; + width: 670rpx; + overflow: hidden; + border-radius: 32rpx; +} + +.popup-bg { + width: 100%; + display: block; +} + +.days-row { + position: absolute; + top: 700rpx; + left: 70rpx; + right: 56rpx; + height: 140rpx; + display: flex; + align-items: flex-start; + justify-content: space-between; + box-sizing: border-box; +} + +.day-item { + position: relative; + width: 58rpx; + height: 132rpx; + display: flex; + flex-direction: column; + align-items: center; + color: #4b4f5d; + box-sizing: border-box; +} + +.day-item.today { + width: 72rpx; + height: 136rpx; + margin-top: -16rpx; + padding-top: 16rpx; + border-radius: 30rpx; + color: #7a4cff; + background: #e4cdfd; +} + +.day-label { + height: 24rpx; + line-height: 24rpx; + font-size: 19rpx; + font-weight: 600; + white-space: nowrap; +} + +.day-coin { + width: 50rpx; + height: 50rpx; + margin-top: 17rpx; + display: block; +} + +.day-check { + width: 24rpx; + height: 24rpx; + margin-top: -8rpx; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + background: #754cff; + box-shadow: 0 2rpx 6rpx rgba(117, 76, 255, 0.24); +} + +.day-check text { + width: 10rpx; + height: 6rpx; + border-left: 3rpx solid #ffffff; + border-bottom: 3rpx solid #ffffff; + transform: rotate(-45deg) translate(1rpx, -1rpx); + box-sizing: border-box; +} + +.close-hotspot, +.receive-hotspot, +.rule-hotspot { + position: absolute; + z-index: 2; +} + +.close-hotspot { + top: 32rpx; + right: 28rpx; + width: 84rpx; + height: 84rpx; + border-radius: 50%; +} + +.receive-hotspot { + left: 44rpx; + right: 44rpx; + bottom: 100rpx; + height: 104rpx; + border-radius: 52rpx; +} + +.rule-hotspot { + left: 190rpx; + right: 190rpx; + bottom: 22rpx; + height: 62rpx; +} diff --git a/miniprogram/components/custom-nav/custom-nav.json b/miniprogram/components/custom-nav/custom-nav.json new file mode 100644 index 0000000..a89ef4d --- /dev/null +++ b/miniprogram/components/custom-nav/custom-nav.json @@ -0,0 +1,4 @@ +{ + "component": true, + "usingComponents": {} +} diff --git a/miniprogram/components/custom-nav/custom-nav.ts b/miniprogram/components/custom-nav/custom-nav.ts new file mode 100644 index 0000000..81f78c5 --- /dev/null +++ b/miniprogram/components/custom-nav/custom-nav.ts @@ -0,0 +1,48 @@ +Component({ + options: { + multipleSlots: true, + }, + properties: { + contentHeight: { + type: Number, + value: 44, + }, + paddingX: { + type: Number, + value: 0, + }, + background: { + type: String, + value: 'transparent', + }, + }, + data: { + statusBarHeight: 0, + navHeight: 44, + }, + lifetimes: { + attached() { + this.updateNavMetrics() + }, + }, + methods: { + updateNavMetrics() { + const systemInfo = wx.getSystemInfoSync() + const statusBarHeight = systemInfo.statusBarHeight || 0 + const contentHeight = Number(this.data.contentHeight) || 44 + const navHeight = statusBarHeight + contentHeight + + this.setData({ + statusBarHeight, + navHeight, + }) + + this.triggerEvent('ready', { + statusBarHeight, + contentHeight, + navHeight, + }) + }, + }, +}) + diff --git a/miniprogram/components/custom-nav/custom-nav.wxml b/miniprogram/components/custom-nav/custom-nav.wxml new file mode 100644 index 0000000..329fe9e --- /dev/null +++ b/miniprogram/components/custom-nav/custom-nav.wxml @@ -0,0 +1,8 @@ + + + + + diff --git a/miniprogram/components/custom-nav/custom-nav.wxss b/miniprogram/components/custom-nav/custom-nav.wxss new file mode 100644 index 0000000..93179d5 --- /dev/null +++ b/miniprogram/components/custom-nav/custom-nav.wxss @@ -0,0 +1,15 @@ +.custom-nav { + width: 100%; + flex: 0 0 auto; + display: flex; + flex-direction: column; + box-sizing: border-box; +} + +.custom-nav__content { + width: 100%; + flex: 1; + display: flex; + align-items: center; + box-sizing: border-box; +} diff --git a/miniprogram/components/vip-popup/vip-popup.json b/miniprogram/components/vip-popup/vip-popup.json new file mode 100644 index 0000000..a89ef4d --- /dev/null +++ b/miniprogram/components/vip-popup/vip-popup.json @@ -0,0 +1,4 @@ +{ + "component": true, + "usingComponents": {} +} diff --git a/miniprogram/components/vip-popup/vip-popup.ts b/miniprogram/components/vip-popup/vip-popup.ts new file mode 100644 index 0000000..f38cdaf --- /dev/null +++ b/miniprogram/components/vip-popup/vip-popup.ts @@ -0,0 +1,169 @@ +import { updatesessionkey, userInfo, vips, vipVirtualPayment } from "../../utils/request" + +interface VipPlan { + id: number + name: string + price: number + desc: string + recommend?: boolean + selected: boolean +} + +Component({ + properties: { + visible: { + type: Boolean, + value: false, + }, + }, + data: { + benefits: [ + { title: '更低生成成本', desc: '享受更多优惠', iconClass: 'cost-icon' }, + { title: '专属会员标识', desc: '尊享身份标识', iconClass: 'badge-icon' }, + { title: '优先体验新功能', desc: '抢先体验特权', iconClass: 'flash-icon' }, + ], + plans: [ + { id: 1, name: '月卡会员', price: 25, desc: '¥25/月', selected: false }, + { id: 2, name: '半年卡会员', price: 98, desc: '¥16.3/月', selected: false }, + { id: 3, name: '年卡会员', price: 168, desc: '¥14/月', recommend: true, selected: true }, + { id: 4, name: '终身会员', price: 298, desc: '一次付费\n永久使用', selected: false }, + ] as VipPlan[], + selectedPackage: null as VipPlan | null + }, + + lifetimes: { + attached() { + vips().then((res: any) => { + if (!res.code) { + let array = []; + for (let q = 0; q < res.data.length; q++) { + let item = res.data[q]; + item.price = (+item.price).toFixed(0); + array.push(item); + } + this.setData({ plans: array }); + } + }) + }, + detached() { + + } + }, + + attached() { + vips().then((res: any) => { + if (!res.code) { + let array = []; + for (let q = 0; q < res.data.length; q++) { + let item = res.data[q]; + item.price = (+item.price).toFixed(0); + array.push(item); + } + this.setData({ plans: array }); + } + }) + }, + detached() { + + }, + + pageLifetimes: { + + }, + + methods: { + noop() { }, + handleOverlayTap() { + this.handleClose() + }, + handleClose() { + this.triggerEvent('close') + }, + handlePlanTap(e: WechatMiniprogram.TouchEvent) { + const id = e.currentTarget.dataset.id + + this.data.plans.forEach((value, i) => { + if (id == value.id) { + console.log(value); + this.setData({ + selectedPackage: value, + }) + } + }) + }, + handleConfirm() { + this.handleBuy() + }, + + handleBuy() { + const that = this; + if (that.data.selectedPackage == null) { + return; + } + wx.showLoading({ title: '处理中...', mask: true }); + wx.checkSession({ + success() { + that.payment(); + }, + fail() { + wx.login({ + success(login) { + updatesessionkey(login.code).then((res: any) => { + if (!res.code) { + that.payment(); + } else { + wx.showModal({ + title: '温馨提示', + content: res.message, + showCancel: false + }) + } + }) + } + }) + + wx.hideLoading(); + } + }) + }, + + payment() { + let that = this; + vipVirtualPayment((that.data.selectedPackage || { id: 0 }).id).then((res: any) => { + wx.requestVirtualPayment({ + signData: JSON.stringify(res.param.signData), + paySig: res.param.paySig, + signature: res.param.signature, + mode: res.param.mode, + success(result: any) { + wx.hideLoading(); + console.log(result) + + userInfo().then((res: any) => { + if (!res.code) { + wx.setStorageSync('userInfo', res.data); + that.setData({ userInfo: res.data }); + } + }) + }, + fail(error: any) { + wx.hideLoading(); + console.log(error); + wx.showModal({ + title: '温馨提示', + content: '支付失败', + showCancel: false + }) + } + }); + }).catch(() => { + wx.hideLoading(); + wx.showModal({ + title: '温馨提示', + content: '系统繁忙, 请稍后再试', + showCancel: false + }) + }) + } + }, +}) diff --git a/miniprogram/components/vip-popup/vip-popup.wxml b/miniprogram/components/vip-popup/vip-popup.wxml new file mode 100644 index 0000000..57b5212 --- /dev/null +++ b/miniprogram/components/vip-popup/vip-popup.wxml @@ -0,0 +1,64 @@ + + + + + + + + + + 立即赠送 + 300 + 金币 + + + + 平台每天赠送 + 30 + 金币 + (仅当天有效) + + + + + + + + + 推荐 + {{item.title}} + + ¥ + {{item.price}} + + {{item.price}}/月 + + + + + + + + + + + + 暂不需要 + + + + + + + + diff --git a/miniprogram/components/vip-popup/vip-popup.wxss b/miniprogram/components/vip-popup/vip-popup.wxss new file mode 100644 index 0000000..e6e89b1 --- /dev/null +++ b/miniprogram/components/vip-popup/vip-popup.wxss @@ -0,0 +1,228 @@ +.vip-overlay { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 999; + display: flex; + align-items: center; + justify-content: center; + background: rgba(0, 0, 0, 0.58); + box-sizing: border-box; +} + +.vip-popup { + position: relative; + width: 706rpx; + height: 1130rpx; + max-height: 92vh; + overflow: visible; + background: transparent; + box-sizing: border-box; +} + +.vip-bg { + position: absolute; + top: 0; + left: 0; + z-index: 0; + width: 706rpx; + height: auto; + display: block; +} + +.close-hotspot { + position: absolute; + top: 112rpx; + right: 24rpx; + z-index: 5; + width: 72rpx; + height: 72rpx; +} + +.vip-content { + position: relative; + z-index: 2; + height: 100%; + display: flex; + flex-direction: column; + box-sizing: border-box; + padding-top: 284rpx; +} + +.gift-list { + display: flex; + flex-direction: column; + gap: 68rpx; + padding-left: 208rpx; + box-sizing: border-box; +} + +.gift-copy { + display: flex; + align-items: baseline; + gap: 9rpx; + height: 58rpx; + color: #321708; + font-size: 27rpx; + font-weight: 900; + white-space: nowrap; +} + +.highlight { + color: #f18a0a; + font-size: 42rpx; + font-style: italic; +} + +.orange-note { + color: #f18400; + font-size: 24rpx; +} + +.plan-section { + display: flex; + flex-direction: column; + align-items: center; + margin-top: 220rpx; +} + +.plan-scroll { + width: 706rpx; + height: 218rpx; + white-space: nowrap; +} + +.plan-track { + height: 218rpx; + padding: 0 52rpx; + display: flex; + gap: 14rpx; + box-sizing: border-box; +} + +.plan-card { + position: relative; + width: 142rpx; + height: 214rpx; + border-radius: 14rpx; + display: inline-flex; + flex-direction: column; + align-items: center; + justify-content: center; + flex-shrink: 0; + overflow: hidden; + border: 1rpx solid #e7dcf2; + background: linear-gradient(180deg, #fffefe, #fbf9ff); + box-sizing: border-box; +} + +.plan-card.selected { + border: 0; + background: transparent; +} + +.plan-selected-bg { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 0; + width: 100%; + height: 100%; + display: block; +} + +.recommend-ribbon { + display: none; +} + +.plan-name, +.price-row, +.plan-desc { + position: relative; + z-index: 1; +} + +.plan-name { + color: #25170d; + font-size: 23rpx; + font-weight: 900; +} + +.price-row { + margin-top: 20rpx; + display: flex; + align-items: baseline; + color: #7047ee; +} + +.selected .price-row { + color: #f08d09; +} + +.currency { + font-size: 24rpx; + font-weight: 900; +} + +.price { + font-size: 48rpx; + line-height: 1; + font-weight: 900; +} + +.plan-desc { + margin-top: 18rpx; + color: #7f7f86; + font-size: 20rpx; + line-height: 1.25; + text-align: center; + white-space: pre-line; +} + +.dots { + display: flex; + align-items: center; + justify-content: center; + gap: 14rpx; + margin-top: 22rpx; +} + +.dot { + width: 12rpx; + height: 12rpx; + border-radius: 999rpx; + background: #dedee2; +} + +.dot.active { + width: 36rpx; + background: #764ef7; +} + +.action-section { + display: flex; + flex-direction: column; + align-items: center; + margin-top: 24rpx; +} + +.vip-btn { + width: 590rpx; + height: auto; + display: block; +} + +.skip-btn { + margin-top: 20rpx; + color: #8e8e94; + font-size: 24rpx; + font-weight: 800; + text-align: center; +} + + + diff --git a/miniprogram/pages/aiPackage/bg/index.json b/miniprogram/pages/aiPackage/bg/index.json new file mode 100644 index 0000000..b4acf56 --- /dev/null +++ b/miniprogram/pages/aiPackage/bg/index.json @@ -0,0 +1,6 @@ +{ + "usingComponents": { + "custom-nav": "/components/custom-nav/custom-nav" + }, + "navigationStyle": "custom" +} diff --git a/miniprogram/pages/aiPackage/bg/index.ts b/miniprogram/pages/aiPackage/bg/index.ts new file mode 100644 index 0000000..5c3e623 --- /dev/null +++ b/miniprogram/pages/aiPackage/bg/index.ts @@ -0,0 +1,103 @@ +import { backgroundTemplates, updateTaskBackground } from "../../../utils/request" + +type Category = { + id: string + name: string +} + +type BgTemplate = { + id: number + name: string + scene: string + category: string + coverUrl?: string + imageUrl?: string + videoUrl?: string + isRecommend?: number +} + +function filterTemplates(category: string, templates: BgTemplate[]) { + if (category === 'all') return templates + return templates.filter((item) => item.category === category) +} + +Page({ + data: { + taskId: '', + categories: [] as Category[], + activeCategory: 'all', + selectedTemplate: 0, + allTemplates: [] as BgTemplate[], + templates: [] as BgTemplate[], + loading: false, + }, + + onLoad(options: any) { + this.setData({ taskId: options.taskId || options.taskid || '' }) + this.loadBackgroundTemplates() + }, + + loadBackgroundTemplates() { + this.setData({ loading: true }) + backgroundTemplates().then((res: any) => { + const categories = res && !res.code && res.data ? (res.data.categories || []) : [] + const templates = res && !res.code && res.data ? (res.data.templates || []) : [] + const selectedTemplate = templates.length ? Number(templates[0].id) : 0 + this.setData({ + categories, + allTemplates: templates, + templates: filterTemplates(this.data.activeCategory, templates), + selectedTemplate, + loading: false, + }) + }).catch(() => { + this.setData({ loading: false }) + wx.showModal({ title: '温馨提示', content: '背景模板加载失败,请稍后再试', showCancel: false }) + }) + }, + + handleBack() { + wx.navigateBack({ + fail: () => wx.navigateTo({ url: '/pages/aiPackage/record/index' }), + }) + }, + + handleCategorySelect(e: WechatMiniprogram.TouchEvent) { + const activeCategory = e.currentTarget.dataset.id + if (!activeCategory) return + + const templates = filterTemplates(activeCategory, this.data.allTemplates) + this.setData({ activeCategory, templates }) + }, + + handleTemplateSelect(e: WechatMiniprogram.TouchEvent) { + const selectedTemplate = Number(e.currentTarget.dataset.id || 0) + if (selectedTemplate <= 0) return + + this.setData({ selectedTemplate }) + }, + + handleConfirm() { + if (!this.data.taskId) { + wx.showModal({ title: '温馨提示', content: '创作记录不存在', showCancel: false }) + return + } + if (this.data.selectedTemplate <= 0) { + wx.showModal({ title: '温馨提示', content: '请选择背景模板', showCancel: false }) + return + } + + wx.showLoading({ mask: true, title: '保存背景中' }) + updateTaskBackground(this.data.taskId, this.data.selectedTemplate).then((res: any) => { + wx.hideLoading() + if (!res.code) { + wx.redirectTo({ url: '/pages/aiPackage/gen/index?taskId=' + encodeURIComponent(this.data.taskId) }) + } else { + wx.showModal({ title: '温馨提示', content: res.message || '背景保存失败', showCancel: false }) + } + }).catch(() => { + wx.hideLoading() + wx.showModal({ title: '温馨提示', content: '网络异常,请稍后再试', showCancel: false }) + }) + }, +}) diff --git a/miniprogram/pages/aiPackage/bg/index.wxml b/miniprogram/pages/aiPackage/bg/index.wxml new file mode 100644 index 0000000..d3f91e5 --- /dev/null +++ b/miniprogram/pages/aiPackage/bg/index.wxml @@ -0,0 +1,44 @@ + + + + + + 选择背景模板 + 选择适合你视频内容的场景背景 + + + + + + + + + {{item.name}} + + + + + + + + + + + + + + {{item.name}} + + + + + + + 确认背景,去生成 + + \ No newline at end of file diff --git a/miniprogram/pages/aiPackage/bg/index.wxss b/miniprogram/pages/aiPackage/bg/index.wxss new file mode 100644 index 0000000..32495a2 --- /dev/null +++ b/miniprogram/pages/aiPackage/bg/index.wxss @@ -0,0 +1,367 @@ +page { + min-height: 100vh; + background: #f8faff; + color: #111827; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif; +} + +.bg-page { + width: 750rpx; + height: 100vh; + margin: 0 auto; + display: flex; + flex-direction: column; + box-sizing: border-box; + background: + radial-gradient(circle at 12% 0%, rgba(104, 126, 255, 0.08), transparent 34%), + radial-gradient(circle at 88% 10%, rgba(130, 86, 255, 0.08), transparent 30%), + linear-gradient(180deg, #fbfcff 0%, #f6f8ff 44%, #ffffff 100%); +} + +.bg-nav { + width: 100%; + height: 100%; + display: flex; + align-items: center; + justify-content: space-between; +} + +.nav-back, +.nav-space { + width: 60rpx; + height: 60rpx; + flex: 0 0 60rpx; + display: flex; + align-items: center; +} + +.nav-back text { + width: 26rpx; + height: 26rpx; + display: block; + border-left: 5rpx solid #111827; + border-bottom: 5rpx solid #111827; + transform: rotate(45deg); + box-sizing: border-box; +} + +.nav-title-wrap { + flex: 1; + min-width: 0; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + gap: 10rpx; +} + +.nav-title { + color: #111827; + font-size: 34rpx; + line-height: 40rpx; + font-weight: 900; +} + +.nav-subtitle { + max-width: 560rpx; + color: #6c7284; + font-size: 22rpx; + line-height: 28rpx; + font-weight: 600; + text-align: center; + white-space: nowrap; +} + +.bg-content { + flex: 1; + display: flex; + overflow-y: hidden; + flex-direction: column; + padding: 20rpx 18rpx 34rpx; + box-sizing: border-box; +} + +.category-scroll { + width: 100%; + flex: 0 0 auto; + white-space: nowrap; +} +.auto-flex { + height: 100%; + display: flex; + flex-direction: row; + flex-wrap: wrap; + justify-content: space-between; +} +.category-list { + display: flex; + align-items: center; + gap: 10rpx; + padding: 2rpx 0 26rpx; +} + +.category-item { + height: 46rpx; + padding: 0 18rpx; + display: flex; + align-items: center; + justify-content: center; + border: 2rpx solid #e0e4f2; + border-radius: 24rpx; + background: #ffffff; + color: #656d80; + font-size: 21rpx; + line-height: 28rpx; + font-weight: 800; + box-sizing: border-box; + white-space: nowrap; + flex: 0 0 auto; +} + +.category-active { + border-color: #7462ff; + color: #ffffff; + background: linear-gradient(100deg, #6b83ff 0%, #754df3 100%); + box-shadow: 0 8rpx 18rpx rgba(101, 85, 246, 0.2); +} + +.template-grid { + display: flex; + flex-wrap: wrap; + flex: 1; + overflow-y: auto; + justify-content: space-between; + row-gap: 30rpx; + padding: 0 0 34rpx; + box-sizing: border-box; +} + +.template-card { + width: 326rpx; + display: flex; + flex-direction: column; + border: 2rpx solid transparent; + border-radius: 14rpx; + margin-bottom: 20rpx; + background: #ffffff; + box-shadow: 0 12rpx 30rpx rgba(83, 92, 151, 0.12); + box-sizing: border-box; + overflow: hidden; +} + +.template-active { + border-color: #765eff; + box-shadow: 0 12rpx 30rpx rgba(101, 85, 246, 0.22); +} + +.scene-preview { + height: 166rpx; + padding: 12rpx 14rpx; + display: flex; + flex-wrap: wrap; + align-content: space-between; + justify-content: space-between; + box-sizing: border-box; + overflow: hidden; +} + +.scene-window, +.scene-light, +.scene-plant, +.scene-main { + flex: 0 0 auto; +} + +.scene-window { + width: 96rpx; + height: 56rpx; + border-radius: 4rpx; + background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(225, 238, 250, 0.72) 100%); + box-shadow: inset 0 0 0 2rpx rgba(255, 255, 255, 0.5); +} + +.scene-light { + width: 54rpx; + height: 66rpx; + border-radius: 28rpx 28rpx 10rpx 10rpx; + background: linear-gradient(180deg, rgba(255, 246, 210, 0.9), rgba(226, 170, 92, 0.35)); +} + +.scene-plant { + width: 44rpx; + height: 62rpx; + border-radius: 28rpx 28rpx 8rpx 8rpx; + background: + radial-gradient(circle at 30% 28%, #7db66d 0 10rpx, transparent 11rpx), + radial-gradient(circle at 68% 36%, #679f5d 0 12rpx, transparent 13rpx), + linear-gradient(180deg, transparent 0 42rpx, #b48354 43rpx 100%); +} + +.plant-right { + transform: scale(0.82); +} + +.scene-main { + width: 160rpx; + height: 54rpx; + border-radius: 10rpx 10rpx 4rpx 4rpx; + background: rgba(255, 255, 255, 0.72); + box-shadow: inset 0 -8rpx 0 rgba(188, 158, 120, 0.18); +} + +.scene-live { + background: + linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0 2rpx, transparent 2rpx 100%), + linear-gradient(180deg, #fff4df 0%, #f9ead4 48%, #dfc09a 100%); +} + +.scene-office { + background: + linear-gradient(90deg, rgba(150, 168, 184, 0.16) 0 2rpx, transparent 2rpx 64rpx), + linear-gradient(180deg, #eff6fb 0%, #dfe7ec 52%, #c8d2d9 100%); +} + +.scene-office .scene-main { + width: 178rpx; + background: linear-gradient(180deg, #f8fbfd 0%, #cbd7df 100%); +} + +.scene-classroom { + background: linear-gradient(180deg, #fff4df 0%, #f4dfbf 52%, #d6b98c 100%); +} + +.scene-classroom .scene-main { + width: 184rpx; + height: 58rpx; + background: + linear-gradient(180deg, #4d7555 0%, #315b3b 100%); + box-shadow: 0 18rpx 0 rgba(140, 98, 56, 0.32); +} + +.scene-emotion { + background: linear-gradient(180deg, #ffe2be 0%, #e5b379 52%, #b57945 100%); +} + +.scene-emotion .scene-main, +.scene-life .scene-main { + width: 178rpx; + height: 52rpx; + border-radius: 30rpx 30rpx 12rpx 12rpx; + background: linear-gradient(180deg, #f5dfc9 0%, #d1a78a 100%); +} + +.scene-product { + background: linear-gradient(180deg, #f8dbb5 0%, #dfb076 55%, #b9844f 100%); +} + +.scene-product .scene-main { + width: 174rpx; + height: 58rpx; + border-radius: 50%; + background: radial-gradient(circle at 50% 34%, #fff1d7 0%, #c8965e 66%, #9e6e3c 100%); +} + +.scene-life { + background: linear-gradient(180deg, #fff6e9 0%, #ead8bd 54%, #c9ab81 100%); +} + +.template-foot { + height: 62rpx; + padding: 0 18rpx; + display: flex; + align-items: center; + justify-content: space-between; + gap: 12rpx; + box-sizing: border-box; +} + +.template-foot text { + flex: 1; + min-width: 0; + color: #222633; + font-size: 25rpx; + line-height: 32rpx; + font-weight: 900; + white-space: nowrap; +} + +.template-active .template-foot text { + color: #6559ff; +} + +.select-circle { + width: 34rpx; + height: 34rpx; + display: flex; + align-items: center; + justify-content: center; + border: 3rpx solid #d4d8e8; + border-radius: 50%; + background: rgba(255, 255, 255, 0.9); + box-sizing: border-box; + flex: 0 0 34rpx; +} + +.top-circle { + margin-left: auto; +} + +.foot-circle { + width: 32rpx; + height: 32rpx; +} + +.circle-active { + border-color: #7363ff; + background: linear-gradient(135deg, #7089ff 0%, #7a4df4 100%); +} + +.circle-active text { + width: 14rpx; + height: 8rpx; + display: block; + border-left: 4rpx solid #ffffff; + border-bottom: 4rpx solid #ffffff; + transform: rotate(-45deg); + box-sizing: border-box; +} + +.confirm-action { + height: 86rpx; + display: flex; + align-items: center; + justify-content: center; + border-radius: 16rpx; + color: #ffffff; + background: linear-gradient(100deg, #4e84ff 0%, #7d3ff3 100%); + box-shadow: 0 14rpx 28rpx rgba(91, 86, 245, 0.24); + font-size: 29rpx; + line-height: 36rpx; + font-weight: 900; +} + +.scene-placeholder { + width: 100%; + height: 100%; +} + +.icon-placeholder { + display: block; + flex-shrink: 0; + background: none; + border: 0; + box-shadow: none; + transform: none; +} + +.scene-preview { + position: relative; + padding: 0; + background: #ffffff; +} + +.top-circle { + position: absolute; + top: 12rpx; + right: 14rpx; +} diff --git a/miniprogram/pages/aiPackage/gen/index.json b/miniprogram/pages/aiPackage/gen/index.json new file mode 100644 index 0000000..b4acf56 --- /dev/null +++ b/miniprogram/pages/aiPackage/gen/index.json @@ -0,0 +1,6 @@ +{ + "usingComponents": { + "custom-nav": "/components/custom-nav/custom-nav" + }, + "navigationStyle": "custom" +} diff --git a/miniprogram/pages/aiPackage/gen/index.ts b/miniprogram/pages/aiPackage/gen/index.ts new file mode 100644 index 0000000..9ef81ad --- /dev/null +++ b/miniprogram/pages/aiPackage/gen/index.ts @@ -0,0 +1,74 @@ +import { taskinfo } from "../../../utils/request" + +function createTaskId() { + return `task_${Date.now()}` +} + +Page({ + + data: { + taskinfo: null as any, + userinfo: null, + price: 40, + start: false + }, + + onLoad(ops: { taskId: string }) { + this.setData({ userinfo: wx.getStorageSync('userInfo') }) + taskinfo(ops.taskId).then((res: any) => { + console.log(res); + if (!res.code) { + this.setData({ taskinfo: res.data }); + } + }) + }, + + handleBack() { + wx.navigateBack({ + fail: () => wx.navigateTo({ url: '/pages/aiPackage/bg/index' }), + }) + }, + + handleViewScript() { + wx.showToast({ title: '展示完整文案', icon: 'none' }) + }, + + handleGenerate() { + if (!this.data.taskinfo) { + return; + } + let task_no = this.data.taskinfo.task_no || ''; + const detailUrl = `/pages/historyPackage/historyDetail/index?status=processing&taskId=${encodeURIComponent(task_no)}` + + let userinfo = wx.getStorageSync('userinfo'); + if (userinfo.diamond < this.data.price) { + wx.showModal({ title: '温馨提示', content: '余额不足' }) + return; + } + + this.setData({ start: true }) + + // wx.redirectTo({ url: detailUrl }) + }, + + handleDownload() { + // wx.showToast({ title: '开始下载', icon: 'none' }) + wx.downloadFile({ + url: '', + success(res) { + wx.showModal({ title: '温馨提示', content: '下载成功' }) + } + }) + }, + + handleRegenerate() { + // wx.showToast({ title: '重新生成', icon: 'none' }) + }, + + handleHome() { + wx.switchTab({ + url: '/pages/index/index', + }) + }, +}) + diff --git a/miniprogram/pages/aiPackage/gen/index.wxml b/miniprogram/pages/aiPackage/gen/index.wxml new file mode 100644 index 0000000..517a2ac --- /dev/null +++ b/miniprogram/pages/aiPackage/gen/index.wxml @@ -0,0 +1,105 @@ + + + + + 生成视频 + + + + + + + + + 生成确认 + + + 数字人形象 + + + + 背景模板 + 清新直播间 + + + 音色 + + + 已上传专属音色 + + + + 文案摘要 + + {{ taskinfo.script_text }} + + 查看完整文案 + + + + + + + + + + 本次生成消耗 + {{price}}金币 + + + 当前余额 + + {{userinfo.diamond}}金币 + + {{userinfo.diamond < price? '余额不足' : '余额充足'}} + + + + + + 一键生成数字人视频 + + + + + + + 生成结果 + + + + + + + + + + + + + + + + + 下载视频 + + + + + 重新生成 + + + + 返回首页 + + + + + + 视频已为你自动保存到【创作记录】 + + + + diff --git a/miniprogram/pages/aiPackage/gen/index.wxss b/miniprogram/pages/aiPackage/gen/index.wxss new file mode 100644 index 0000000..09da1be --- /dev/null +++ b/miniprogram/pages/aiPackage/gen/index.wxss @@ -0,0 +1,590 @@ +page { + min-height: 100vh; + background: #f8faff; + color: #111827; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif; +} + +.gen-page { + width: 750rpx; + min-height: 100vh; + margin: 0 auto; + display: flex; + flex-direction: column; + box-sizing: border-box; + background: + radial-gradient(circle at 12% 0%, rgba(104, 126, 255, 0.08), transparent 34%), + radial-gradient(circle at 88% 8%, rgba(130, 86, 255, 0.08), transparent 30%), + linear-gradient(180deg, #fbfcff 0%, #f6f8ff 46%, #ffffff 100%); +} + +.gen-nav { + width: 100%; + height: 100%; + display: flex; + align-items: center; + justify-content: space-between; + gap: 16rpx; +} + +.nav-back { + width: 60rpx; + height: 60rpx; + display: flex; + align-items: center; + flex: 0 0 60rpx; +} + +.nav-back text { + width: 26rpx; + height: 26rpx; + display: block; + border-left: 5rpx solid #111827; + border-bottom: 5rpx solid #111827; + transform: rotate(45deg); + box-sizing: border-box; +} + +.nav-title { + flex: 1; + min-width: 0; + color: #111827; + font-size: 34rpx; + line-height: 42rpx; + font-weight: 900; + text-align: center; +} + +.coin-pill { + height: 50rpx; + padding: 0 16rpx; + display: flex; + align-items: center; + justify-content: center; + gap: 8rpx; + /* border: 2rpx solid #eef0fb; */ + border-radius: 28rpx; + /* background: rgba(255, 255, 255, 0.88); */ + /* box-shadow: 0 8rpx 18rpx rgba(93, 102, 158, 0.12); */ + color: #111827; + font-size: 22rpx; + line-height: 28rpx; + font-weight: 800; + flex: 0 0 auto; +} + +.coin-icon { + width: 30rpx; + height: 30rpx; + display: flex; + align-items: center; + justify-content: center; + border-radius: 50%; + color: #ffffff; + background: linear-gradient(135deg, #ffd45d 0%, #ffa51f 100%); + font-size: 17rpx; + font-weight: 900; +} + +.coin-count { + color: #6657ff; +} + +.gen-content { + flex: 1; + display: flex; + flex-direction: column; + gap: 18rpx; + padding: 30rpx; + box-sizing: border-box; + justify-content: space-between; +} + +.confirm-card, +.cost-card { + width: 100%; + display: flex; + flex-direction: column; + border: 2rpx solid #e6e9ff; + border-radius: 16rpx; + background: rgba(255, 255, 255, 0.96); + box-shadow: 0 14rpx 34rpx rgba(80, 92, 170, 0.08); + box-sizing: border-box; +} + +.confirm-card { + padding: 22rpx 28rpx 10rpx; +} + +.card-title { + color: #111827; + font-size: 27rpx; + line-height: 34rpx; + font-weight: 900; + padding-bottom: 18rpx; + border-bottom: 2rpx solid #edf0f8; +} + +.info-list { + display: flex; + flex-direction: column; +} + +.info-row { + min-height: 62rpx; + display: flex; + align-items: center; + justify-content: space-between; + gap: 20rpx; + border-bottom: 2rpx solid #edf0f8; +} + +.info-row:last-child { + border-bottom: 0; +} + +.avatar-row { + min-height: 72rpx; +} + +.info-label { + flex: 0 0 160rpx; + color: #303748; + font-size: 24rpx; + line-height: 32rpx; + font-weight: 900; +} + +.info-value, +.voice-value, +.script-summary { + flex: 1; + min-width: 0; + display: flex; + align-items: center; + justify-content: flex-end; + color: #41495b; + font-size: 24rpx; + line-height: 32rpx; + font-weight: 700; + text-align: right; +} + +.small-avatar { + width: 58rpx; + height: 58rpx; + border-radius: 10rpx; + background: + radial-gradient(circle at 50% 33%, #ffe1d2 0 17rpx, transparent 18rpx), + radial-gradient(circle at 50% 34%, #33201b 0 24rpx, transparent 25rpx), + linear-gradient(180deg, #eef4ff 0%, #ffffff 100%); + flex: 0 0 58rpx; +} + +.voice-value { + gap: 10rpx; +} + +.voice-icon { + width: 28rpx; + height: 28rpx; + display: flex; + align-items: center; + justify-content: center; + color: #6d58ff; + flex: 0 0 28rpx; +} + +.voice-icon::before, +.voice-icon::after, +.voice-icon text { + content: ''; + width: 5rpx; + border-radius: 5rpx; + background: #6d58ff; +} + +.voice-icon::before { height: 18rpx; } +.voice-icon text { height: 28rpx; margin: 0 4rpx; display: block; } +.voice-icon::after { height: 20rpx; } + +.script-row { + align-items: flex-start; + padding: 16rpx 0; +} + +.script-summary { + flex-direction: column; + align-items: flex-end; + gap: 10rpx; + line-height: 34rpx; +} + +.view-script { + display: flex; + align-items: center; + gap: 10rpx; + color: #7062ff; + font-size: 23rpx; + font-weight: 800; +} + +.right-arrow { + width: 14rpx; + height: 14rpx; + border-right: 4rpx solid #7062ff; + border-top: 4rpx solid #7062ff; + transform: rotate(45deg); + box-sizing: border-box; +} + +.cost-card { + padding: 12rpx 24rpx 22rpx; + background: linear-gradient(100deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 255, 248, 0.92) 100%); + margin-bottom: calc(10rpx + env(safe-area-inset-bottom)); +} + +.cost-row { + min-height: 52rpx; + display: flex; + align-items: center; + justify-content: space-between; + border-bottom: 2rpx solid rgba(224, 229, 242, 0.75); + color: #303748; + font-size: 24rpx; + line-height: 32rpx; + font-weight: 900; +} + +.amount, +.balance-line, +.enough { + display: flex; + align-items: center; +} + +.amount { + gap: 10rpx; + color: #111827; +} + +.amount text:first-child { + font-size: 32rpx; + line-height: 38rpx; + font-weight: 900; +} + +.amount text:last-child { + font-size: 23rpx; + font-weight: 800; +} + +.balance-line { + gap: 22rpx; +} + +.enough { + gap: 8rpx; + color: #40bf83; + font-size: 21rpx; + line-height: 28rpx; + font-weight: 900; +} + +.enough-waring { + gap: 8rpx; + color: red; + font-size: 21rpx; + line-height: 28rpx; + font-weight: 900; +} + +.enough text:first-child { + width: 26rpx; + height: 26rpx; + border-radius: 50%; + background: #42c982; +} + +.enough text:first-child::after { + content: ''; + width: 11rpx; + height: 7rpx; + margin: 7rpx auto 0; + display: block; + border-left: 3rpx solid #ffffff; + border-bottom: 3rpx solid #ffffff; + transform: rotate(-45deg); + box-sizing: border-box; +} + +.generate-action { + height: 66rpx; + margin-top: 14rpx; + display: flex; + align-items: center; + justify-content: center; + gap: 12rpx; + border-radius: 12rpx; + color: #ffffff; + background: linear-gradient(100deg, #4e84ff 0%, #7d3ff3 100%); + box-shadow: 0 12rpx 24rpx rgba(91, 86, 245, 0.22); + font-size: 27rpx; + line-height: 34rpx; + font-weight: 900; +} + +.sparkle { + width: 28rpx; + height: 28rpx; + background: + linear-gradient(90deg, transparent 42%, #ffffff 43% 57%, transparent 58%), + linear-gradient(0deg, transparent 42%, #ffffff 43% 57%, transparent 58%); + transform: rotate(45deg); +} + +.result-title { + margin-top: 14rpx; + display: flex; + align-items: center; + gap: 10rpx; + color: #3f4dff; + font-size: 25rpx; + line-height: 32rpx; + font-weight: 900; +} + +.result-icon { + width: 25rpx; + height: 25rpx; + border: 4rpx solid #625aff; + border-radius: 8rpx; + box-sizing: border-box; +} + +.video-preview { + width: 100%; + height: 274rpx; + border-radius: 14rpx; + overflow: hidden; + box-shadow: 0 12rpx 30rpx rgba(83, 92, 151, 0.13); +} + +.preview-bg { + width: 100%; + height: 100%; + display: flex; + align-items: flex-end; + justify-content: center; + background: + linear-gradient(90deg, rgba(255,255,255,0.36) 0 3rpx, transparent 3rpx 64rpx), + linear-gradient(180deg, #fff4e3 0%, #f1dcc3 58%, #d9b98f 100%); +} + +.preview-plant { + width: 86rpx; + height: 126rpx; + margin-bottom: 18rpx; + border-radius: 50rpx 50rpx 12rpx 12rpx; + background: + radial-gradient(circle at 30% 24%, #79ad65 0 22rpx, transparent 23rpx), + radial-gradient(circle at 66% 32%, #6aa05f 0 24rpx, transparent 25rpx), + radial-gradient(circle at 50% 50%, #7eb86a 0 25rpx, transparent 26rpx), + linear-gradient(180deg, transparent 0 82rpx, #a9794d 83rpx 100%); +} + +.plant-left { + margin-right: 76rpx; +} + +.plant-right { + margin-left: 76rpx; +} + +.preview-avatar { + width: 176rpx; + height: 236rpx; + margin-bottom: 0; + display: flex; + flex-direction: column; + align-items: center; +} + +.avatar-head { + width: 116rpx; + height: 130rpx; + display: flex; + align-items: flex-end; + justify-content: center; + border-radius: 60rpx 60rpx 42rpx 42rpx; + background: linear-gradient(160deg, #241a18 0%, #604038 60%, #8a6258 100%); +} + +.avatar-face { + width: 78rpx; + height: 92rpx; + margin-bottom: 10rpx; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + gap: 12rpx; + border-radius: 42rpx 42rpx 34rpx 34rpx; + background: linear-gradient(180deg, #ffe6d9 0%, #ffd0c2 100%); +} + +.avatar-eyes { + width: 48rpx; + display: flex; + justify-content: space-between; +} + +.avatar-eyes text { + width: 8rpx; + height: 8rpx; + border-radius: 50%; + background: #241a18; +} + +.avatar-mouth { + width: 26rpx; + height: 8rpx; + border-radius: 0 0 16rpx 16rpx; + background: #ca6975; +} + +.avatar-body { + width: 160rpx; + height: 106rpx; + border-radius: 46rpx 46rpx 0 0; + background: linear-gradient(120deg, #ffffff 0%, #f5f4f1 48%, #ffffff 100%); +} + +.play-btn { + width: 74rpx; + height: 74rpx; + margin-left: -126rpx; + margin-bottom: 54rpx; + display: flex; + align-items: center; + justify-content: center; + border: 4rpx solid rgba(255, 255, 255, 0.82); + border-radius: 50%; + background: rgba(49, 43, 38, 0.48); + box-sizing: border-box; +} + +.play-btn text { + width: 0; + height: 0; + margin-left: 6rpx; + border-top: 16rpx solid transparent; + border-bottom: 16rpx solid transparent; + border-left: 24rpx solid #ffffff; +} + +.bottom-actions { + display: flex; + gap: 18rpx; +} + +.action-primary, +.action-outline { + height: 82rpx; + display: flex; + align-items: center; + justify-content: center; + gap: 12rpx; + border-radius: 14rpx; + font-size: 24rpx; + line-height: 31rpx; + font-weight: 900; + box-sizing: border-box; + flex: 1; +} + +.action-primary { + color: #ffffff; + background: linear-gradient(100deg, #5a80ff 0%, #764df3 100%); + box-shadow: 0 12rpx 24rpx rgba(91, 86, 245, 0.18); +} + +.action-outline { + color: #625aff; + border: 2rpx solid #dce0f5; + background: #ffffff; +} + +.download-icon { + width: 24rpx; + height: 24rpx; + border-left: 4rpx solid #ffffff; + border-bottom: 4rpx solid #ffffff; + transform: rotate(-45deg); + box-sizing: border-box; +} + +.refresh-icon { + width: 24rpx; + height: 24rpx; + border: 4rpx solid #625aff; + border-right-color: transparent; + border-radius: 50%; + box-sizing: border-box; +} + +.home-icon { + width: 25rpx; + height: 22rpx; + border: 4rpx solid #625aff; + border-top: 0; + border-radius: 4rpx; + box-sizing: border-box; + transform: translateY(4rpx); +} + +.home-icon::before { + content: ''; + width: 18rpx; + height: 18rpx; + display: block; + border-left: 4rpx solid #625aff; + border-top: 4rpx solid #625aff; + transform: rotate(45deg) translate(-4rpx, -13rpx); + box-sizing: border-box; +} + +.save-tip { + display: flex; + align-items: center; + justify-content: center; + gap: 10rpx; + color: #8d94a5; + font-size: 23rpx; + line-height: 30rpx; + font-weight: 600; + margin-bottom: calc(10rpx + env(safe-area-inset-bottom)); +} + +.tip-icon { + width: 24rpx; + height: 24rpx; + display: flex; + align-items: center; + justify-content: center; + border: 3rpx solid #9aa1b2; + border-radius: 50%; + font-size: 16rpx; + line-height: 18rpx; + font-weight: 900; + box-sizing: border-box; +} + +.icon-placeholder { + display: block; + flex-shrink: 0; + background: none; + border: 0; + box-shadow: none; + transform: none; +} diff --git a/miniprogram/pages/aiPackage/preview/index.json b/miniprogram/pages/aiPackage/preview/index.json new file mode 100644 index 0000000..b4acf56 --- /dev/null +++ b/miniprogram/pages/aiPackage/preview/index.json @@ -0,0 +1,6 @@ +{ + "usingComponents": { + "custom-nav": "/components/custom-nav/custom-nav" + }, + "navigationStyle": "custom" +} diff --git a/miniprogram/pages/aiPackage/preview/index.ts b/miniprogram/pages/aiPackage/preview/index.ts new file mode 100644 index 0000000..3cc6a6b --- /dev/null +++ b/miniprogram/pages/aiPackage/preview/index.ts @@ -0,0 +1,137 @@ +import { polishScript, saveScript, taskinfo } from "../../../utils/request" + +type PolishStyle = { + id: string + name: string + icon: string + activeIcon: string +} + +const styles: PolishStyle[] = [ + { id: 'natural', name: '自然口播', icon: '/static/images/Frame-15355646363.png', activeIcon: '/static/images/Frame-1561268387.png' }, + { id: 'goods', name: '带货风格', icon: '/static/images/Frame-1561268385.png', activeIcon: '/static/images/Frame-1561268389.png' }, + { id: 'emotion', name: '情感风格', icon: '/static/images/Frame-1561268384.png', activeIcon: '/static/images/Frame-1561268388.png' }, + { id: 'teach', name: '专业讲解', icon: '/static/images/Frame-1561268383.png', activeIcon: '/static/images/Frame-1561268390.png' }, + { id: 'viral', name: '爆款短视频', icon: '/static/images/Frame-1561268382.png', activeIcon: '/static/images/Frame-1561268386.png' }, +] + +const styleMap: Record = { + natural: 'friendly', + goods: 'product', + emotion: 'rewrite', + teach: 'professional', + viral: 'rewrite', +} + +Page({ + data: { + styles, + selectedStyle: 'natural', + taskinfo: null as any, + inEdit: false, + }, + + onLoad(ops: any) { + taskinfo(ops.taskId).then((res: any) => { + if (!res.code) { + this.setData({ taskinfo: res.data }) + } else { + wx.showModal({ title: '温馨提示', content: res.message || '获取文案失败', showCancel: false }) + } + }) + }, + + handleBack() { + wx.navigateBack({ + fail: () => wx.switchTab({ url: '/pages/index/index' }), + }) + }, + + handleStyleSelect(e: WechatMiniprogram.TouchEvent) { + const selectedStyle = e.currentTarget.dataset.id + if (!selectedStyle) return + + this.setData({ selectedStyle }) + }, + + handleEdit() { + if (!this.data.taskinfo) return + + this.setData({ inEdit: !this.data.inEdit }) + }, + + changeContent(e: any) { + const taskinfo = this.data.taskinfo + if (!taskinfo) return + + taskinfo.script_text = e.detail.value + this.setData({ taskinfo }) + }, + + handleRegenerate() { + const taskinfo = this.data.taskinfo + if (!taskinfo) return + + const content = taskinfo.script_text || taskinfo.original_script || '' + if (!content) { + wx.showToast({ title: '暂无可润色文案', icon: 'none' }) + return + } + + wx.showLoading({ title: '润色中' }) + polishScript(taskinfo.task_no, content, styleMap[this.data.selectedStyle] || 'optimize').then((res: any) => { + wx.hideLoading() + if (res.code) { + wx.showModal({ title: '温馨提示', content: res.message || '润色失败', showCancel: false }) + return + } + + taskinfo.script_text = res.data.scriptText + this.setData({ taskinfo, inEdit: false }) + wx.showToast({ title: '已重新润色', icon: 'success' }) + }).catch(() => { + wx.hideLoading() + wx.showModal({ title: '温馨提示', content: '网络异常,请稍后再试', showCancel: false }) + }) + }, + + handleConfirm() { + this.saveCurrentScript(true) + }, + + saveCurrentScript(next: boolean) { + const taskinfo = this.data.taskinfo + if (!taskinfo) return + + const content = (taskinfo.script_text || '').trim() + if (!content) { + wx.showToast({ title: '文案不能为空', icon: 'none' }) + return + } + + wx.showLoading({ title: '保存中' }) + saveScript(taskinfo.task_no, content).then((res: any) => { + wx.hideLoading() + if (res.code) { + wx.showModal({ title: '温馨提示', content: res.message || '保存失败', showCancel: false }) + return + } + + taskinfo.script_text = res.data.scriptText + this.setData({ taskinfo, inEdit: false }) + if (next) { + wx.redirectTo({ + url: '/pages/aiPackage/record/index?taskid=' + taskinfo.task_no, + }) + } else { + wx.showToast({ title: '已保存', icon: 'success' }) + } + }).catch(() => { + wx.hideLoading() + wx.showModal({ title: '温馨提示', content: '网络异常,请稍后再试', showCancel: false }) + }) + }, +}) + + + diff --git a/miniprogram/pages/aiPackage/preview/index.wxml b/miniprogram/pages/aiPackage/preview/index.wxml new file mode 100644 index 0000000..6708010 --- /dev/null +++ b/miniprogram/pages/aiPackage/preview/index.wxml @@ -0,0 +1,68 @@ + + + + + + 文案优化 + 让口播更自然,更适合短视频传播 + + + + + + + + 原文案 + + {{taskinfo.original_script}} + + 共 {{taskinfo.original_script.length}} 字 + + + + + + AI 优化后文案 + 已优化 + + + + {{inEdit?'保存':'编辑'}} + + + + + {{taskinfo.script_text}} + + 共 {{taskinfo.script_text.length}} 字 + + + + + 选择润色风格 + + + + {{item.name}} + + + + + + 重新润色 + 确认使用此文案 + + + + + 新生成的视频将使用优化后的文案进行口播 + + + + diff --git a/miniprogram/pages/aiPackage/preview/index.wxss b/miniprogram/pages/aiPackage/preview/index.wxss new file mode 100644 index 0000000..03c74d5 --- /dev/null +++ b/miniprogram/pages/aiPackage/preview/index.wxss @@ -0,0 +1,335 @@ +page { + min-height: 100vh; + background: #f8faff; + color: #111827; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif; +} + +.preview-page { + width: 750rpx; + min-height: 100vh; + margin: 0 auto; + display: flex; + flex-direction: column; + box-sizing: border-box; + background: + radial-gradient(circle at 10% 0%, rgba(117, 93, 255, 0.08), transparent 32%), + radial-gradient(circle at 92% 8%, rgba(74, 132, 255, 0.08), transparent 30%), + linear-gradient(180deg, #fbfcff 0%, #f5f7ff 48%, #ffffff 100%); +} + +.preview-nav { + width: 100%; + height: 100%; + display: flex; + align-items: center; + justify-content: space-between; +} + +.nav-back, +.nav-space { + width: 60rpx; + height: 60rpx; + flex: 0 0 60rpx; + display: flex; + align-items: center; +} + +.nav-back text { + width: 26rpx; + height: 26rpx; + display: block; + border-left: 5rpx solid #111827; + border-bottom: 5rpx solid #111827; + transform: rotate(45deg); + box-sizing: border-box; +} + +.nav-title-wrap { + flex: 1; + min-width: 0; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + gap: 10rpx; +} + +.nav-title { + font-size: 34rpx; + line-height: 40rpx; + font-weight: 900; + color: #111827; +} + +.nav-subtitle { + max-width: 520rpx; + font-size: 22rpx; + line-height: 28rpx; + font-weight: 600; + color: #6d7484; + text-align: center; + white-space: nowrap; +} + +.preview-content { + flex: 1; + display: flex; + flex-direction: column; + gap: 26rpx; + padding: 22rpx 34rpx 30rpx; + box-sizing: border-box; +} + +.panel { + width: 100%; + display: flex; + flex-direction: column; + box-sizing: border-box; + border: 2rpx solid #e8eaff; + border-radius: 16rpx; + background: rgba(255, 255, 255, 0.94); + box-shadow: 0 12rpx 34rpx rgba(80, 92, 170, 0.08); +} + +.original-panel { + min-height: 326rpx; + padding: 25rpx 32rpx 22rpx; +} + +.panel-title { + font-size: 28rpx; + line-height: 36rpx; + font-weight: 900; + color: #111827; +} + +.script-text { + margin-top: 22rpx; + display: flex; + flex-direction: column; + color: #252a35; + font-size: 24rpx; + line-height: 42rpx; + font-weight: 700; +} + +.original-text { + flex: 1; +} + +.count-text, +.optimized-count { + align-self: flex-end; + font-size: 21rpx; + line-height: 28rpx; + font-weight: 600; + color: #9ba1af; +} + +.ai-panel { + padding: 20rpx 18rpx 18rpx; +} + +.panel-head { + display: flex; + align-items: center; + justify-content: space-between; + gap: 20rpx; + padding: 0 16rpx 16rpx; +} + +.title-line { + min-width: 0; + display: flex; + align-items: center; + gap: 18rpx; +} + +.status-pill { + padding: 4rpx 18rpx; + border-radius: 20rpx; + background: #ece9ff; + color: #7860ff; + font-size: 20rpx; + line-height: 28rpx; + font-weight: 800; + white-space: nowrap; +} + +.edit-btn { + height: 48rpx; + padding: 0 20rpx; + display: flex; + align-items: center; + justify-content: center; + gap: 10rpx; + border: 2rpx solid #d8d1ff; + border-radius: 14rpx; + color: #7254f4; + font-size: 23rpx; + line-height: 28rpx; + font-weight: 800; + box-sizing: border-box; + flex: 0 0 auto; +} + +.edit-icon { + width: 21rpx; + height: 21rpx; + border: 4rpx solid #7254f4; + border-left: 0; + border-top: 0; + transform: skew(-12deg) rotate(-45deg); + box-sizing: border-box; +} + +.optimized-box { + min-height: 286rpx; + padding: 20rpx 20rpx 18rpx; + display: flex; + flex-direction: column; + justify-content: space-between; + border: 2rpx solid #dcd9ff; + border-radius: 14rpx; + box-sizing: border-box; + color: #252a35; + font-size: 24rpx; + line-height: 40rpx; + font-weight: 700; + background: #ffffff; +} + +.style-panel { + padding: 25rpx 18rpx 22rpx; + gap: 22rpx; +} + +.style-list { + display: flex; + align-items: stretch; + justify-content: space-between; + gap: 16rpx; +} + +.style-item { + width: 112rpx; + height: 112rpx; + padding: 12rpx 8rpx 10rpx; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + gap: 8rpx; + border: 2rpx solid #e1e4f4; + border-radius: 12rpx; + background: #ffffff; + box-sizing: border-box; + color: #555d6f; + font-size: 19rpx; + line-height: 24rpx; + font-weight: 800; + text-align: center; + flex: 0 0 112rpx; +} + +.style-item-active { + border-color: #7461ff; + background: linear-gradient(180deg, #806bff 0%, #5f55f5 100%); + color: #ffffff; + box-shadow: 0 10rpx 22rpx rgba(98, 85, 245, 0.26); +} + +.style-icon { + width: 44rpx; + height: 44rpx; + display: flex; + align-items: center; + justify-content: center; + border-radius: 16rpx; + font-size: 18rpx; + line-height: 20rpx; + font-weight: 900; + color: #ffffff; + background: #83cfff; +} + +.style-icon-natural { background: linear-gradient(135deg, #8c82ff 0%, #6b58ff 100%); } +.style-icon-goods { background: linear-gradient(135deg, #a7e8ff 0%, #69bde8 100%); } +.style-icon-emotion { background: linear-gradient(135deg, #ffd888 0%, #ffb750 100%); } +.style-icon-teach { background: linear-gradient(135deg, #dca8ff 0%, #9f66ef 100%); } +.style-icon-viral { background: linear-gradient(135deg, #ffbccd 0%, #ff7696 100%); } + +.style-item-active .style-icon { + background: rgba(255, 255, 255, 0.16); + border: 1rpx solid rgba(255, 255, 255, 0.24); +} + +.action-row { + display: flex; + align-items: center; + gap: 20rpx; + margin-top: 2rpx; +} + +.outline-action, +.confirm-action { + height: 76rpx; + display: flex; + align-items: center; + justify-content: center; + border-radius: 16rpx; + font-size: 27rpx; + line-height: 34rpx; + font-weight: 900; + box-sizing: border-box; +} + +.outline-action { + flex: 0 0 278rpx; + border: 2rpx solid #d9d4ff; + background: rgba(255, 255, 255, 0.86); + color: #7254f4; +} + +.confirm-action { + flex: 1; + color: #ffffff; + background: linear-gradient(100deg, #4e84ff 0%, #7d3ff3 100%); + box-shadow: 0 12rpx 24rpx rgba(91, 86, 245, 0.24); +} + +.bottom-tip { + margin-top: 4rpx; + display: flex; + align-items: center; + justify-content: center; + gap: 12rpx; + color: #8d94a5; + font-size: 23rpx; + line-height: 30rpx; + font-weight: 600; +} + +.tip-dot { + width: 24rpx; + height: 24rpx; + display: flex; + align-items: center; + justify-content: center; + border: 3rpx solid #8d94a5; + border-radius: 50%; + font-size: 16rpx; + line-height: 18rpx; + font-weight: 900; + box-sizing: border-box; +} + +.icon-placeholder { + display: block; + flex-shrink: 0; + background: none; + border: 0; + box-shadow: none; + transform: none; +} diff --git a/miniprogram/pages/aiPackage/record/index.json b/miniprogram/pages/aiPackage/record/index.json new file mode 100644 index 0000000..b4acf56 --- /dev/null +++ b/miniprogram/pages/aiPackage/record/index.json @@ -0,0 +1,6 @@ +{ + "usingComponents": { + "custom-nav": "/components/custom-nav/custom-nav" + }, + "navigationStyle": "custom" +} diff --git a/miniprogram/pages/aiPackage/record/index.ts b/miniprogram/pages/aiPackage/record/index.ts new file mode 100644 index 0000000..c1f6015 --- /dev/null +++ b/miniprogram/pages/aiPackage/record/index.ts @@ -0,0 +1,301 @@ +import { taskinfo, uploadavatar, uploadrecord, checkavatar, checkvoice, saveHumanAssets } from "../../../utils/request" + +const waveBars = [ + { id: 'b1', cls: 'bar-22' }, + { id: 'b2', cls: 'bar-34' }, + { id: 'b3', cls: 'bar-48' }, + { id: 'b4', cls: 'bar-34' }, + { id: 'b5', cls: 'bar-62' }, + { id: 'b6', cls: 'bar-42' }, + { id: 'b7', cls: 'bar-70' }, + { id: 'b8', cls: 'bar-52' }, + { id: 'b9', cls: 'bar-38' }, + { id: 'b10', cls: 'bar-58' }, + { id: 'b11', cls: 'bar-46' }, + { id: 'b12', cls: 'bar-30' }, +] +const miniBars = [ + { id: 'm1', cls: 'mini-bar-18' }, + { id: 'm2', cls: 'mini-bar-30' }, + { id: 'm3', cls: 'mini-bar-46' }, + { id: 'm4', cls: 'mini-bar-28' }, + { id: 'm5', cls: 'mini-bar-56' }, + { id: 'm6', cls: 'mini-bar-36' }, +] + +function formatRecordTime(totalSeconds: number) { + const minutes = Math.floor(totalSeconds / 60) + const seconds = totalSeconds % 60 + return `${String(minutes).padStart(2, '0')}:${String(seconds).padStart(2, '0')}` +} + +Page({ + recordTimer: 0, + voiceCheckTimer: 0, + + data: { + isRecording: false, + recordingClass: 'recording-active', + elapsedSeconds: 0, + recordTime: '00:00', + waveBars, + miniBars, + taskinfo: null as any, + avatar: '/static/images/my/image.png', + avatarUrl: '', + avatarChecked: false, + recordUrl: '', + recordDurationMs: 0, + voiceAsrTaskId: '', + voiceChecked: false, + voiceText: '', + voiceStatusText: '' + }, + + + onLoad(ops: any) { + taskinfo(ops.taskid).then((res: any) => { + if (!res.code) { + this.setData({ taskinfo: res.data }); + } + }) + }, + + onShow() { + if (this.data.isRecording) { + this.startRecordTimer() + } + }, + + onHide() { + this.clearRecordTimer() + this.clearVoiceCheckTimer() + }, + + onUnload() { + this.clearRecordTimer() + this.clearVoiceCheckTimer() + }, + + handleBack() { + wx.navigateBack({ + fail: () => wx.navigateTo({ url: '/pages/aiPackage/preview/index' }), + }) + }, + + handleUploadPhoto() { + const that = this; + wx.chooseImage({ + count: 1, + success(res: any) { + const file = res.tempFilePaths[0]; + wx.showLoading({ mask: true, title: '上传照片中' }); + uploadavatar(file, {}, '/api/upload/avatar').then((uploadRes: any) => { + if (uploadRes.code) { + wx.hideLoading(); + wx.showModal({ title: '温馨提示', content: uploadRes.message || '照片上传失败', showCancel: false }) + return; + } + + wx.showLoading({ mask: true, title: '人脸检测中' }); + checkavatar(uploadRes.data.url).then((checkRes: any) => { + wx.hideLoading(); + if (!checkRes.code) { + that.setData({ avatar: uploadRes.data.url, avatarUrl: uploadRes.data.url, avatarChecked: true }) + wx.showToast({ title: '照片检测通过', icon: 'success' }) + } else { + that.setData({ avatarUrl: '', avatarChecked: false }) + wx.showModal({ title: '温馨提示', content: checkRes.message || '未检测到人脸', showCancel: false }) + } + }).catch(() => { + wx.hideLoading(); + that.setData({ avatarUrl: '', avatarChecked: false }) + wx.showModal({ title: '温馨提示', content: '人脸检测失败,请稍后再试', showCancel: false }) + }) + }).catch(() => { + wx.hideLoading(); + wx.showModal({ title: '温馨提示', content: '网络异常,请稍后再试', showCancel: false }) + }) + } + }) + }, + + handleUseDefaultAvatar() { + wx.showToast({ title: '暂未配置默认形象', icon: 'none' }) + }, + + handleRecord() { + if (this.data.isRecording) return + + if (this.recordTimer) { + clearTimeout(this.recordTimer); + clearInterval(this.recordTimer); + } + + this.clearVoiceCheckTimer() + this.recordTimer = 0; + + this.setData({ + isRecording: true, + recordTime: '00:00', + elapsedSeconds: 0, + recordingClass: 'recording-active', + recordUrl: '', + recordDurationMs: 0, + voiceAsrTaskId: '', + voiceChecked: false, + voiceText: '', + voiceStatusText: '' + }) + this.startRecordTimer() + }, + + handleUseDefaultVoice() { + this.clearRecordTimer() + this.clearVoiceCheckTimer() + this.setData({ isRecording: false, recordingClass: '' }) + wx.showToast({ title: '暂未配置默认音色', icon: 'none' }) + }, + + handleStopRecord() { + this.clearRecordTimer() + this.recordTimer = 0; + this.setData({ isRecording: false, recordingClass: '' }) + wx.getRecorderManager().stop() + }, + + handleNext() { + if (!this.data.taskinfo || !this.data.taskinfo.task_no) { + wx.showModal({ title: '温馨提示', content: '创作记录不存在', showCancel: false }) + return + } + if (!this.data.avatarChecked || !this.data.avatarUrl) { + wx.showModal({ title: '温馨提示', content: '请先上传并通过数字人照片检测', showCancel: false }) + return + } + if (!this.data.voiceChecked || !this.data.recordUrl || !this.data.voiceText) { + wx.showModal({ title: '温馨提示', content: '请先录制并通过音色检测', showCancel: false }) + return + } + + wx.showLoading({ mask: true, title: '保存中' }) + saveHumanAssets({ + taskId: this.data.taskinfo.task_no, + avatarUrl: this.data.avatarUrl, + voiceUrl: this.data.recordUrl, + voiceText: this.data.voiceText, + durationMs: this.data.recordDurationMs, + asrTaskId: this.data.voiceAsrTaskId + }).then((res: any) => { + wx.hideLoading() + if (!res.code) { + wx.redirectTo({ url: '/pages/aiPackage/bg/index?taskId=' + encodeURIComponent(this.data.taskinfo.task_no) }) + } else { + wx.showModal({ title: '温馨提示', content: res.message || '保存失败', showCancel: false }) + } + }).catch(() => { + wx.hideLoading() + wx.showModal({ title: '温馨提示', content: '网络异常,请稍后再试', showCancel: false }) + }) + }, + + startRecordTimer() { + let that = this; + that.clearRecordTimer() + that.recordTimer = setInterval(() => { + const elapsedSeconds = that.data.elapsedSeconds + 1 + that.setData({ elapsedSeconds, recordTime: formatRecordTime(elapsedSeconds) }) + }, 1000) as unknown as number + + let recorder = wx.getRecorderManager(); + recorder.onError(that.onRecordError.bind(that)); + recorder.onStop(that.onRecordStop.bind(that)) + recorder.start({ duration: 10000, format: 'mp3' }); + }, + + onRecordError(err: any) { + console.log(err) + this.clearRecordTimer() + this.setData({ isRecording: false, recordingClass: '' }) + wx.showModal({ title: '温馨提示', content: '录音失败,请重新录制', showCancel: false }) + }, + + onRecordStop(resource: { duration: number, fileSize: number, tempFilePath: string }) { + this.clearRecordTimer() + this.recordTimer = 0; + this.setData({ isRecording: false, recordingClass: '', voiceStatusText: '录音上传中' }) + + wx.showLoading({ mask: true, title: '上传录音中' }) + uploadrecord(resource.tempFilePath).then((res: any) => { + if (res.code) { + wx.hideLoading() + this.setData({ voiceStatusText: '', voiceChecked: false }) + wx.showModal({ title: '温馨提示', content: res.message || '录音上传失败', showCancel: false }) + return + } + + this.setData({ + recordUrl: res.data.url, + recordDurationMs: res.data.durationMs || resource.duration || 0, + voiceAsrTaskId: '', + voiceChecked: false, + voiceText: '', + voiceStatusText: '录音识别中' + }) + this.pollVoiceCheck('') + }).catch(() => { + wx.hideLoading() + this.setData({ voiceStatusText: '', voiceChecked: false }) + wx.showModal({ title: '温馨提示', content: '网络异常,请稍后再试', showCancel: false }) + }) + }, + + pollVoiceCheck(asrTaskId: string) { + checkvoice(this.data.recordUrl, asrTaskId).then((res: any) => { + if (res.code === 200) { + wx.hideLoading() + const nextTaskId = res.data && res.data.asrTaskId ? res.data.asrTaskId : asrTaskId + this.setData({ voiceAsrTaskId: nextTaskId, voiceStatusText: '录音识别中' }) + this.clearVoiceCheckTimer() + this.voiceCheckTimer = setTimeout(() => { + this.pollVoiceCheck(nextTaskId) + }, 1500) as unknown as number + return + } + + wx.hideLoading() + if (!res.code) { + this.clearVoiceCheckTimer() + this.setData({ + voiceAsrTaskId: res.data.asrTaskId, + voiceText: res.data.recognizedText, + voiceChecked: true, + voiceStatusText: '录音检测通过' + }) + wx.showToast({ title: '音色检测通过', icon: 'success' }) + } else { + this.clearVoiceCheckTimer() + this.setData({ voiceChecked: false, voiceStatusText: '' }) + wx.showModal({ title: '温馨提示', content: res.message || '录音识别失败,请重新录制', showCancel: false }) + } + }).catch(() => { + wx.hideLoading() + this.clearVoiceCheckTimer() + this.setData({ voiceChecked: false, voiceStatusText: '' }) + wx.showModal({ title: '温馨提示', content: '录音识别失败,请稍后再试', showCancel: false }) + }) + }, + + clearRecordTimer() { + if (!this.recordTimer) return + clearInterval(this.recordTimer) + this.recordTimer = 0 + }, + + clearVoiceCheckTimer() { + if (!this.voiceCheckTimer) return + clearTimeout(this.voiceCheckTimer) + this.voiceCheckTimer = 0 + }, +}) + diff --git a/miniprogram/pages/aiPackage/record/index.wxml b/miniprogram/pages/aiPackage/record/index.wxml new file mode 100644 index 0000000..3908045 --- /dev/null +++ b/miniprogram/pages/aiPackage/record/index.wxml @@ -0,0 +1,100 @@ + + + + + + 设置数字人 + 上传照片和录音,生成你的专属数字人 + + + + + + + + 上传数字人照片 + + + + + + + + 上传照片 + 使用默认形象 + + + + + 建议上传清晰正脸照片,生成效果更自然 + + + + + + 录取专属音色 + + + 录制中 + + + + + + + + + + + + + + + {{recordTime}} + + + + 录取音色 + + + 停止录制 + + 使用默认音色 + + + + + + 建议录制 10 秒以上,环境安静效果更佳 + + + + + 朗读以下文案(约10秒) + + 大家好,我是你的数字人口播助手。今天为大家带来一段精彩的内容介绍。 + + + + + + 默认选项(可直接体验) + + + + 默认数字人 + 可直接体验 + + + + 默认音色 + 可直接体验 + + + + + 下一步:选择视频背景 + + + + diff --git a/miniprogram/pages/aiPackage/record/index.wxss b/miniprogram/pages/aiPackage/record/index.wxss new file mode 100644 index 0000000..513fec1 --- /dev/null +++ b/miniprogram/pages/aiPackage/record/index.wxss @@ -0,0 +1,668 @@ +page { + min-height: 100vh; + background: #f8faff; + color: #111827; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif; +} + +.record-page { + width: 750rpx; + min-height: 100vh; + margin: 0 auto; + display: flex; + flex-direction: column; + box-sizing: border-box; + background: + radial-gradient(circle at 10% 0%, rgba(116, 98, 255, 0.08), transparent 34%), + radial-gradient(circle at 88% 10%, rgba(73, 132, 255, 0.08), transparent 30%), + linear-gradient(180deg, #fbfcff 0%, #f7f9ff 46%, #ffffff 100%); +} + +.record-nav { + width: 100%; + height: 100%; + display: flex; + align-items: center; + justify-content: space-between; +} + +.nav-back, +.nav-space { + width: 60rpx; + height: 60rpx; + flex: 0 0 60rpx; + display: flex; + align-items: center; +} + +.nav-back text { + width: 26rpx; + height: 26rpx; + display: block; + border-left: 5rpx solid #111827; + border-bottom: 5rpx solid #111827; + transform: rotate(45deg); + box-sizing: border-box; +} + +.nav-title-wrap { + flex: 1; + min-width: 0; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + gap: 10rpx; +} + +.nav-title { + font-size: 34rpx; + line-height: 40rpx; + font-weight: 900; + color: #111827; +} + +.nav-subtitle { + max-width: 560rpx; + color: #687086; + font-size: 22rpx; + line-height: 28rpx; + font-weight: 600; + text-align: center; + white-space: nowrap; +} + +.record-content { + flex: 1; + display: flex; + flex-direction: column; + gap: 22rpx; + padding: 20rpx 32rpx 30rpx; + box-sizing: border-box; +} + +.panel { + width: 100%; + display: flex; + flex-direction: column; + border: 2rpx solid #e6e9ff; + border-radius: 18rpx; + background: rgba(255, 255, 255, 0.96); + box-shadow: 0 14rpx 34rpx rgba(80, 92, 170, 0.08); + box-sizing: border-box; +} + +.photo-panel { + padding: 24rpx 26rpx 24rpx; +} + +.panel-title { + color: #111827; + font-size: 28rpx; + line-height: 36rpx; + font-weight: 900; +} + +.photo-body { + margin-top: 14rpx; + display: flex; + align-items: center; + gap: 56rpx; +} + +.photo-preview { + width: 306rpx; + height: 224rpx; + display: flex; + align-items: flex-end; + justify-content: center; + border: 2rpx solid #dce1ff; + border-radius: 14rpx; + background: linear-gradient(180deg, #f8fbff 0%, #eef3ff 100%); + overflow: hidden; + box-sizing: border-box; + position: relative; +} + +.portrait-bg { + width: 190rpx; + height: 218rpx; + display: flex; + flex-direction: column; + align-items: center; + justify-content: flex-end; +} + +.portrait-head { + width: 120rpx; + height: 138rpx; + display: flex; + align-items: flex-end; + justify-content: center; + border-radius: 60rpx 60rpx 44rpx 44rpx; + background: linear-gradient(160deg, #2e1e19 0%, #684235 56%, #9c6a58 100%); + box-shadow: 0 4rpx 12rpx rgba(85, 50, 44, 0.18); +} + +.face { + width: 78rpx; + height: 98rpx; + margin-bottom: 10rpx; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + gap: 8rpx; + border-radius: 42rpx 42rpx 36rpx 36rpx; + background: linear-gradient(180deg, #ffe8dc 0%, #ffd0c2 100%); +} + +.eye-row { + width: 48rpx; + display: flex; + align-items: center; + justify-content: space-between; +} + +.eye-row text { + width: 8rpx; + height: 8rpx; + border-radius: 50%; + background: #251918; +} + +.nose { + width: 8rpx; + height: 12rpx; + border-radius: 8rpx; + background: rgba(196, 116, 101, 0.46); +} + +.mouth { + width: 24rpx; + height: 7rpx; + border-radius: 0 0 16rpx 16rpx; + background: #ca6975; +} + +.hair, +.hair-main { + display: none; +} + +.portrait-neck { + width: 32rpx; + height: 22rpx; + background: #ffd3c4; +} + +.portrait-cloth { + width: 178rpx; + height: 68rpx; + border-radius: 40rpx 40rpx 0 0; + background: linear-gradient(120deg, #ffffff 0%, #f7f6f2 50%, #ffffff 100%); +} + +.camera-badge { + width: 60rpx; + height: 60rpx; + /* margin-bottom: 20rpx; */ + display: flex; + align-items: center; + justify-content: center; + border: 4rpx solid rgba(255, 255, 255, 0.88); + border-radius: 50%; + background: rgba(66, 56, 49, 0.72); + box-sizing: border-box; + flex: 0 0 60rpx; + position: absolute; + bottom: 20rpx; +} + +.camera-icon { + width: 28rpx; + height: 21rpx; + border: 4rpx solid #ffffff; + border-radius: 5rpx; + box-sizing: border-box; +} + +.camera-icon::after { + content: ''; + width: 8rpx; + height: 8rpx; + margin: 2rpx auto 0; + display: block; + border: 3rpx solid #ffffff; + border-radius: 50%; + box-sizing: border-box; +} + +.photo-actions, +.voice-actions { + flex: 1; + min-width: 0; + display: flex; + flex-direction: column; + gap: 24rpx; +} + +.primary-small, +.ghost-small, +.stop-small { + height: 70rpx; + display: flex; + align-items: center; + justify-content: center; + border-radius: 16rpx; + font-size: 26rpx; + line-height: 32rpx; + font-weight: 900; + box-sizing: border-box; +} + +.primary-small { + color: #ffffff; + background: linear-gradient(100deg, #4e84ff 0%, #7d3ff3 100%); + box-shadow: 0 12rpx 24rpx rgba(91, 86, 245, 0.22); +} + +.ghost-small, +.stop-small { + border: 2rpx solid #d9dcf2; + background: #fafbff; + color: #596083; +} + +.hint-row { + margin-top: 18rpx; + display: flex; + align-items: center; + gap: 8rpx; + color: #7a8196; + font-size: 21rpx; + line-height: 28rpx; + font-weight: 600; +} + +.hint-dot { + width: 18rpx; + height: 18rpx; + display: flex; + align-items: center; + justify-content: center; + border-radius: 50%; + background: #b9bfd2; + color: #ffffff; + font-size: 12rpx; + line-height: 16rpx; + font-weight: 900; +} + +.voice-panel { + padding: 24rpx 26rpx 24rpx; +} + +.voice-body { + margin-top: 12rpx; + display: flex; + align-items: center; + gap: 32rpx; +} + +.voice-visual { + width: 340rpx; + min-height: 240rpx; + display: flex; + flex-wrap: wrap; + align-items: center; + justify-content: center; +} + +.recording-pill { + width: 116rpx; + height: 44rpx; + margin-right: 224rpx; + display: flex; + align-items: center; + justify-content: center; + gap: 10rpx; + border-radius: 22rpx; + color: #ffffff; + background: linear-gradient(90deg, #7380ff 0%, #8a55ed 100%); + box-shadow: 0 8rpx 18rpx rgba(117, 94, 239, 0.3); + font-size: 21rpx; + line-height: 26rpx; + font-weight: 800; +} + +.recording-pill text:first-child { + width: 12rpx; + height: 12rpx; + border-radius: 50%; + background: #ffffff; +} + +.recording-active .recording-pill text:first-child { + animation: blinkDot 1s ease-in-out infinite; +} + +.wave-row { + width: 118rpx; + height: 82rpx; + display: flex; + align-items: center; + justify-content: center; + gap: 7rpx; +} + +.wave-row text { + width: 5rpx; + border-radius: 6rpx; + background: linear-gradient(180deg, #5f86ff 0%, #bd67f2 100%); + transform-origin: center; +} + +.recording-active .wave-row text:nth-child(2n) { + animation: waveScaleA 0.78s ease-in-out infinite; +} + +.recording-active .wave-row text:nth-child(2n + 1) { + animation: waveScaleB 0.92s ease-in-out infinite; +} + +.recording-active .wave-row text:nth-child(3n) { + animation-delay: 0.18s; +} + +.mic-wrap { + width: 98rpx; + height: 98rpx; + display: flex; + align-items: center; + justify-content: center; + border-radius: 50%; + background: radial-gradient(circle, rgba(139, 102, 255, 0.13) 0%, rgba(139, 102, 255, 0.05) 68%, transparent 70%); +} + +.pulse-ring { + width: 90rpx; + height: 90rpx; + margin-right: -90rpx; + border: 3rpx solid rgba(135, 98, 247, 0.28); + border-radius: 50%; + box-sizing: border-box; +} + +.recording-active .ring-one { animation: pulseRing 1.5s ease-out infinite; } +.recording-active .ring-two { animation: pulseRing 1.5s ease-out 0.3s infinite; } +.recording-active .ring-three { animation: pulseRing 1.5s ease-out 0.6s infinite; } + +.mic-core { + width: 90rpx; + height: 90rpx; + display: flex; + align-items: center; + justify-content: center; + border-radius: 50%; + background: linear-gradient(160deg, #77a0ff 0%, #8346f5 100%); + box-shadow: 0 10rpx 24rpx rgba(117, 86, 243, 0.32); +} + +.mic-icon { + width: 32rpx; + height: 45rpx; + display: flex; + flex-direction: column; + align-items: center; +} + +.mic-icon::before { + content: ''; + width: 24rpx; + height: 34rpx; + border-radius: 14rpx; + background: #ffffff; +} + +.mic-icon text { + width: 34rpx; + height: 14rpx; + display: block; + border-bottom: 5rpx solid #ffffff; + border-left: 5rpx solid #ffffff; + border-right: 5rpx solid #ffffff; + border-radius: 0 0 18rpx 18rpx; + box-sizing: border-box; +} + +.record-time { + width: 100%; + margin-top: 2rpx; + color: #586085; + font-size: 31rpx; + line-height: 38rpx; + font-weight: 600; + text-align: center; +} + +.stop-small { + gap: 16rpx; +} + +.stop-dot { + width: 16rpx; + height: 16rpx; + border-radius: 3rpx; + background: #ff6b6b; +} + +.voice-hint { + margin-top: 8rpx; +} + +.script-section { + margin-top: 24rpx; + display: flex; + flex-direction: column; + gap: 12rpx; +} + +.script-title { + color: #111827; + font-size: 24rpx; + line-height: 32rpx; + font-weight: 900; +} + +.script-card { + min-height: 92rpx; + padding: 18rpx 22rpx; + display: flex; + align-items: center; + border: 2rpx solid #dfe3ff; + border-radius: 10rpx; + background: linear-gradient(180deg, #fbfbff 0%, #f6f7ff 100%); + box-sizing: border-box; + color: #4d557d; + font-size: 24rpx; + line-height: 36rpx; + font-weight: 600; +} + +.default-section { + display: flex; + flex-direction: column; + gap: 12rpx; +} + +.default-title { + color: #4f47ff; + font-size: 23rpx; + line-height: 30rpx; + font-weight: 900; +} + +.default-row { + display: flex; + gap: 10rpx; +} + +.default-card { + flex: 1; + height: 88rpx; + min-width: 0; + padding: 10rpx 12rpx; + display: flex; + align-items: center; + gap: 12rpx; + border: 2rpx solid #e4e7f6; + border-radius: 14rpx; + background: rgba(255, 255, 255, 0.94); + box-shadow: 0 10rpx 24rpx rgba(80, 92, 170, 0.08); + box-sizing: border-box; +} + +.mini-avatar { + width: 58rpx; + height: 58rpx; + border-radius: 12rpx; + background: + radial-gradient(circle at 50% 32%, #ffe0d2 0 16rpx, transparent 17rpx), + radial-gradient(circle at 50% 35%, #4b2d25 0 24rpx, transparent 25rpx), + linear-gradient(180deg, #eef4ff 0%, #ffffff 100%); + flex: 0 0 58rpx; +} + +.mini-voice { + width: 58rpx; + height: 58rpx; + display: flex; + align-items: center; + justify-content: center; + gap: 5rpx; + border-radius: 12rpx; + background: #eef2ff; + flex: 0 0 58rpx; +} + +.mini-voice text { + width: 5rpx; + border-radius: 5rpx; + background: linear-gradient(180deg, #5f86ff 0%, #8550f2 100%); +} + +.default-name { + flex: 1; + min-width: 0; + color: #111827; + font-size: 23rpx; + line-height: 30rpx; + font-weight: 900; + white-space: nowrap; +} + +.trial-pill { + padding: 6rpx 12rpx; + border-radius: 18rpx; + background: #fff3db; + color: #f4a326; + font-size: 18rpx; + line-height: 22rpx; + font-weight: 800; + white-space: nowrap; +} + +.blue-pill { + background: #e9f3ff; + color: #5a96f0; +} + +.next-action { + height: 78rpx; + margin-top: -2rpx; + display: flex; + align-items: center; + justify-content: center; + border-radius: 16rpx; + color: #ffffff; + background: linear-gradient(100deg, #4e84ff 0%, #7d3ff3 100%); + box-shadow: 0 12rpx 24rpx rgba(91, 86, 245, 0.24); + font-size: 31rpx; + line-height: 38rpx; + font-weight: 900; +} + +@keyframes waveScaleA { + 0%, 100% { transform: scaleY(0.62); opacity: 0.62; } + 50% { transform: scaleY(1.18); opacity: 1; } +} + +@keyframes waveScaleB { + 0%, 100% { transform: scaleY(1); opacity: 0.88; } + 50% { transform: scaleY(0.55); opacity: 0.55; } +} + +@keyframes pulseRing { + 0% { transform: scale(0.72); opacity: 0.7; } + 100% { transform: scale(1.72); opacity: 0; } +} + +@keyframes blinkDot { + 0%, 100% { opacity: 1; transform: scale(1); } + 50% { opacity: 0.38; transform: scale(0.72); } +} + +.bar-22 { height: 22rpx; } +.bar-30 { height: 30rpx; } +.bar-34 { height: 34rpx; } +.bar-38 { height: 38rpx; } +.bar-42 { height: 42rpx; } +.bar-46 { height: 46rpx; } +.bar-48 { height: 48rpx; } +.bar-52 { height: 52rpx; } +.bar-58 { height: 58rpx; } +.bar-62 { height: 62rpx; } +.bar-70 { height: 70rpx; } + +.mini-bar-18 { height: 18rpx; } +.mini-bar-28 { height: 28rpx; } +.mini-bar-30 { height: 30rpx; } +.mini-bar-36 { height: 36rpx; } +.mini-bar-46 { height: 46rpx; } +.mini-bar-56 { height: 56rpx; } + +.icon-placeholder { + display: block; + flex-shrink: 0; + background: none; + border: 0; + box-shadow: none; + transform: none; +} + +.asset-status { + margin-top: 14rpx; + height: 44rpx; + padding: 0 18rpx; + display: inline-flex; + align-items: center; + align-self: flex-start; + border-radius: 22rpx; + font-size: 21rpx; + line-height: 28rpx; + font-weight: 800; + box-sizing: border-box; +} + +.success-status { + color: #16854f; + background: #e9f8f0; + border: 2rpx solid #bdebd3; +} + +.pending-status { + color: #5a5f89; + background: #f1f3ff; + border: 2rpx solid #dfe3ff; +} diff --git a/miniprogram/pages/history/history.json b/miniprogram/pages/history/history.json new file mode 100644 index 0000000..b4acf56 --- /dev/null +++ b/miniprogram/pages/history/history.json @@ -0,0 +1,6 @@ +{ + "usingComponents": { + "custom-nav": "/components/custom-nav/custom-nav" + }, + "navigationStyle": "custom" +} diff --git a/miniprogram/pages/history/history.ts b/miniprogram/pages/history/history.ts new file mode 100644 index 0000000..d2499f8 --- /dev/null +++ b/miniprogram/pages/history/history.ts @@ -0,0 +1,157 @@ +import { historyDownload, historyList } from "../../utils/request" + +type FilterKey = 'all' | 'done' | 'processing' | 'failed' +type RecordStatus = 'done' | 'processing' | 'failed' + +interface HistoryRecord { + id: number + taskId: string + title: string + scene: string + avatar: string + time: string + duration: string + status: RecordStatus + statusText: string + secondaryText: string + sceneClass: string + isDone: boolean + isProcessing: boolean + isFailed: boolean + coverUrl: string + coverImage: string + videoUrl: string + progress: number +} + +Page({ + data: { + filters: [ + { key: 'all', label: '全部', active: true }, + { key: 'done', label: '已完成', active: false }, + { key: 'processing', label: '生成中', active: false }, + ], + activeFilter: 'all' as FilterKey, + records: [] as HistoryRecord[], + page: 1, + limit: 10, + hasMore: true, + loading: false, + }, + + onLoad() { + this.loadRecords(true) + }, + + onShow() { + this.loadRecords(true) + }, + + onPullDownRefresh() { + this.loadRecords(true).finally(() => wx.stopPullDownRefresh()) + }, + + onReachBottom() { + if (this.data.hasMore && !this.data.loading) { + this.loadRecords(false) + } + }, + + loadRecords(reset = false) { + if (this.data.loading) return Promise.resolve() + + const page = reset ? 1 : this.data.page + 1 + this.setData({ loading: true }) + + return historyList(this.data.activeFilter, page, this.data.limit).then((res: any) => { + if (res.code) { + wx.showModal({ title: '温馨提示', content: res.message, showCancel: false }) + return + } + + const list = (res.data.list as HistoryRecord[]).map((item) => ({ + ...item, + coverImage: item.coverUrl + })) + this.setData({ + records: reset ? list : this.data.records.concat(list), + page, + hasMore: res.data.hasMore, + }) + }).catch(() => { + wx.showModal({ title: '温馨提示', content: '网络异常,请稍后再试', showCancel: false }) + }).finally(() => { + this.setData({ loading: false }) + }) + }, + + handleBack() { + wx.navigateBack({ + fail: () => wx.switchTab({ url: '/pages/index/index' }), + }) + }, + + handleFilterTap(e: WechatMiniprogram.TouchEvent) { + const activeFilter = e.currentTarget.dataset.key as FilterKey + this.setData({ + activeFilter, + filters: this.data.filters.map((item) => ({ + ...item, + active: item.key === activeFilter, + })), + }) + this.loadRecords(true) + }, + + handleFailedTap() { + this.setData({ + activeFilter: 'failed', + filters: this.data.filters.map((item) => ({ ...item, active: false })), + }) + this.loadRecords(true) + }, + + handleDetail(e: WechatMiniprogram.TouchEvent) { + const rawStatus = String(e.currentTarget.dataset.status || '') + const taskId = String(e.currentTarget.dataset.taskId || '') + if (!taskId) return + + const status = rawStatus === 'failed' ? 'failed' : rawStatus === 'processing' ? 'processing' : 'done' + wx.navigateTo({ + url: '/pages/historyPackage/historyDetail/index?status=' + status + '&taskId=' + encodeURIComponent(taskId), + }) + }, + + handleDownload(e: WechatMiniprogram.TouchEvent) { + const taskId = String(e.currentTarget.dataset.taskId || '') + if (!taskId) return + + wx.showLoading({ title: '获取下载地址' }) + historyDownload(taskId).then((res: any) => { + wx.hideLoading() + if (res.code) { + wx.showModal({ title: '温馨提示', content: res.message || '下载失败', showCancel: false }) + return + } + + const url = res.data.url + if (url) { + wx.setClipboardData({ data: url }) + } else { + wx.showToast({ title: '暂无下载地址', icon: 'none' }) + } + }).catch(() => { + wx.hideLoading() + wx.showModal({ title: '温馨提示', content: '网络异常,请稍后再试', showCancel: false }) + }) + }, + + handleMore(e: WechatMiniprogram.TouchEvent) { + this.handleDetail(e) + }, + + handleRetry() { + wx.switchTab({ url: '/pages/index/index' }) + }, +}) + diff --git a/miniprogram/pages/history/history.wxml b/miniprogram/pages/history/history.wxml new file mode 100644 index 0000000..1c8eef6 --- /dev/null +++ b/miniprogram/pages/history/history.wxml @@ -0,0 +1,66 @@ + + + + 创作记录 + + + + + + + {{item.label}} + + + + 失败记录 + + + + + + + + {{item.duration}} + + + + {{item.title}} + + {{item.scene}} + {{item.avatar}} + + {{item.time}} + + + + {{item.statusText}} + + + + {{item.secondaryText}} + + + 下载 + + + + + + + 重新生成 + + + + + + 暂无创作记录 + 加载中... + + + diff --git a/miniprogram/pages/history/history.wxss b/miniprogram/pages/history/history.wxss new file mode 100644 index 0000000..45a9d19 --- /dev/null +++ b/miniprogram/pages/history/history.wxss @@ -0,0 +1,470 @@ +page { + min-height: 100vh; + background: #fbfcff; + color: #161a26; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif; +} + +.history-page { + width: 750rpx; + min-height: 100vh; + margin: 0 auto; + display: flex; + flex-direction: column; + box-sizing: border-box; + background: linear-gradient(180deg, #ffffff 0%, #fbfcff 52%, #ffffff 100%); +} + +.history-nav { + width: 100%; + display: flex; + align-items: center; + justify-content: center; +} + +.nav-back, +.nav-placeholder { + width: 58rpx; + height: 58rpx; + display: flex; + align-items: center; + justify-content: center; + flex-shrink: 0; +} + +.back-line { + width: 24rpx; + height: 24rpx; + display: block; + border-left: 5rpx solid #11151e; + border-bottom: 5rpx solid #11151e; + transform: rotate(45deg); + box-sizing: border-box; +} + +.nav-title { + font-size: 31rpx; + font-weight: 800; + color: #11141f; + letter-spacing: 0; +} + +.history-content { + flex: 1; + display: flex; + flex-direction: column; + padding: 26rpx 24rpx 24rpx; + box-sizing: border-box; +} + +.filter-row { + display: flex; + align-items: center; + justify-content: space-between; + gap: 18rpx; + margin-bottom: 26rpx; +} + +.filter-tabs { + display: flex; + align-items: center; + gap: 20rpx; + min-width: 0; +} + +.filter-chip, +.failed-btn { + height: 52rpx; + border-radius: 999rpx; + display: flex; + align-items: center; + justify-content: center; + font-size: 23rpx; + font-weight: 800; + box-sizing: border-box; + white-space: nowrap; +} + +.filter-chip { + min-width: 90rpx; + padding: 0 24rpx; + color: #727887; + background: #f4f6fb; + border: 1rpx solid #e8ebf4; + box-shadow: inset 0 1rpx 5rpx rgba(72, 82, 124, 0.04); +} + +.filter-chip.active { + color: #ffffff; + border-color: transparent; + background: linear-gradient(135deg, #5c7cff 0%, #7148f4 100%); + box-shadow: 0 8rpx 16rpx rgba(91, 96, 255, 0.28); +} + +.failed-btn { + width: 164rpx; + gap: 12rpx; + color: #3d4352; + background: #ffffff; + border: 2rpx solid #e6e8f7; + box-shadow: 0 6rpx 16rpx rgba(72, 82, 124, 0.05); +} + +.filter-icon { + width: 22rpx; + height: 24rpx; + display: block; + border: 4rpx solid #676d85; + border-bottom: 0; + border-radius: 5rpx 5rpx 2rpx 2rpx; + box-sizing: border-box; + transform: skewX(-8deg); +} + +.filter-icon::after { + content: ""; + display: block; + width: 7rpx; + height: 14rpx; + margin: 16rpx auto 0; + background: #676d85; + border-radius: 999rpx; +} + +.record-list { + display: flex; + flex-direction: column; + gap: 18rpx; +} + +.record-card { + min-height: 206rpx; + padding: 16rpx 18rpx; + border-radius: 17rpx; + display: flex; + gap: 24rpx; + background: rgba(255, 255, 255, 0.96); + border: 1rpx solid #edf0fb; + box-shadow: 0 8rpx 22rpx rgba(74, 88, 148, 0.06); + box-sizing: border-box; +} + +.thumb { + width: 278rpx; + height: 172rpx; + border-radius: 10rpx; + flex-shrink: 0; + overflow: hidden; + display: flex; + align-items: flex-end; + justify-content: flex-start; + padding: 12rpx; + box-sizing: border-box; + background: #ece6dc; +} + +.scene-layer { + display: flex; +} + +.scene-bg, +.scene-subject { + pointer-events: none; +} +/* +.scene-live { + background: + linear-gradient(90deg, rgba(249, 243, 232, 0.92), rgba(240, 235, 222, 0.74)), + linear-gradient(135deg, #e9dac9 0%, #fbf8f1 45%, #d3dcc1 100%); +} + +.scene-live::before, +.scene-classroom::before { + content: ""; + width: 76rpx; + height: 118rpx; + margin-left: 82rpx; + margin-bottom: 24rpx; + border-radius: 36rpx 36rpx 10rpx 10rpx; + background: linear-gradient(180deg, #20202a 0 24%, #fff7ef 24% 42%, #ffffff 42% 100%); + box-shadow: 0 0 0 16rpx rgba(255, 255, 255, 0.34); +} */ + +.scene-product { + /* background: + radial-gradient(circle at 80% 22%, rgba(126, 151, 102, 0.32), transparent 15%), + radial-gradient(circle at 12% 28%, rgba(126, 151, 102, 0.25), transparent 16%), + linear-gradient(135deg, #e9e2d4, #fbf8ef 48%, #d8c8ad); + justify-content: center; */ +} + +/* .scene-product::before { + content: ""; + width: 56rpx; + height: 96rpx; + margin-bottom: 32rpx; + border-radius: 11rpx 11rpx 7rpx 7rpx; + background: linear-gradient(180deg, #1e1b18 0 18%, #5b2e1d 18% 100%); + box-shadow: 0 22rpx 0 58rpx rgba(184, 151, 102, 0.22); +} + +.scene-living { + background: + radial-gradient(circle at 14% 16%, rgba(121, 151, 95, 0.26), transparent 17%), + radial-gradient(circle at 88% 20%, rgba(121, 151, 95, 0.22), transparent 14%), + linear-gradient(180deg, #eee1cf 0%, #d8c1a1 100%); + justify-content: center; +} + +.scene-living::before { + content: ""; + width: 160rpx; + height: 58rpx; + margin-bottom: 44rpx; + border-radius: 18rpx 18rpx 10rpx 10rpx; + background: linear-gradient(180deg, #f4eadf, #bf9d7c); + box-shadow: 0 48rpx 0 -18rpx rgba(106, 76, 52, 0.28); +} */ + +.duration-badge { + height: 34rpx; + min-width: 68rpx; + padding: 0 10rpx; + border-radius: 999rpx; + display: flex; + align-items: center; + justify-content: center; + color: #ffffff; + font-size: 20rpx; + font-weight: 800; + background: rgba(0, 0, 0, 0.56); + box-sizing: border-box; +} + +.record-main { + flex: 1; + min-width: 0; + display: flex; + flex-direction: column; + padding-top: 8rpx; +} + +.record-title { + font-size: 27rpx; + line-height: 1.25; + font-weight: 900; + color: #111622; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + +.tag-row { + margin-top: 16rpx; + display: flex; + align-items: center; + gap: 12rpx; +} + +.tag { + height: 34rpx; + padding: 0 14rpx; + border-radius: 999rpx; + display: flex; + align-items: center; + justify-content: center; + color: #858b9d; + background: #f3f4f8; + font-size: 19rpx; + font-weight: 800; + white-space: nowrap; +} + +.record-time { + margin-top: 18rpx; + font-size: 22rpx; + line-height: 1.2; + color: #777d92; + font-weight: 700; +} + +.status-line { + min-height: 34rpx; + margin-top: auto; + display: flex; + align-items: center; + justify-content: flex-end; + gap: 8rpx; + font-size: 21rpx; + font-weight: 900; +} + +.status-line.done { + color: #32b975; +} + +.status-line.done text { + height: 34rpx; + padding: 0 16rpx; + border-radius: 999rpx; + display: flex; + align-items: center; + background: #dcf8e9; +} + +.status-line.processing { + color: #686dff; +} + +.progress-dot { + width: 20rpx; + height: 20rpx; + border-radius: 50%; + border: 4rpx solid currentColor; + border-top-color: rgba(104, 109, 255, 0.18); + box-sizing: border-box; +} + +.status-line.failed { + color: #f06d67; +} + +.status-line.failed text { + height: 34rpx; + padding: 0 16rpx; + border-radius: 999rpx; + display: flex; + align-items: center; + background: #fff0ed; +} + +.action-row { + margin-top: 14rpx; + display: flex; + align-items: center; + gap: 18rpx; +} + +.secondary-btn, +.download-btn, +.more-btn, +.retry-btn { + height: 50rpx; + border-radius: 12rpx; + display: flex; + align-items: center; + justify-content: center; + font-size: 21rpx; + font-weight: 900; + box-sizing: border-box; +} + +.secondary-btn { + flex: 1; + min-width: 128rpx; + color: #555b6e; + background: #ffffff; + border: 2rpx solid #dadcff; +} + +.download-btn, +.retry-btn { + width: 158rpx; + color: #ffffff; + gap: 10rpx; + background: linear-gradient(135deg, #5a84ff, #763fee); + box-shadow: 0 8rpx 14rpx rgba(97, 86, 241, 0.24); +} + +.download-icon { + width: 22rpx; + height: 24rpx; + display: block; + border-bottom: 4rpx solid currentColor; + box-sizing: border-box; +} + +.download-icon::before { + content: ""; + display: block; + width: 4rpx; + height: 22rpx; + margin: 0 auto; + background: currentColor; + border-radius: 999rpx; +} + +.download-icon::after { + content: ""; + display: block; + width: 14rpx; + height: 14rpx; + margin: -12rpx auto 0; + border-right: 4rpx solid currentColor; + border-bottom: 4rpx solid currentColor; + transform: rotate(45deg); + box-sizing: border-box; +} + +.more-btn, +.retry-btn { + background: #ffffff; + color: #50566c; + border: 2rpx solid #e0e2ff; + box-shadow: none; +} + +.more-btn { + width: 100rpx; + gap: 7rpx; +} + +.more-btn text { + width: 8rpx; + height: 8rpx; + border-radius: 50%; + background: currentColor; +} + + +.thumb-placeholder { + width: 100%; + height: 100%; +} + +.icon-placeholder { + display: block; + flex-shrink: 0; + background: none; + border: 0; + box-shadow: none; + transform: none; +} + +.thumb { + position: relative; + padding: 0; + background: #ffffff; +} + +.duration-badge { + position: absolute; + left: 12rpx; + bottom: 12rpx; +} + +.failed-btn.active { + color: #999999; + /* border-color: transparent; */ + /* background: linear-gradient(135deg, #f06d67 0%, #ff8a62 100%); */ +} + +.empty-state { + min-height: 360rpx; + display: flex; + align-items: center; + justify-content: center; + color: #8a91a3; + font-size: 25rpx; + font-weight: 800; +} diff --git a/miniprogram/pages/historyPackage/historyDetail/index.json b/miniprogram/pages/historyPackage/historyDetail/index.json new file mode 100644 index 0000000..b4acf56 --- /dev/null +++ b/miniprogram/pages/historyPackage/historyDetail/index.json @@ -0,0 +1,6 @@ +{ + "usingComponents": { + "custom-nav": "/components/custom-nav/custom-nav" + }, + "navigationStyle": "custom" +} diff --git a/miniprogram/pages/historyPackage/historyDetail/index.ts b/miniprogram/pages/historyPackage/historyDetail/index.ts new file mode 100644 index 0000000..69ff483 --- /dev/null +++ b/miniprogram/pages/historyPackage/historyDetail/index.ts @@ -0,0 +1,217 @@ +import { historyCancel, historyDelete, historyDetail, historyDownload } from "../../../utils/request" + +type DetailStatus = 'done' | 'processing' | 'failed' + +const emptyDetail = { + taskId: '', + title: '', + status: 'done', + statusText: '', + progress: 0, + pageTitle: '作品详情', + pageClass: 'success-page', + videoUrl: '', + coverUrl: '', + duration: '', + createTime: '', + finishTime: '', + failureTime: '', + failureStage: '', + failureReason: '', + scriptText: '', + avatar: { name: '默认数字人', imageUrl: '' }, + voice: { name: '默认音色', audioUrl: '' }, + background: { name: '默认背景', coverUrl: '', imageUrl: '' }, + steps: [] as any[], + avatarImage: '/static/images/my/image.png', + backgroundImage: '/static/images/my/image.png', + videoCover: '/static/images/my/image.png', + failureMessage: '生成失败,请稍后重试', + failureDisplayTime: '', + successTime: '', + taskDisplayId: '', + scriptDisplayText: '暂无文案', +} + +Page({ + data: { + status: 'done' as DetailStatus, + isFailed: false, + isProcessing: false, + pageTitle: '作品详情', + pageClass: 'success-page', + taskId: '', + detail: emptyDetail as any, + progressStyle: 'width: 0%;', + }, + + onLoad(query: Record) { + const status: DetailStatus = query.status === 'failed' + ? 'failed' + : query.status === 'processing' + ? 'processing' + : 'done' + + this.setStatus(status, query.taskId || '') + if (query.taskId) { + this.loadDetail(query.taskId) + } + }, + + loadDetail(taskId: string) { + wx.showLoading({ title: '加载中' }) + historyDetail(taskId).then((res: any) => { + wx.hideLoading() + if (res.code) { + wx.showModal({ title: '温馨提示', content: res.message || '获取详情失败', showCancel: false }) + return + } + + const data = res.data || {} + const detail = { ...emptyDetail, ...data } + detail.avatar = { ...emptyDetail.avatar, ...(data.avatar || {}) } + detail.voice = { ...emptyDetail.voice, ...(data.voice || {}) } + detail.background = { ...emptyDetail.background, ...(data.background || {}) } + detail.avatarImage = detail.avatar.imageUrl || '/static/images/my/image.png' + detail.backgroundImage = detail.background.coverUrl || detail.background.imageUrl || '/static/images/my/image.png' + detail.videoCover = detail.coverUrl || detail.avatar.imageUrl || '/static/images/my/image.png' + detail.failureMessage = detail.failureReason || '生成失败,请稍后重试' + detail.failureDisplayTime = detail.failureTime || detail.finishTime || detail.createTime + detail.successTime = detail.finishTime || detail.createTime + detail.taskDisplayId = detail.taskId || taskId + detail.scriptDisplayText = detail.scriptText || '暂无文案'; + + let status = ''; + if (detail.status === 'failed') { + status = 'failed'; + } else { + status = detail.status === 'processing' ? 'processing' : 'done'; + } + this.setData({ + detail, + progressStyle: 'width: ' + Math.max(0, Math.min(100, Number(+detail.progress))) + '%;', + }) + this.setStatus(status as DetailStatus, detail.taskId || taskId) + }).catch(() => { + wx.hideLoading() + wx.showModal({ title: '温馨提示', content: '网络异常,请稍后再试', showCancel: false }) + }) + }, + + setStatus(status: DetailStatus, taskId: string) { + this.setData({ + status, + isFailed: status === 'failed', + isProcessing: status === 'processing', + pageTitle: status === 'failed' ? '失败详情' : status === 'processing' ? '生成详情' : '作品详情', + pageClass: status === 'failed' ? 'failed-page' : status === 'processing' ? 'processing-page' : 'success-page', + taskId, + }) + }, + + handleBack() { + wx.navigateBack({ + fail: () => wx.switchTab({ url: '/pages/history/history' }), + }) + }, + + handleDownload() { + if (!this.data.taskId) return + + wx.showLoading({ title: '获取下载地址' }) + historyDownload(this.data.taskId).then((res: any) => { + wx.hideLoading() + if (res.code) { + wx.showModal({ title: '温馨提示', content: res.message || '下载失败', showCancel: false }) + return + } + + const url = (res.data && res.data.url) || '' + if (url) { + wx.setClipboardData({ data: url }) + } else { + wx.showToast({ title: '暂无下载地址', icon: 'none' }) + } + }).catch(() => { + wx.hideLoading() + wx.showModal({ title: '温馨提示', content: '网络异常,请稍后再试', showCancel: false }) + }) + }, + + handleRetry() { + wx.switchTab({ url: '/pages/index/index' }) + }, + + handleEdit() { + wx.switchTab({ url: '/pages/index/index' }) + }, + + handleViewCopy() { + this.handleCopyText() + }, + + handleCopyText() { + const detail = this.data.detail || {} + const text = detail.scriptText || '' + if (!text) { + wx.showToast({ title: '暂无文案', icon: 'none' }) + return + } + wx.setClipboardData({ data: text }) + }, + + handleSame() { + wx.switchTab({ url: '/pages/index/index' }) + }, + + handleRecordVoice() { + wx.switchTab({ url: '/pages/index/index' }) + }, + + handleBackToHistory() { + wx.switchTab({ url: '/pages/history/history' }) + }, + + handleCancel() { + if (!this.data.taskId) return + + wx.showModal({ + title: '确认取消', + content: '确定取消当前生成任务吗?', + success: (modal) => { + if (!modal.confirm) return + historyCancel(this.data.taskId).then((res: any) => { + if (res.code) { + wx.showModal({ title: '温馨提示', content: res.message || '取消失败', showCancel: false }) + return + } + wx.showToast({ title: '已取消', icon: 'success' }) + this.loadDetail(this.data.taskId) + }) + }, + }) + }, + + handleDelete() { + if (!this.data.taskId) return + + wx.showModal({ + title: '确认删除', + content: '删除后将不再展示该创作记录', + success: (modal) => { + if (!modal.confirm) return + historyDelete(this.data.taskId).then((res: any) => { + if (res.code) { + wx.showModal({ title: '温馨提示', content: res.message || '删除失败', showCancel: false }) + return + } + wx.showToast({ title: '已删除', icon: 'success' }) + setTimeout(() => this.handleBackToHistory(), 400) + }) + }, + }) + }, +}) + + + diff --git a/miniprogram/pages/historyPackage/historyDetail/index.wxml b/miniprogram/pages/historyPackage/historyDetail/index.wxml new file mode 100644 index 0000000..ebb4120 --- /dev/null +++ b/miniprogram/pages/historyPackage/historyDetail/index.wxml @@ -0,0 +1,79 @@ + + + + + {{pageTitle}} + + + + + + + + ! + + 本次生成失败 + {{detail.failureMessage}} + + + + + 失败时间{{detail.failureDisplayTime}} + 数字人形象{{detail.avatar.name}} + 背景模板{{detail.background.name}} + 音色状态{{detail.voice.name}} + 失败原因{{detail.failureMessage}} + + + 建议建议检查数字人形象、音色和口播文案后重新生成。 + 重新生成 + 重新录取音色 + 删除记录 + + + + + + AI + + AI 正在生成中 + 请耐心等待,精彩内容即将呈现 + {{detail.progress}}% + + + + {{item.name}} + + + + + 任务ID{{detail.taskDisplayId}} + 数字人形象{{detail.avatar.name}} + 背景模板{{detail.background.name}} + 音色{{detail.voice.name}} + 创建时间{{detail.createTime}} + + + 返回创作记录 + 取消任务 + 生成完成后会自动保存到创作记录 + + + + {{detail.duration}} + + + 创作状态{{detail.statusText}} + 生成时间{{detail.successTime}} + 数字人形象{{detail.avatar.name}} + 背景模板{{detail.background.name}} + 音色{{detail.voice.name}} + 口播文案{{detail.scriptDisplayText}}复制文案 + + + 下载视频重新生成继续编辑 + 相关操作复制文案再次生成同款删除记录 + + + + diff --git a/miniprogram/pages/historyPackage/historyDetail/index.wxss b/miniprogram/pages/historyPackage/historyDetail/index.wxss new file mode 100644 index 0000000..f5386e9 --- /dev/null +++ b/miniprogram/pages/historyPackage/historyDetail/index.wxss @@ -0,0 +1,732 @@ +page { + min-height: 100vh; + background: #fbfcff; + color: #111827; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif; +} + +.detail-page { + width: 750rpx; + min-height: 100vh; + margin: 0 auto; + display: flex; + flex-direction: column; + box-sizing: border-box; + background: linear-gradient(180deg, #ffffff 0%, #fbfcff 58%, #ffffff 100%); +} + +.detail-nav { + width: 100%; + display: flex; + align-items: center; + justify-content: space-between; +} + +.nav-back, +.nav-placeholder { + width: 58rpx; + height: 58rpx; + display: flex; + align-items: center; + justify-content: flex-start; + flex-shrink: 0; +} + +.nav-back text { + width: 24rpx; + height: 24rpx; + display: block; + border-left: 5rpx solid #111827; + border-bottom: 5rpx solid #111827; + transform: rotate(45deg); + box-sizing: border-box; +} + +.nav-title { + font-size: 31rpx; + font-weight: 900; + color: #111827; +} + +.detail-content { + flex: 1; + display: flex; + flex-direction: column; + gap: 18rpx; + padding: 24rpx 20rpx 34rpx; + box-sizing: border-box; +} + +.video-card { + height: 332rpx; + border-radius: 14rpx; + overflow: hidden; + display: flex; + align-items: center; + justify-content: center; + background: + radial-gradient(circle at 12% 30%, rgba(111, 139, 78, 0.34), transparent 15%), + radial-gradient(circle at 88% 30%, rgba(111, 139, 78, 0.26), transparent 13%), + linear-gradient(90deg, #e7d9c7 0%, #faf2e8 52%, #d8c4a9 100%); +} + +.speaker-avatar { + width: 150rpx; + height: 230rpx; + border-radius: 75rpx 75rpx 24rpx 24rpx; + background: + radial-gradient(circle at 38% 36%, #17131a 0 6rpx, transparent 7rpx), + radial-gradient(circle at 62% 36%, #17131a 0 6rpx, transparent 7rpx), + radial-gradient(circle at 50% 50%, #df7f87 0 8rpx, transparent 9rpx), + linear-gradient(180deg, #17131a 0 28%, #ffe0cd 28% 50%, #ffffff 50% 100%); +} + +.play-circle { + width: 96rpx; + height: 96rpx; + margin-left: -126rpx; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + background: rgba(0, 0, 0, 0.38); + border: 4rpx solid rgba(255, 255, 255, 0.76); +} + +.play-circle text { + width: 0; + height: 0; + border-top: 24rpx solid transparent; + border-bottom: 24rpx solid transparent; + border-left: 34rpx solid #ffffff; + margin-left: 8rpx; +} + +.duration-badge { + align-self: flex-end; + margin-left: -310rpx; + margin-bottom: 18rpx; + height: 36rpx; + padding: 0 12rpx; + border-radius: 999rpx; + display: flex; + align-items: center; + color: #ffffff; + font-size: 20rpx; + font-weight: 900; + background: rgba(0, 0, 0, 0.56); +} + +.info-card, +.related-card, +.failure-alert, +.advice-card { + border-radius: 15rpx; + background: rgba(255, 255, 255, 0.96); + border: 1rpx solid #eef1fb; + box-shadow: 0 6rpx 18rpx rgba(82, 90, 146, 0.05); + box-sizing: border-box; +} + +.info-card { + padding: 18rpx 24rpx; + display: flex; + flex-direction: column; +} + +.info-row { + min-height: 54rpx; + display: flex; + align-items: center; + justify-content: space-between; + gap: 20rpx; + border-bottom: 1rpx solid #eef0f6; +} + +.info-row:last-child { + border-bottom: 0; +} + +.info-label { + width: 150rpx; + flex-shrink: 0; + color: #596072; + font-size: 22rpx; + font-weight: 800; +} + +.info-value, +.value-with-thumb { + flex: 1; + display: flex; + align-items: center; + justify-content: flex-end; + gap: 16rpx; + color: #33394b; + font-size: 22rpx; + font-weight: 700; + text-align: right; +} + +.status-done { + color: #32c07a; + font-size: 22rpx; + font-weight: 900; +} + +.mini-avatar { + width: 40rpx; + height: 40rpx; + border-radius: 10rpx; + background: linear-gradient(180deg, #1e1b20 0 35%, #ffd8c8 35% 62%, #ffffff 62% 100%); +} + +.mini-scene { + width: 50rpx; + height: 34rpx; + border-radius: 5rpx; +} + +.live-scene { + background: linear-gradient(135deg, #eadfcc, #ffffff 52%, #bbc99d); +} + +.living-scene { + background: linear-gradient(135deg, #e0c6a6, #fff4e9 52%, #b28b68); +} + +.audio-thumb { + width: 50rpx; + height: 34rpx; + border-radius: 8rpx; + display: flex; + align-items: center; + justify-content: center; + background: #f1efff; +} + +.audio-thumb text, +.voice-icon, +.refresh-icon, +.copy-icon, +.edit-icon, +.download-icon, +.trash-icon { + display: block; + color: currentColor; +} + +.audio-thumb text { + width: 22rpx; + height: 24rpx; + border-left: 5rpx solid #665cff; + border-right: 5rpx solid #665cff; + box-sizing: border-box; +} + +.copy-row { + align-items: flex-start; + padding: 14rpx 0; +} + +.copy-content { + flex: 1; + display: flex; + flex-direction: column; + align-items: flex-end; + gap: 12rpx; + color: #33394b; + font-size: 21rpx; + line-height: 1.45; + text-align: right; +} + +.view-copy { + display: flex; + align-items: center; + gap: 8rpx; + color: #665cff; + font-size: 21rpx; + font-weight: 900; +} + +.view-copy text, +.item-arrow { + width: 14rpx; + height: 14rpx; + border-top: 4rpx solid currentColor; + border-right: 4rpx solid currentColor; + transform: rotate(45deg); +} + +.action-buttons { + display: grid; + grid-template-columns: 1fr 1fr 1fr; + gap: 22rpx; +} + +.download-action, +.outline-action, +.primary-action { + height: 66rpx; + border-radius: 12rpx; + display: flex; + align-items: center; + justify-content: center; + gap: 12rpx; + font-size: 23rpx; + font-weight: 900; + box-sizing: border-box; +} + +.download-action, +.primary-action { + color: #ffffff; + background: linear-gradient(135deg, #4f85ff 0%, #7d42f0 100%); + box-shadow: 0 8rpx 18rpx rgba(91, 83, 244, 0.18); +} + +.outline-action { + color: #665cff; + background: #ffffff; + border: 2rpx solid #dcdcff; +} + +.download-icon { + width: 22rpx; + height: 24rpx; + border-bottom: 4rpx solid currentColor; +} + +.refresh-icon { + width: 22rpx; + height: 22rpx; + border: 4rpx solid currentColor; + border-left-color: transparent; + border-radius: 50%; + box-sizing: border-box; +} + +.edit-icon { + width: 22rpx; + height: 22rpx; + border-left: 5rpx solid currentColor; + border-bottom: 5rpx solid currentColor; + transform: rotate(-45deg); + box-sizing: border-box; +} + +.related-card { + padding: 22rpx 24rpx; +} + +.related-title { + display: block; + padding-bottom: 18rpx; + color: #121722; + font-size: 25rpx; + font-weight: 900; + border-bottom: 1rpx solid #edf0f6; +} + +.related-item { + min-height: 58rpx; + display: flex; + align-items: center; + gap: 18rpx; + color: #4b5262; + font-size: 23rpx; + font-weight: 800; + border-bottom: 1rpx solid #edf0f6; +} + +.related-item:last-child { + border-bottom: 0; +} + +.related-item text:nth-child(2) { + flex: 1; +} + +.related-item.danger { + color: #ff5d59; +} + +.copy-icon { + width: 22rpx; + height: 22rpx; + border: 4rpx solid currentColor; + border-radius: 4rpx; + box-sizing: border-box; +} + +.trash-icon { + width: 22rpx; + height: 24rpx; + border: 4rpx solid currentColor; + border-top: 0; + border-radius: 0 0 5rpx 5rpx; + box-sizing: border-box; +} + +.failure-alert { + min-height: 146rpx; + padding: 28rpx 36rpx; + display: flex; + align-items: center; + gap: 30rpx; + background: #fff4f2; + border-color: #ffd2ce; +} + +.alert-icon { + width: 80rpx; + height: 70rpx; + border-radius: 14rpx; + display: flex; + align-items: center; + justify-content: center; + color: #ffffff; + font-size: 42rpx; + font-weight: 900; + background: #f05a52; + transform: perspective(120rpx) rotateX(8deg); +} + +.alert-copy { + display: flex; + flex-direction: column; + gap: 14rpx; +} + +.alert-title { + color: #e64038; + font-size: 29rpx; + font-weight: 900; +} + +.alert-desc { + color: #7d5d5d; + font-size: 23rpx; + font-weight: 700; +} + +.fail-info-card .info-row { + min-height: 66rpx; +} + +.voice-error { + flex: 1; + display: flex; + align-items: center; + justify-content: flex-end; + gap: 10rpx; + color: #ef514c; + font-size: 24rpx; + font-weight: 900; +} + +.error-dot { + width: 30rpx; + height: 30rpx; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + color: #ffffff; + font-size: 17rpx; + background: #ef514c; +} + +.reason-row { + align-items: flex-start; + padding: 18rpx 0; +} + +.reason-text { + flex: 1; + color: #505668; + font-size: 22rpx; + line-height: 1.45; + font-weight: 700; +} + +.advice-card { + padding: 24rpx 28rpx; + display: flex; + flex-direction: column; + gap: 18rpx; + background: #fff9ea; + border-color: #f6d99e; +} + +.advice-head { + display: flex; + align-items: center; + gap: 14rpx; + color: #4b2a0d; + font-size: 25rpx; + font-weight: 900; +} + +.bulb-icon { + width: 34rpx; + height: 34rpx; + border: 4rpx solid #ad7b2b; + border-radius: 50%; + box-sizing: border-box; +} + +.advice-text { + color: #5a6274; + font-size: 23rpx; + line-height: 1.65; + font-weight: 700; +} + +.failed-page .primary-action, +.failed-page .outline-action { + height: 84rpx; + border-radius: 13rpx; + font-size: 28rpx; +} + +.failed-page .outline-action { + border-color: #dcdcff; +} + +.voice-icon { + width: 24rpx; + height: 28rpx; + border-left: 5rpx solid currentColor; + border-right: 5rpx solid currentColor; + box-sizing: border-box; +} + +.delete-link { + height: 72rpx; + display: flex; + align-items: center; + justify-content: center; + color: #f05a52; + font-size: 28rpx; + font-weight: 800; +} + +.processing-page .detail-content { + gap: 26rpx; + padding-left: 32rpx; + padding-right: 32rpx; +} + +.processing-card { + border-radius: 17rpx; + overflow: hidden; + display: flex; + flex-direction: column; + background: #ffffff; + border: 1rpx solid #e6e9fb; + box-shadow: 0 8rpx 22rpx rgba(82, 90, 146, 0.06); +} + +.processing-head { + min-height: 226rpx; + padding: 28rpx 28rpx 26rpx; + display: flex; + align-items: center; + gap: 30rpx; + background: linear-gradient(100deg, #f4f6ff, #ffffff); + box-sizing: border-box; +} + +.ai-visual { + width: 178rpx; + height: 158rpx; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + flex-shrink: 0; +} + +.ai-box { + width: 88rpx; + height: 88rpx; + border-radius: 24rpx; + display: flex; + align-items: center; + justify-content: center; + color: #ffffff; + font-size: 28rpx; + font-weight: 900; + background: linear-gradient(135deg, #7d74ff, #3c93f4); + box-shadow: 22rpx 10rpx 0 rgba(86, 204, 255, 0.26), 0 14rpx 26rpx rgba(77, 83, 234, 0.24); +} + +.ai-base { + width: 150rpx; + height: 42rpx; + margin-top: -2rpx; + border-radius: 50%; + background: linear-gradient(90deg, #6d55f3, #ffffff 50%, #8a78ff); + box-shadow: 0 10rpx 18rpx rgba(96, 116, 255, 0.18); +} + +.processing-copy { + flex: 1; + min-width: 0; + display: flex; + flex-direction: column; +} + +.processing-title { + color: #101522; + font-size: 34rpx; + line-height: 1.2; + font-weight: 900; +} + +.processing-desc { + margin-top: 16rpx; + color: #6d7385; + font-size: 24rpx; + font-weight: 700; +} + +.progress-row { + margin-top: 34rpx; + display: flex; + align-items: center; + gap: 16rpx; + color: #4a4e63; + font-size: 24rpx; + font-weight: 800; +} + +.progress-track { + flex: 1; + height: 16rpx; + border-radius: 999rpx; + background: #e5e6fb; + overflow: hidden; +} + +.progress-fill { + width: 78%; + height: 100%; + border-radius: 999rpx; + background: linear-gradient(90deg, #4d82ff, #7d42f0); +} + +.stage-row { + min-height: 150rpx; + padding: 28rpx 28rpx 22rpx; + display: flex; + align-items: flex-start; + justify-content: space-between; + border-top: 1rpx solid #edf0f7; + box-sizing: border-box; +} + +.stage-item { + width: 104rpx; + display: flex; + flex-direction: column; + align-items: center; + gap: 16rpx; + color: #575e70; + font-size: 21rpx; + font-weight: 800; + text-align: center; +} + +.stage-dot { + width: 44rpx; + height: 44rpx; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + border: 4rpx solid #d5d4ff; + box-sizing: border-box; +} + +.stage-item.done .stage-dot { + background: #5d6dff; + border-color: #5d6dff; +} + +.stage-dot text { + width: 17rpx; + height: 9rpx; + border-left: 4rpx solid #ffffff; + border-bottom: 4rpx solid #ffffff; + transform: rotate(-45deg); +} + +.stage-dot.loading { + border-color: #6d5fff; + border-top-color: rgba(109, 95, 255, 0.16); +} + +.stage-line { + width: 78rpx; + height: 4rpx; + margin-top: 20rpx; + border-radius: 999rpx; + background: #d8d8ff; +} + +.stage-line.dashed { + background: repeating-linear-gradient(90deg, #d8d8ff 0 10rpx, transparent 10rpx 18rpx); +} + +.processing-info-card .info-row { + min-height: 74rpx; +} + +.product-scene { + background: linear-gradient(135deg, #eadfcc, #fff8ef 52%, #c8b089); +} + +.clock-icon { + width: 32rpx; + height: 32rpx; + border-radius: 50%; + border: 4rpx solid #665cff; + box-sizing: border-box; +} + +.processing-page .primary-action, +.processing-page .outline-action { + height: 84rpx; + border-radius: 13rpx; + font-size: 29rpx; +} + +.bottom-tip { + height: 72rpx; + border-radius: 12rpx; + display: flex; + align-items: center; + justify-content: center; + gap: 14rpx; + color: #6d69c9; + font-size: 24rpx; + font-weight: 800; + background: #f4f5ff; + border: 1rpx solid #e2e5ff; +} + +.bottom-tip .bulb-icon { + border-color: #75a4ff; +} + +.icon-placeholder { + display: block; + flex-shrink: 0; + background: none; + border: 0; + box-shadow: none; + transform: none; +} diff --git a/miniprogram/pages/index/index.json b/miniprogram/pages/index/index.json new file mode 100644 index 0000000..d7c60b3 --- /dev/null +++ b/miniprogram/pages/index/index.json @@ -0,0 +1,7 @@ +{ + "usingComponents": { + "custom-nav": "/components/custom-nav/custom-nav", + "checkin-popup": "/components/checkin-popup/checkin-popup" + }, + "navigationStyle": "custom" +} diff --git a/miniprogram/pages/index/index.ts b/miniprogram/pages/index/index.ts new file mode 100644 index 0000000..af18bd1 --- /dev/null +++ b/miniprogram/pages/index/index.ts @@ -0,0 +1,197 @@ +import { analysis, tasksearch, polishScript, createTask } from "../../utils/request" + +const sampleText = '解析中...' +const checkinStorageKey = 'lastCheckinDate' + +function getTodayKey() { + const now = new Date() + const year = now.getFullYear() + const month = String(now.getMonth() + 1).padStart(2, '0') + const day = String(now.getDate()).padStart(2, '0') + return `${year}-${month}-${day}` +} + +Component({ + data: { + parsed: false, + videoLink: '', + scriptText: sampleText, + showCheckinPopup: false, + taskId: '', + parseId: '', + polishing: false + }, + lifetimes: { + attached() { + const today = getTodayKey() + const lastCheckinDate = wx.getStorageSync(checkinStorageKey) + + if (lastCheckinDate !== today) { + this.setData({ showCheckinPopup: true }) + } + }, + }, + methods: { + handleInput(e: any) { + this.setData({ + videoLink: e.detail.value, + }) + }, + onUnload() { + this.setData({ videoLink: '', parsed: false, scriptText: '' }) + }, + handlePaste() { + wx.getClipboardData({ + success: (res) => { + this.setData({ + videoLink: res.data || '0.58 J@i.cN 08/24 :0pm ULw:/ # 新到 # 国五排放 # 货车出售转让 https://v.douyin.com/tHoCmTcQT2Q/ 复制此链接,打开Dou音搜索,直接观看视频!', + }) + }, + fail: () => { + this.setData({ + videoLink: '0.58 J@i.cN 08/24 :0pm ULw:/ # 新到 # 国五排放 # 货车出售转让 https://v.douyin.com/tHoCmTcQT2Q/ 复制此链接,打开Dou音搜索,直接观看视频!', + }) + }, + }) + }, + handleParse() { + if (this.data.videoLink == '') { + wx.showModal({ + title: '温馨提示', + content: '解析链接不能为空', + showCancel: false + }) + return; + } + wx.showLoading({ title: '解析中.' }); + analysis(this.data.videoLink).then((res: any) => { + console.log(res); + wx.hideLoading(); + if (!res.code) { + this.setData({ + parsed: true, + taskId: '', + parseId: String(res.data.parseId || res.data.taskId || '') + }) + wx.showLoading({ title: '等待结果中...', mask: true }); + this.tasksearch(String(res.data.parseId || res.data.taskId || '')) + } else { + wx.showModal({ + title: '温馨提示', + content: '解析失败,请确认链接的有效性', + showCancel: false + }) + } + }).catch((err) => { + console.log(err) + wx.hideLoading(); + wx.showModal({ + title: '温馨提示', + content: '解析失败,请重试', + showCancel: false + }) + }) + }, + + tasksearch(taskId: string) { + let that = this; + tasksearch(taskId).then((res: any) => { + if (!res.code) { + wx.hideLoading(); + + this.setData({ scriptText: (res.data && res.data.scriptText) || '' }) + } else { + setTimeout(() => that.tasksearch(taskId), 500); + } + }) + }, + + handleReset() { + this.setData({ + parsed: false, + scriptText: '', + }) + this.handleParse(); + }, + handleCopy() { + wx.setClipboardData({ + data: this.data.scriptText, + fail(err) { + console.log(err); + wx.showModal({ + title: '温馨提示', + content: '您还未授于剪切板权限' + }) + } + }) + }, + handlePolish() { + if (!(this.data.parseId || this.data.taskId) || !this.data.scriptText) { + wx.showToast({ title: '暂无可润色文案', icon: 'none' }) + return + } + if (this.data.polishing) return + + this.setData({ polishing: true }) + wx.showLoading({ title: '润色中...', mask: true }) + polishScript(this.data.parseId || this.data.taskId, this.data.scriptText, 'optimize').then((res: any) => { + wx.hideLoading() + this.setData({ polishing: false }) + if (!res.code) { + this.setData({ scriptText: res.data.scriptText }) + wx.showToast({ title: '已润色', icon: 'success' }) + return + } + wx.showModal({ title: '温馨提示', content: res.message || '润色失败,请稍后再试', showCancel: false }) + }).catch((err) => { + console.log(err) + wx.hideLoading() + this.setData({ polishing: false }) + wx.showModal({ title: '温馨提示', content: '润色失败,请稍后再试', showCancel: false }) + }) + }, + handleGoCreate() { + const parseId = this.data.parseId || this.data.taskId + if (!parseId || !this.data.scriptText) { + wx.showToast({ title: '请先完成文案提取', icon: 'none' }) + return + } + + wx.showLoading({ title: '创建任务中', mask: true }) + createTask(parseId, this.data.scriptText).then((res: any) => { + wx.hideLoading() + if (!res.code && res.data && res.data.taskId) { + this.setData({ taskId: res.data.taskId }) + wx.navigateTo({ + url: '/pages/aiPackage/preview/index?taskId=' + res.data.taskId, + }) + return + } + wx.showModal({ title: '温馨提示', content: res.message || '创建任务失败,请稍后再试', showCancel: false }) + }).catch(() => { + wx.hideLoading() + wx.showModal({ title: '温馨提示', content: '网络异常,请稍后再试', showCancel: false }) + }) + }, + handleExperience() { + this.setData({ + videoLink: 'https://v.douyin.com/example/', + parsed: true, + }) + }, + handleCheckinClose() { + wx.setStorageSync(checkinStorageKey, getTodayKey()) + this.setData({ showCheckinPopup: false }) + }, + handleCheckinRule() { + wx.showToast({ title: '每日签到可领取金币', icon: 'none' }) + }, + }, +}) + + + + + + + diff --git a/miniprogram/pages/index/index.wxml b/miniprogram/pages/index/index.wxml new file mode 100644 index 0000000..3049331 --- /dev/null +++ b/miniprogram/pages/index/index.wxml @@ -0,0 +1,96 @@ + + + + 数字人视频工厂 + + + 金币 + 128 + + + + + + + + + + + + + 1 + 粘贴视频链接 + + + ? + 如何获取链接? + + + + + + 一键粘贴 + + + + + 开始解析 + + + + + + + + 链接解析成功 + 已为你提取到口播文案 + + 重新解析 + + + + + 提取到的文案 + + + 复制文案 + + + + {{scriptText}} + + + + + AI 一键润色 + + 让口播更自然,更吸引人 + + + + + + 润色后可进入下一步,设置数字人和视频背景 + + + + 去生成数字人视频 + + + + + + + + + + + + + + + + + + + diff --git a/miniprogram/pages/index/index.wxss b/miniprogram/pages/index/index.wxss new file mode 100644 index 0000000..51c84a6 --- /dev/null +++ b/miniprogram/pages/index/index.wxss @@ -0,0 +1,809 @@ +page { + min-height: 100vh; + background: #f8faff; + color: #101522; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif; +} + +.home-page { + width: 750rpx; + min-height: 100vh; + margin: 0 auto; + display: flex; + flex-direction: column; + box-sizing: border-box; + /* background: + radial-gradient(circle at 74% 11%, rgba(116, 114, 255, 0.13), transparent 18%), + linear-gradient(180deg, #ffffff 0%, #f7f9ff 56%, #ffffff 100%); */ +} + +.home-content { + flex: 1; + display: flex; + flex-direction: column; + gap: 24rpx; + padding: 22rpx 28rpx 22rpx; + box-sizing: border-box; +} + +.topbar { + flex: 1; + display: flex; + align-items: center; + justify-content: space-between; + min-height: 44px; +} + +.brand { + font-size: 32rpx; + line-height: 1.2; + font-weight: 700; + letter-spacing: 0; + color: #121521; +} + +.coin-pill { + display: flex; + align-items: center; + gap: 8rpx; + height: 52rpx; + margin-right: 160rpx; + margin-bottom: 10rpx; + padding: 0 22rpx 0 12rpx; + border-radius: 999rpx; + background: rgba(255, 255, 255, 0.92); + box-shadow: 0 6rpx 18rpx rgba(84, 91, 167, 0.14); + border: 1rpx solid rgba(222, 226, 255, 0.88); +} + +.coin-icon { + width: 32rpx; + height: 32rpx; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + color: #ffffff; + font-size: 18rpx; + font-weight: 800; + background: linear-gradient(135deg, #ffd875, #ff9f25); +} + +.coin-label { + font-size: 26rpx; + font-weight: 700; + color: #25283a; +} + +.coin-count { + font-size: 26rpx; + font-weight: 800; + color: #6763ff; +} + +.hero { + display: flex; + align-items: center; + justify-content: space-between; + min-height: 238rpx; + padding-top: 16rpx; +} + +.hero-copy { + flex: 1; + display: flex; + flex-direction: column; + min-width: 0; +} + +.hero-title-accent, +.hero-title-main { + display: block; + font-size: 44rpx; + line-height: 1.2; + font-weight: 900; + letter-spacing: 0; +} + +.hero-title-accent { + color: #6356ff; + text-shadow: 0 5rpx 0 rgba(99, 86, 255, 0.12); +} + +.hero-title-main { + margin-top: 10rpx; + color: #070a16; +} + +.hero-subtitle { + margin-top: 32rpx; + font-size: 24rpx; + line-height: 1.4; + color: #4a4e5d; +} + +.hero-visual { + width: 236rpx; + min-height: 202rpx; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + flex-shrink: 0; + margin-left: 8rpx; +} + +.visual-halo { + width: 162rpx; + height: 162rpx; + border-radius: 50%; + background: linear-gradient(135deg, rgba(111, 107, 255, 0.18), rgba(92, 191, 255, 0.05)); + margin-bottom: -138rpx; + transform: translateX(18rpx); +} + +.visual-row { + display: flex; + align-items: center; + justify-content: center; + margin-bottom: -16rpx; +} + +.video-tile { + width: 110rpx; + height: 100rpx; + border-radius: 28rpx; + display: flex; + align-items: center; + justify-content: center; + background: linear-gradient(135deg, #7d6dff 0%, #358cf3 100%); + box-shadow: 22rpx 12rpx 0 rgba(81, 210, 255, 0.34), 0 16rpx 34rpx rgba(77, 83, 234, 0.34); + transform: translateY(-18rpx); +} + +.play-mark { + width: 0; + height: 0; + border-top: 24rpx solid transparent; + border-bottom: 24rpx solid transparent; + border-left: 34rpx solid #ffffff; + margin-left: 8rpx; +} + +.ai-chip { + width: 48rpx; + height: 50rpx; + border-radius: 14rpx; + display: flex; + align-items: center; + justify-content: center; + color: #ffffff; + font-size: 23rpx; + font-weight: 800; + background: linear-gradient(135deg, #579dff, #8852ff); + box-shadow: 0 10rpx 22rpx rgba(109, 88, 255, 0.28); + margin-left: -4rpx; + transform: translateY(8rpx); +} + +.orbital-base { + width: 178rpx; + height: 58rpx; + border-radius: 50%; + background: linear-gradient(90deg, #6c55f8, #edf6ff 46%, #8873ff); + box-shadow: 0 12rpx 22rpx rgba(96, 116, 255, 0.22); + display: flex; + align-items: center; + justify-content: center; +} + +.base-center { + width: 110rpx; + height: 34rpx; + border-radius: 50%; + background: #ffffff; + box-shadow: inset 0 0 14rpx rgba(92, 115, 255, 0.2); +} + +.card, +.sample-card, +.success-strip, +.tip-strip { + /* border: 1rpx solid rgba(215, 220, 249, 0.95); */ + box-shadow: 0 8rpx 24rpx rgba(74, 88, 148, 0.06); + background: rgba(255, 255, 255, 0.94); + box-sizing: border-box; +} + +.card { + border-radius: 18rpx; + padding: 26rpx 24rpx; + display: flex; + flex-direction: column; +} + +.card-head { + display: flex; + align-items: center; + justify-content: space-between; + gap: 16rpx; +} + +.section-title { + display: flex; + align-items: center; + gap: 12rpx; + font-size: 26rpx; + line-height: 1.2; + font-weight: 800; + color: #141720; +} + +.step-dot { + width: 30rpx; + height: 30rpx; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + color: #ffffff; + font-size: 20rpx; + font-weight: 800; + background: linear-gradient(135deg, #506bff, #8155ff); +} + +.help-link { + display: flex; + align-items: center; + gap: 8rpx; + color: #8389a5; + font-size: 21rpx; + font-weight: 600; + white-space: nowrap; +} + +.help-dot { + width: 24rpx; + height: 24rpx; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + border: 3rpx solid #a7add3; + font-size: 17rpx; + line-height: 1; + box-sizing: border-box; +} + +.input-row { + margin-top: 26rpx; + height: 84rpx; + padding: 0 16rpx 0 22rpx; + border-radius: 14rpx; + border: 2rpx solid #d8d5ff; + display: flex; + align-items: center; + box-sizing: border-box; + background: #ffffff; +} + +.link-input { + flex: 1; + min-width: 0; + height: 80rpx; + font-size: 25rpx; + color: #2a3041; +} + +.input-placeholder { + color: #a9aec6; + font-weight: 500; +} + +.paste-btn { + width: 124rpx; + height: 50rpx; + text-align: center; + line-height: 50rpx; + border-radius: 10rpx; + color: #ffffff; + font-size: 22rpx; + font-weight: 800; + background: linear-gradient(135deg, #528bff, #7b52ff); +} + +.primary-action, +.polish-btn, +.generate-btn, +.sample-btn { + display: flex; + align-items: center; + justify-content: center; + color: #ffffff; + background: linear-gradient(135deg, #4f85ff 0%, #8b3df0 100%); + box-shadow: 0 8rpx 18rpx rgba(84, 96, 255, 0.18); +} + +.primary-action { + margin-top: 28rpx; + height: 74rpx; + border-radius: 14rpx; + gap: 18rpx; + font-size: 28rpx; + font-weight: 800; +} + +.plane-icon { + width: 28rpx; + height: 22rpx; + display: block; + border-top: 10rpx solid transparent; + border-bottom: 10rpx solid transparent; + border-left: 32rpx solid #ffffff; + box-sizing: border-box; + transform: rotate(-22deg); +} + +.success-strip { + min-height: 70rpx; + border-radius: 18rpx; + padding: 12rpx 16rpx; + display: flex; + align-items: center; + gap: 14rpx; + background: linear-gradient(90deg, #e7fbf0 0%, #f6fffb 100%); + border-color: #c8f1dc; +} + +.success-icon { + width: 42rpx; + height: 42rpx; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + flex-shrink: 0; + background: #24c878; +} + +.check-mark { + width: 18rpx; + height: 10rpx; + display: block; + border-left: 5rpx solid #ffffff; + border-bottom: 5rpx solid #ffffff; + transform: rotate(-45deg) translateY(-2rpx); +} + +.success-copy { + flex: 1; + min-width: 0; + display: flex; + flex-direction: column; +} + +.success-title { + color: #131720; + font-size: 25rpx; + font-weight: 800; + line-height: 1.18; +} + +.success-subtitle { + margin-top: 4rpx; + color: #747b8d; + font-size: 21rpx; + line-height: 1.15; +} + +.outline-btn { + width: 118rpx; + height: 46rpx; + border-radius: 999rpx; + border: 2rpx solid #c4c4ff; + color: #7165ff; + text-align: center; + line-height: 46rpx; + font-size: 21rpx; + font-weight: 800; + background: #ffffff; +} + +.copy-card { + gap: 18rpx; + padding-bottom: 18rpx; +} + +.copy-head { + min-height: 36rpx; +} + +.copy-title { + font-size: 26rpx; + font-weight: 800; + color: #121722; +} + +.copy-btn { + height: 38rpx; + padding: 0 12rpx; + border-radius: 999rpx; + display: flex; + align-items: center; + gap: 8rpx; + border: 1rpx solid #e0ddff; + color: #665fff; + background: #ffffff; + font-size: 21rpx; + font-weight: 800; +} + +.copy-icon { + width: 18rpx; + height: 18rpx; + display: block; + border: 3rpx solid currentColor; + border-radius: 3rpx; + box-sizing: border-box; + box-shadow: 6rpx -5rpx 0 -2rpx #ffffff, 6rpx -5rpx 0 0 currentColor; +} + +.copy-box { + min-height: 168rpx; + padding: 12rpx 16rpx; + border-radius: 12rpx; + border: 2rpx solid #d7d5ff; + color: #232838; + font-size: 22rpx; + line-height: 1.55; + font-weight: 600; + background: #ffffff; + box-sizing: border-box; +} + +.polish-btn { + height: 72rpx; + border-radius: 13rpx; + display: flex; + flex-direction: column; +} + +.spark-icon { + width: 26rpx; + height: 26rpx; + display: block; + margin-right: 10rpx; + background: #ffffff; + border-radius: 4rpx; + transform: rotate(45deg); +} + +.polish-text { + display: flex; + flex-direction: row; + align-items: center; + /* gap: 4rpx; */ +} + +.polish-title { + font-size: 28rpx; + line-height: 1; + font-weight: 800; +} + +.polish-subtitle { + font-size: 20rpx; + line-height: 1; + color: rgba(255, 255, 255, 0.82); +} + +.tip-strip { + min-height: 44rpx; + border-radius: 999rpx; + display: flex; + align-items: center; + justify-content: center; + gap: 12rpx; + color: #6569ff; + font-size: 22rpx; + font-weight: 700; + background: #f8faff; +} + +.tip-icon { + width: 28rpx; + height: 28rpx; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + border: 3rpx solid #6867ff; + box-sizing: border-box; + font-size: 18rpx; + font-weight: 900; +} + +.generate-btn { + height: 58rpx; + border-radius: 13rpx; + gap: 28rpx; + font-size: 27rpx; + font-weight: 800; +} + +.arrow-icon { + width: 18rpx; + height: 18rpx; + display: block; + border-top: 5rpx solid #ffffff; + border-right: 5rpx solid #ffffff; + transform: rotate(45deg); +} + +.flow-card { + /* padding-top: 28rpx; + padding-bottom: 30rpx; + */ +} + +.flow-heading { + font-size: 27rpx; + font-weight: 800; + color: #161923; +} + +.flow-list { + margin-top: 30rpx; + display: flex; + align-items: center; + justify-content: space-between; +} + +.flow-item { + width: 178rpx; + display: flex; + flex-direction: column; + align-items: center; + text-align: center; +} + +.flow-icon { + width: 86rpx; + height: 82rpx; + border-radius: 18rpx; + display: flex; + align-items: center; + justify-content: center; + color: #6455ff; + font-weight: 900; + background: linear-gradient(145deg, #ffffff, #eef1ff); + box-shadow: inset 0 0 0 2rpx rgba(213, 218, 255, 0.9), 0 8rpx 16rpx rgba(85, 96, 160, 0.08); +} + +.chain-icon text, +.chain-icon::after { + width: 34rpx; + height: 20rpx; + border: 6rpx solid currentColor; + border-radius: 999rpx; + box-sizing: border-box; + display: block; +} + +.chain-icon { + gap: 0; + transform: rotate(-36deg); +} + +.chain-icon::after { + content: ""; + margin-left: -10rpx; +} + +.doc-icon { + font-size: 24rpx; +} + +.bot-icon text { + width: 48rpx; + height: 34rpx; + display: block; + border-radius: 16rpx; + background: currentColor; +} + +.bot-icon text::before, +.bot-icon text::after { + content: ""; + display: block; +} + +.flow-title { + margin-top: 18rpx; + color: #141720; + font-size: 22rpx; + font-weight: 800; + line-height: 1.2; +} + +.flow-desc { + margin-top: 10rpx; + color: #888fa5; + font-size: 19rpx; + line-height: 1.2; + white-space: nowrap; +} + +.flow-arrow { + width: 28rpx; + height: 4rpx; + border-radius: 999rpx; + background: #c1c2ec; + align-self: center; + margin-bottom: 50rpx; +} + +.flow-arrow::after { + content: ""; + display: block; + width: 12rpx; + height: 12rpx; + border-top: 4rpx solid #c1c2ec; + border-right: 4rpx solid #c1c2ec; + transform: rotate(45deg) translate(8rpx, -9rpx); +} + +.sample-card { + /* min-height: 124rpx; */ + border-radius: 18rpx; + /* padding: 18rpx 28rpx 18rpx 24rpx; */ + display: flex; + align-items: center; + /* gap: 20rpx; */ + background: linear-gradient(100deg, #f0f4ff 0%, #fbfcff 100%); +} + +.gift-box { + width: 88rpx; + height: 86rpx; + flex-shrink: 0; + display: flex; + flex-direction: column; + justify-content: flex-end; + align-items: center; + filter: drop-shadow(0 8rpx 14rpx rgba(112, 111, 255, 0.22)); +} + +.gift-top { + width: 72rpx; + height: 18rpx; + border-radius: 7rpx 7rpx 3rpx 3rpx; + background: linear-gradient(90deg, #dfe8ff, #7874ff, #dfe8ff); +} + +.gift-body { + width: 62rpx; + height: 54rpx; + border-radius: 4rpx 4rpx 9rpx 9rpx; + background: linear-gradient(90deg, #d7e3ff 0 35%, #8777ff 35% 52%, #c8d9ff 52% 100%); +} + +.sample-copy { + flex: 1; + min-width: 0; + display: flex; + flex-direction: column; + gap: 10rpx; +} + +.sample-title { + color: #141721; + font-size: 26rpx; + font-weight: 800; + line-height: 1.1; +} + +.sample-desc { + color: #7f859b; + font-size: 20rpx; + line-height: 1.2; + white-space: nowrap; +} + +.sample-btn { + width: 150rpx; + height: 62rpx; + border-radius: 999rpx; + flex-shrink: 0; + font-size: 23rpx; + font-weight: 800; +} + +.tabbar { + height: 110rpx; + padding-bottom: env(safe-area-inset-bottom); + display: flex; + align-items: center; + justify-content: space-around; + background: rgba(255, 255, 255, 0.96); + border-top: 1rpx solid rgba(219, 224, 241, 0.86); + box-sizing: content-box; +} + +.tab-item { + width: 170rpx; + display: flex; + flex-direction: column; + align-items: center; + gap: 8rpx; + color: #626777; + font-size: 21rpx; + font-weight: 600; +} + +.tab-item.active { + color: #665cff; + font-weight: 800; +} + +.tab-icon { + width: 34rpx; + height: 34rpx; + border-radius: 9rpx; + display: flex; + align-items: center; + justify-content: center; + font-size: 22rpx; + line-height: 1; + color: currentColor; + box-sizing: border-box; +} + +.tab-item.active .tab-icon { + color: #ffffff; + background: linear-gradient(135deg, #536dff, #7b55ff); +} + +.record-icon { + border: 4rpx solid currentColor; + border-radius: 9rpx; +} + +.record-icon text { + width: 0; + height: 0; + display: block; + border-top: 7rpx solid transparent; + border-bottom: 7rpx solid transparent; + border-left: 11rpx solid currentColor; + margin-left: 3rpx; +} + +.mine-icon { + border: 4rpx solid currentColor; + border-radius: 50%; +} + +.home-icon text { + width: 14rpx; + height: 14rpx; + display: block; + border-radius: 4rpx; + background: currentColor; + transform: rotate(45deg); +} + + + + + + + +.icon-placeholder { + display: block; + flex-shrink: 0; + background: none; + border: 0; + box-shadow: none; + transform: none; +} diff --git a/miniprogram/pages/logs/logs.json b/miniprogram/pages/logs/logs.json new file mode 100644 index 0000000..b55b5a2 --- /dev/null +++ b/miniprogram/pages/logs/logs.json @@ -0,0 +1,4 @@ +{ + "usingComponents": { + } +} \ No newline at end of file diff --git a/miniprogram/pages/logs/logs.ts b/miniprogram/pages/logs/logs.ts new file mode 100644 index 0000000..dba5c0a --- /dev/null +++ b/miniprogram/pages/logs/logs.ts @@ -0,0 +1,21 @@ +// logs.ts +// const util = require('../../utils/util.js') +import { formatTime } from '../../utils/util' + +Component({ + data: { + logs: [], + }, + lifetimes: { + attached() { + this.setData({ + logs: (wx.getStorageSync('logs') || []).map((log: string) => { + return { + date: formatTime(new Date(log)), + timeStamp: log + } + }), + }) + } + }, +}) diff --git a/miniprogram/pages/logs/logs.wxml b/miniprogram/pages/logs/logs.wxml new file mode 100644 index 0000000..85cf1bf --- /dev/null +++ b/miniprogram/pages/logs/logs.wxml @@ -0,0 +1,6 @@ + + + + {{index + 1}}. {{log.date}} + + diff --git a/miniprogram/pages/logs/logs.wxss b/miniprogram/pages/logs/logs.wxss new file mode 100644 index 0000000..33f9d9e --- /dev/null +++ b/miniprogram/pages/logs/logs.wxss @@ -0,0 +1,16 @@ +page { + height: 100vh; + display: flex; + flex-direction: column; +} +.scrollarea { + flex: 1; + overflow-y: hidden; +} +.log-item { + margin-top: 20rpx; + text-align: center; +} +.log-item:last-child { + padding-bottom: env(safe-area-inset-bottom); +} diff --git a/miniprogram/pages/my/my.json b/miniprogram/pages/my/my.json new file mode 100644 index 0000000..148335c --- /dev/null +++ b/miniprogram/pages/my/my.json @@ -0,0 +1,8 @@ +{ + "usingComponents": { + "custom-nav": "/components/custom-nav/custom-nav", + "vip-popup": "/components/vip-popup/vip-popup", + "checkin-popup": "/components/checkin-popup/checkin-popup" + }, + "navigationStyle": "custom" +} diff --git a/miniprogram/pages/my/my.ts b/miniprogram/pages/my/my.ts new file mode 100644 index 0000000..ff7ea0a --- /dev/null +++ b/miniprogram/pages/my/my.ts @@ -0,0 +1,80 @@ +import { customEvent } from "../../utils/event" + +Page({ + data: { + showVipPopup: false, + showCheckinPopup: false, + menus: [ + { key: 'feedback', title: '意见反馈', icon: '/static/images/my/my_icon_8.png' }, + { key: 'privacy', title: '帮助中心', icon: '/static/images/my/my_icon_3.png' }, + { key: 'privacy', title: '隐私协议', icon: '/static/images/my/my_icon_7.png' }, + ], + userinfo: { + nickname: '创作小助手', + id: '10010', + avatar: 'https://cdn.zhuangb123.com/avatar/boy/a2cfe723-98ddc-12de-723b8f51b-71b1e3.jpeg', + description: 'AI 创作,让想象力触手可及 ✨' + } + }, + onLoad() { + this.setData({ + userinfo: wx.getStorageSync('userInfo') + }) + customEvent.on('update:userinfo', this.onResetUserinfo) + }, + + onUnload() { + customEvent.off('update:userinfo', this.onResetUserinfo) + }, + onResetUserinfo() { + this.setData({ userinfo: wx.getStorageSync('userInfo') }) + }, + handleEdit() { + wx.navigateTo({ + url: '/pages/myPackage/edit/index', + }) + }, + handleCheckin() { + this.setData({ showCheckinPopup: true }) + }, + handleCheckinClose() { + this.setData({ showCheckinPopup: false }) + }, + handleCheckinRule() { + wx.showToast({ title: '每日签到可领取金币', icon: 'none' }) + }, + handleAddCoin() { + wx.navigateTo({ + url: '/pages/myPackage/golb/index', + }) + }, + handleOpenVip() { + this.setData({ showVipPopup: true }) + }, + handleVipClose() { + this.setData({ showVipPopup: false }) + }, + handleVipConfirm(e: WechatMiniprogram.CustomEvent) { + this.setData({ showVipPopup: false }) + const plan = e.detail.plan + wx.showToast({ title: plan ? '已选择' + plan.name : '立即开通', icon: 'none' }) + }, + handleMenuTap(e: WechatMiniprogram.TouchEvent) { + const key = e.currentTarget.dataset.key + const routeMap: Record = { + feedback: '/pages/myPackage/yjfk/index', + privacy: '/pages/myPackage/ysxy/index', + } + const url = routeMap[String(key || '')] + + if (url) { + wx.navigateTo({ url }) + } + }, +}) + + + + + + diff --git a/miniprogram/pages/my/my.wxml b/miniprogram/pages/my/my.wxml new file mode 100644 index 0000000..20f5df8 --- /dev/null +++ b/miniprogram/pages/my/my.wxml @@ -0,0 +1,64 @@ + + + + 个人中心 + + + + + + + + + + + + + + + + {{userinfo.diamond}} + + + + + + + + + + + + + {{item.title}} + + + + + + + + diff --git a/miniprogram/pages/my/my.wxss b/miniprogram/pages/my/my.wxss new file mode 100644 index 0000000..cf301e3 --- /dev/null +++ b/miniprogram/pages/my/my.wxss @@ -0,0 +1,462 @@ +page { + min-height: 100vh; + background: #f8f8ff; + color: #111521; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif; +} + +.profile-page { + width: 750rpx; + min-height: 100vh; + margin: 0 auto; + display: flex; + flex-direction: column; + box-sizing: border-box; + background: + radial-gradient(circle at 80% 6%, rgba(129, 93, 255, 0.22), transparent 20%), + radial-gradient(circle at 18% 9%, rgba(116, 118, 255, 0.16), transparent 24%), + linear-gradient(180deg, #f1efff 0%, #fbfbff 36%, #ffffff 100%); +} + +.profile-nav { + width: 100%; + display: flex; + align-items: center; +} + +.nav-title { + font-size: 31rpx; + font-weight: 800; + color: #090c15; + letter-spacing: 0; +} + +.profile-content { + flex: 1; + display: flex; + flex-direction: column; + gap: 20rpx; + padding: 34rpx 27rpx 28rpx; + box-sizing: border-box; +} + +.user-section { + min-height: 136rpx; + display: flex; + align-items: center; + gap: 26rpx; +} + +.avatar { + width: 94rpx; + height: 94rpx; + border-radius: 50%; + flex-shrink: 0; + display: flex; + align-items: center; + justify-content: center; + overflow: hidden; + /* background: linear-gradient(135deg, #f4c2d0, #b985ff); */ + box-shadow: 0 10rpx 18rpx rgba(136, 95, 186, 0.18); +} +.avatar image { + width: 100%; + height: 100%; +} + +.user-info { + flex: 1; + min-width: 0; + display: flex; + flex-direction: column; + gap: 10rpx; +} + +.name-row { + display: flex; + align-items: center; + gap: 12rpx; +} + +.user-name { + font-size: 30rpx; + line-height: 1.2; + font-weight: 900; + color: #111521; +} + +.level-badge { + height: 30rpx; + padding: 0 14rpx; + border-radius: 999rpx; + display: flex; + align-items: center; + color: #ffffff; + font-size: 18rpx; + font-weight: 800; + background: linear-gradient(135deg, #5c7cff, #7e39eb); +} + +.user-id, +.user-desc { + color: #72727c; + font-size: 21rpx; + line-height: 1.2; + white-space: nowrap; +} + +.user-actions { + width: 176rpx; + display: flex; + flex-direction: column; + gap: 14rpx; + flex-shrink: 0; +} + +.outline-action { + height: 52rpx; + border-radius: 999rpx; + display: flex; + align-items: center; + justify-content: center; + gap: 10rpx; + color: #664cff; + font-size: 21rpx; + font-weight: 800; + background: rgba(255, 255, 255, 0.72); + border: 2rpx solid #8b72ff; + box-sizing: border-box; +} + +.checkin { + border-color: transparent; + background: rgba(255, 255, 255, 0.88); + box-shadow: 0 6rpx 14rpx rgba(122, 102, 255, 0.08); +} + +.edit-icon { + width: 20rpx; + height: 20rpx; + display: block; + border-left: 4rpx solid currentColor; + border-bottom: 4rpx solid currentColor; + transform: rotate(-45deg); + box-sizing: border-box; +} + +.calendar-icon { + width: 22rpx; + height: 24rpx; + display: block; + border: 3rpx solid currentColor; + border-radius: 5rpx; + box-sizing: border-box; +} + +.coin-card { + min-height: 180rpx; + margin-top: 26rpx; + padding: 30rpx 38rpx; + border-radius: 22rpx; + position: relative; + display: flex; + align-items: center; + justify-content: space-between; + overflow: hidden; + background: + radial-gradient(circle at 78% 50%, rgba(255, 210, 105, 0.18), transparent 26%), + linear-gradient(100deg, #fffdf9 0%, #fff8eb 100%); + border: 1rpx solid #f1d8a9; + box-shadow: 0 8rpx 18rpx rgba(159, 117, 46, 0.06); + box-sizing: border-box; +} + +.coin-copy { + display: flex; + flex-direction: column; + gap: 20rpx; + position: absolute; + left: 100rpx; + top: 80rpx; + display: flex; + flex-direction: row; + align-items: center; +} + +.coin-copy text:first-child{ + font-size: 50rpx; + font-weight: bold; + line-height: 1.2; +} + +.coin-copy image{ + margin-top: -4rpx; +} + +.coin-title { + font-size: 24rpx; + font-weight: 700; + color: #141925; +} + +.coin-row { + display: flex; + align-items: center; + gap: 14rpx; +} + +.coin-symbol, +.coin-add { + width: 44rpx; + height: 44rpx; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + color: #ffffff; + font-weight: 900; + background: linear-gradient(135deg, #ffd46a, #ff9900); + box-shadow: inset 0 0 0 3rpx rgba(255, 255, 255, 0.42), 0 6rpx 12rpx rgba(245, 154, 16, 0.2); +} + +.coin-symbol { + font-size: 18rpx; +} + +.coin-count { + font-size: 50rpx; + line-height: 1; + font-weight: 900; + color: #111925; +} + +.coin-add { + font-size: 32rpx; +} + +.treasure-scene { + width: 284rpx; + height: 122rpx; + display: flex; + align-items: flex-end; + justify-content: center; +} + +.treasure-box { + width: 116rpx; + height: 92rpx; + display: flex; + flex-direction: column; + align-items: center; + filter: drop-shadow(0 8rpx 12rpx rgba(127, 76, 216, 0.22)); +} + +.treasure-lid { + width: 120rpx; + height: 36rpx; + border-radius: 18rpx 18rpx 8rpx 8rpx; + background: linear-gradient(90deg, #ce79ff 0 24%, #ffc05d 24% 38%, #8d57e8 38% 76%, #ffc05d 76% 100%); + transform: skewX(8deg); +} + +.treasure-body { + width: 104rpx; + height: 58rpx; + border-radius: 8rpx 8rpx 16rpx 16rpx; + background: linear-gradient(90deg, #7e55d9 0 28%, #ffb845 28% 44%, #9f62ef 44% 100%); +} + +.coin-stack { + width: 74rpx; + height: 28rpx; + border-radius: 50%; + background: linear-gradient(180deg, #ffd366, #f39b12); + box-shadow: 10rpx -13rpx 0 -1rpx #ffc457, 24rpx 6rpx 0 -2rpx #f39b12; +} + +.left-stack { + margin-right: -10rpx; + margin-bottom: 18rpx; +} + +.right-stack { + margin-left: -8rpx; + margin-bottom: 8rpx; +} + +.spark { + width: 22rpx; + height: 22rpx; + background: #ffc95d; + border-radius: 4rpx; + transform: rotate(45deg); +} + +.spark-one { + margin-right: 18rpx; + margin-bottom: 74rpx; +} + +.spark-two { + width: 14rpx; + height: 14rpx; + margin-right: 18rpx; + margin-bottom: 88rpx; +} + +.vip-card { + /* height: 126rpx; */ + /* padding: 20rpx 16rpx 20rpx 24rpx; */ + /* border-radius: 16rpx; */ + /* display: flex; + align-items: center; */ + /* gap: 22rpx; */ + /* background: linear-gradient(100deg, #fffdf8, #fff8ea); */ + /* border: 1rpx solid #f0d8aa; */ + box-sizing: border-box; +} + +.vip-left { + display: flex; + align-items: center; + gap: 16rpx; + flex-shrink: 0; +} + +.crown-icon { + width: 100%; + /* height: 100%; */ +} + +.crown-icon text { + flex: 1; + height: 28rpx; + border-radius: 3rpx 3rpx 7rpx 7rpx; + background: linear-gradient(180deg, #ffd45d, #f8a50a); +} + +.crown-icon text:nth-child(2) { + height: 38rpx; +} + +.vip-title { + font-size: 28rpx; + font-weight: 900; + color: #151925; +} + +.vip-desc { + flex: 1; + min-width: 0; + font-size: 20rpx; + line-height: 1.2; + color: #9a5a1f; + white-space: nowrap; +} + +.vip-btn { + width: 132rpx; + height: 54rpx; + border-radius: 999rpx; + display: flex; + align-items: center; + justify-content: center; + color: #7b4b12; + font-size: 23rpx; + font-weight: 900; + background: linear-gradient(135deg, #fff0bd, #ffd886); + flex-shrink: 0; +} + +.menu-card { + margin-top: 8rpx; + padding: 20rpx 28rpx; + border-radius: 18rpx; + display: flex; + flex-direction: column; + background: rgba(255, 255, 255, 0.92); + box-shadow: 0 8rpx 22rpx rgba(76, 84, 135, 0.06); + box-sizing: border-box; +} + +.menu-item { + min-height: 96rpx; + display: flex; + align-items: center; + gap: 22rpx; +} + +.menu-icon { + width: 46rpx; + height: 46rpx; + border-radius: 14rpx; + display: flex; + align-items: center; + justify-content: center; + flex-shrink: 0; + color: #ffffff; +} + +.feedback-icon { + background: linear-gradient(135deg, #ed8aff, #9d5cff); +} + +.help-icon { + background: linear-gradient(135deg, #7fb8ff, #4e7dff); +} + +.privacy-icon { + background: linear-gradient(135deg, #31dec2, #15bd96); +} + +.feedback-icon text { + width: 24rpx; + height: 18rpx; + border-radius: 6rpx; + display: block; + background: currentColor; + color: rgba(255, 255, 255, 0.92); + box-shadow: inset 7rpx 0 0 rgba(255, 255, 255, 0.2), inset 14rpx 0 0 rgba(255, 255, 255, 0.35); +} + +.help-icon text { + width: 24rpx; + height: 24rpx; + border-radius: 50%; + display: block; + border: 5rpx solid rgba(255, 255, 255, 0.92); + box-sizing: border-box; +} + +.privacy-icon text { + width: 22rpx; + height: 26rpx; + border-radius: 5rpx 5rpx 10rpx 10rpx; + display: block; + background: rgba(255, 255, 255, 0.94); +} + +.menu-title { + flex: 1; + font-size: 25rpx; + font-weight: 700; + color: #151925; +} + +.menu-arrow { + width: 18rpx; + height: 18rpx; + border-top: 4rpx solid #bdc1ca; + border-right: 4rpx solid #bdc1ca; + transform: rotate(45deg); +} + + +.icon-placeholder { + display: block; + flex-shrink: 0; + background: none; + border: 0; + box-shadow: none; + transform: none; +} diff --git a/miniprogram/pages/myPackage/bzzx/index.json b/miniprogram/pages/myPackage/bzzx/index.json new file mode 100644 index 0000000..8835af0 --- /dev/null +++ b/miniprogram/pages/myPackage/bzzx/index.json @@ -0,0 +1,3 @@ +{ + "usingComponents": {} +} \ No newline at end of file diff --git a/miniprogram/pages/myPackage/bzzx/index.ts b/miniprogram/pages/myPackage/bzzx/index.ts new file mode 100644 index 0000000..e05cdd8 --- /dev/null +++ b/miniprogram/pages/myPackage/bzzx/index.ts @@ -0,0 +1,66 @@ +// pages/myPackage/bzzx/index.ts +Page({ + + /** + * 页面的初始数据 + */ + data: { + + }, + + /** + * 生命周期函数--监听页面加载 + */ + onLoad() { + + }, + + /** + * 生命周期函数--监听页面初次渲染完成 + */ + onReady() { + + }, + + /** + * 生命周期函数--监听页面显示 + */ + onShow() { + + }, + + /** + * 生命周期函数--监听页面隐藏 + */ + onHide() { + + }, + + /** + * 生命周期函数--监听页面卸载 + */ + onUnload() { + + }, + + /** + * 页面相关事件处理函数--监听用户下拉动作 + */ + onPullDownRefresh() { + + }, + + /** + * 页面上拉触底事件的处理函数 + */ + onReachBottom() { + + }, + + /** + * 用户点击右上角分享 + */ + onShareAppMessage() { + + } +}) \ No newline at end of file diff --git a/miniprogram/pages/myPackage/bzzx/index.wxml b/miniprogram/pages/myPackage/bzzx/index.wxml new file mode 100644 index 0000000..51869ad --- /dev/null +++ b/miniprogram/pages/myPackage/bzzx/index.wxml @@ -0,0 +1,2 @@ + +pages/myPackage/bzzx/index.wxml \ No newline at end of file diff --git a/miniprogram/pages/myPackage/bzzx/index.wxss b/miniprogram/pages/myPackage/bzzx/index.wxss new file mode 100644 index 0000000..179f16c --- /dev/null +++ b/miniprogram/pages/myPackage/bzzx/index.wxss @@ -0,0 +1 @@ +/* pages/myPackage/bzzx/index.wxss */ \ No newline at end of file diff --git a/miniprogram/pages/myPackage/edit/index.json b/miniprogram/pages/myPackage/edit/index.json new file mode 100644 index 0000000..b4acf56 --- /dev/null +++ b/miniprogram/pages/myPackage/edit/index.json @@ -0,0 +1,6 @@ +{ + "usingComponents": { + "custom-nav": "/components/custom-nav/custom-nav" + }, + "navigationStyle": "custom" +} diff --git a/miniprogram/pages/myPackage/edit/index.ts b/miniprogram/pages/myPackage/edit/index.ts new file mode 100644 index 0000000..e2a94de --- /dev/null +++ b/miniprogram/pages/myPackage/edit/index.ts @@ -0,0 +1,81 @@ +import { client } from "../../../utils/api"; +import { updateuserinfo, userInfo } from "../../../utils/request"; + +Page({ + data: { + userinfo: { + nickname: '创作小助手', + id: '10010', + avatar: 'https://cdn.zhuangb123.com/avatar/boy/a2cfe723-98ddc-12de-723b8f51b-71b1e3.jpeg', + description: 'AI 创作,让想象力触手可及 ✨' + }, + oldAvatar: '', + newAvatar: '' + }, + + onLoad() { + this.setData({ userinfo: wx.getStorageSync('userInfo') }); + }, + + handleBack() { + wx.navigateBack({ + fail: () => wx.switchTab({ url: '/pages/my/my' }), + }) + }, + handleChangeAvatar() { + let that = this + wx.chooseImage({ + count: 1, + success(res) { + let userInfo = that.data.userinfo; + let oldAvatar = userInfo.avatar; + userInfo.avatar = res.tempFilePaths[0]; + + that.setData({ + userinfo: userInfo, + oldAvatar: oldAvatar + }) + } + }); + }, + handleNicknameInput(e: any) { + let userinfo = this.data.userinfo; + userinfo.nickname = e.detail.value; + this.setData({ + userinfo: userinfo, + }) + }, + handleSave() { + let nickname = this.data.userinfo; + if (nickname.nickname.length < 2) { + wx.showToast({ title: '昵称至少2个字符', icon: 'none' }) + return + } + + let that = this; + let update = () => { + updateuserinfo(nickname.nickname, nickname.avatar).then((res: any) => { + if (!res.code) { + userInfo().then((res: any) => { + wx.setStorageSync('userInfo', res.data); + + that.setData({ userinfo: res.data }); + }) + } + }) + } + if (this.data.userinfo.avatar.indexOf('http://tmp/') === -1) { + update(); + return; + } + + client.upload(this.data.userinfo.avatar, {}).then((res: any) => { + if (res.code == 0) { + nickname.avatar = res.data.url; + update(); + } else { + wx.showModal({ title: '温馨提示', content: '头像上传失败' }) + } + }) + }, +}) diff --git a/miniprogram/pages/myPackage/edit/index.wxml b/miniprogram/pages/myPackage/edit/index.wxml new file mode 100644 index 0000000..e3b9c61 --- /dev/null +++ b/miniprogram/pages/myPackage/edit/index.wxml @@ -0,0 +1,58 @@ + + + + + + + 编辑资料 + + + + + + + + + 头像 + + + + + + + + + + + + + + 更换头像 + + + + + + + + 昵称 + + + + + + + 2–12个字符 + + + + + + 修改后将同步更新个人中心信息 + + + 保存修改 + + + + diff --git a/miniprogram/pages/myPackage/edit/index.wxss b/miniprogram/pages/myPackage/edit/index.wxss new file mode 100644 index 0000000..169e0f0 --- /dev/null +++ b/miniprogram/pages/myPackage/edit/index.wxss @@ -0,0 +1,299 @@ +page { + min-height: 100vh; + background: #f8f6ff; + color: #111827; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif; +} + +.edit-page { + width: 750rpx; + min-height: 100vh; + margin: 0 auto; + display: flex; + flex-direction: column; + box-sizing: border-box; + background: + radial-gradient(circle at 82% 4%, rgba(137, 95, 255, 0.18), transparent 20%), + radial-gradient(circle at 16% 10%, rgba(118, 129, 255, 0.14), transparent 24%), + linear-gradient(180deg, #f4f1ff 0%, #fbfaff 42%, #ffffff 100%); +} + +.edit-nav { + width: 100%; + display: flex; + align-items: center; + justify-content: space-between; +} + +.nav-back, +.nav-placeholder { + width: 56rpx; + height: 56rpx; + display: flex; + align-items: center; + justify-content: center; + flex-shrink: 0; +} + +.nav-back text { + width: 24rpx; + height: 24rpx; + display: block; + border-left: 5rpx solid #111827; + border-bottom: 5rpx solid #111827; + transform: rotate(45deg); + box-sizing: border-box; +} + +.nav-title { + font-size: 32rpx; + line-height: 1.2; + font-weight: 900; + color: #101522; +} + +.edit-content { + flex: 1; + padding: 50rpx 32rpx 78rpx; + box-sizing: border-box; + display: flex; +} + +.edit-card { + width: 100%; + min-height: 1074rpx; + padding: 54rpx 40rpx 50rpx; + border-radius: 34rpx; + display: flex; + flex-direction: column; + background: rgba(255, 255, 255, 0.94); + box-shadow: 0 16rpx 42rpx rgba(91, 84, 142, 0.08); + box-sizing: border-box; +} + +.section-title { + display: flex; + align-items: center; + gap: 14rpx; + color: #111827; + font-size: 30rpx; + line-height: 1.2; + font-weight: 900; +} + +.section-mark { + width: 7rpx; + height: 28rpx; + border-radius: 999rpx; + background: linear-gradient(180deg, #aa6dff, #6f67ff); +} + +.avatar-row { + margin-top: 32rpx; + padding: 0 44rpx 0 24rpx; + display: flex; + align-items: center; + justify-content: space-between; +} + +.avatar-wrap { + width: 246rpx; + height: 246rpx; + display: flex; + align-items: center; + justify-content: center; +} + +.avatar-large { + width: 222rpx; + height: 222rpx; + border-radius: 100%; + display: flex; + align-items: center; + justify-content: center; + overflow: hidden; + background: linear-gradient(135deg, #f3e0d7, #fff7f4); + /* border: 4rpx solid #e6dcff; */ + box-shadow: inset 0 0 0 5rpx #ffffff; +} + +.avatar-large>image { + width: 100%; + height: 100%; +} + +.camera-badge { + width: 58rpx; + height: 58rpx; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + /* background: linear-gradient(135deg, #9a6cff, #7656ef); */ + background: #ffffff; + box-shadow: 0 8rpx 18rpx rgba(115, 83, 238, 0.24), 0 0 0 8rpx #ffffff; + margin-left: -70rpx; + margin-top: 142rpx; +} + +.camera-icon { + width: 50rpx; + height: 50rpx; + display: block; + border-radius: 6rpx; + /* border: 4rpx solid #ffffff; */ + box-sizing: border-box; +} + +/* .camera-icon::before { + content: ""; + display: block; + width: 10rpx; + height: 10rpx; + margin: 2rpx auto 0; + border-radius: 50%; + background: #ffffff; +} */ + +.change-avatar { + width: 220rpx; + height: 58rpx; + border-radius: 999rpx; + display: flex; + align-items: center; + justify-content: center; + gap: 14rpx; + color: #7d5cff; + font-size: 24rpx; + font-weight: 800; + border: 2rpx solid #8d6cff; + background: rgba(255, 255, 255, 0.72); + box-sizing: border-box; +} + +.image-icon { + width: 22rpx; + height: 22rpx; + display: block; + border: 4rpx solid currentColor; + border-radius: 3rpx; + box-sizing: border-box; +} + +.image-icon::after { + content: ""; + display: block; + width: 9rpx; + height: 9rpx; + margin: 5rpx 0 0 6rpx; + border-left: 4rpx solid currentColor; + border-top: 4rpx solid currentColor; + transform: rotate(45deg); +} + +.divider { + height: 1rpx; + margin: 42rpx 0 54rpx; + background: #e5e7ef; +} + +.nickname-title { + margin-bottom: 32rpx; +} + +.input-shell { + height: 86rpx; + padding: 0 30rpx; + border-radius: 18rpx; + display: flex; + align-items: center; + gap: 18rpx; + border: 2rpx solid #ddd7ff; + background: rgba(255, 255, 255, 0.82); + box-sizing: border-box; +} + +.nickname-input { + flex: 1; + min-width: 0; + height: 82rpx; + color: #111827; + font-size: 27rpx; + font-weight: 700; +} + +.edit-icon { + width: 24rpx; + height: 24rpx; + display: block; + border-left: 5rpx solid #9a79ff; + border-bottom: 5rpx solid #9a79ff; + transform: rotate(-45deg); + box-sizing: border-box; +} + +.input-tip { + margin-top: 18rpx; + color: #8b90a2; + font-size: 20rpx; + line-height: 1.2; +} + +.card-spacer { + flex: 1; + min-height: 210rpx; +} + +.sync-tip { + display: flex; + align-items: center; + justify-content: center; + gap: 14rpx; + color: #9095a5; + font-size: 20rpx; + line-height: 1.2; +} + +.shield-icon { + width: 24rpx; + height: 26rpx; + border-radius: 6rpx 6rpx 12rpx 12rpx; + display: flex; + align-items: center; + justify-content: center; + background: linear-gradient(135deg, #a56dff, #715eff); +} + +.shield-icon::after { + content: ""; + width: 9rpx; + height: 5rpx; + display: block; + border-left: 3rpx solid #ffffff; + border-bottom: 3rpx solid #ffffff; + transform: rotate(-45deg); +} + +.save-btn { + height: 86rpx; + margin-top: 28rpx; + border-radius: 999rpx; + display: flex; + align-items: center; + justify-content: center; + color: #ffffff; + font-size: 32rpx; + font-weight: 900; + background: linear-gradient(135deg, #b26bff 0%, #7549f5 100%); + box-shadow: 0 14rpx 26rpx rgba(117, 73, 245, 0.2); +} + +.icon-placeholder { + display: block; + flex-shrink: 0; + background: none; + border: 0; + box-shadow: none; + transform: none; +} + diff --git a/miniprogram/pages/myPackage/golb/index.json b/miniprogram/pages/myPackage/golb/index.json new file mode 100644 index 0000000..b4acf56 --- /dev/null +++ b/miniprogram/pages/myPackage/golb/index.json @@ -0,0 +1,6 @@ +{ + "usingComponents": { + "custom-nav": "/components/custom-nav/custom-nav" + }, + "navigationStyle": "custom" +} diff --git a/miniprogram/pages/myPackage/golb/index.ts b/miniprogram/pages/myPackage/golb/index.ts new file mode 100644 index 0000000..64ed24b --- /dev/null +++ b/miniprogram/pages/myPackage/golb/index.ts @@ -0,0 +1,112 @@ +import { diamonds, diamondVirtualPayment, updatesessionkey, updateuserinfo, userInfo } from '../../../utils/request'; + +interface CoinPackage { + id: number + coins: number + price: number + ribbon?: string + ribbonClass?: string + artClass: string + chest?: boolean + selected: boolean +} +Page({ + data: { + packages: [], + selectedPackage: null as CoinPackage | null, + userInfo: { diamond: 0 } + }, + + onLoad() { + this.setData({ userInfo: wx.getStorageSync('userInfo') }) + diamonds().then((res: any) => { + if (!res.code) { + this.setData({ packages: res.data }); + } + }) + }, + + handleBack() { + wx.navigateBack({ + fail: () => wx.switchTab({ url: '/pages/my/my' }), + }) + }, + handlePackageTap(e: WechatMiniprogram.TouchEvent) { + const id = e.currentTarget.dataset.id + const selectedPackage = this.data.packages.find((item: CoinPackage) => item.id === id) || this.data.selectedPackage + + this.setData({ + selectedPackage, + }) + }, + handleBuy() { + const that = this; + if (that.data.selectedPackage == null) { + return; + } + wx.showLoading({ title: '处理中, 请稍后.', mask: true }); + wx.checkSession({ + success() { + that.payment(); + }, + fail() { + wx.login({ + success(login) { + updatesessionkey(login.code).then((res: any) => { + if (!res.code) { + that.payment(); + } else { + wx.showModal({ + title: '温馨提示', + content: res.message, + showCancel: false + }) + } + }) + } + }) + + wx.hideLoading(); + } + }) + }, + + payment() { + let that = this; + diamondVirtualPayment((that.data.selectedPackage || { id: 0 }).id).then((res: any) => { + wx.requestVirtualPayment({ + signData: JSON.stringify(res.param.signData), + paySig: res.param.paySig, + signature: res.param.signature, + mode: res.param.mode, + success(result: any) { + wx.hideLoading(); + console.log(result) + + userInfo().then((res: any) => { + if (!res.code) { + wx.setStorageSync('userInfo', res.data); + that.setData({ userInfo: res.data }); + } + }) + }, + fail(error: any) { + wx.hideLoading(); + console.log(error); + wx.showModal({ + title: '温馨提示', + content: '支付失败', + showCancel: false + }) + } + }); + }).catch(() => { + wx.hideLoading(); + wx.showModal({ + title: '温馨提示', + content: '系统繁忙, 请稍后再试', + showCancel: false + }) + }) + } +}) diff --git a/miniprogram/pages/myPackage/golb/index.wxml b/miniprogram/pages/myPackage/golb/index.wxml new file mode 100644 index 0000000..706344d --- /dev/null +++ b/miniprogram/pages/myPackage/golb/index.wxml @@ -0,0 +1,71 @@ + + + + + 购买金币 + + + + + + + + {{userInfo.diamond}} + + + + 金币套餐 + + + 套餐数量与价格以实际配置为准 + + + + + + {{item.ribbon}} + {{item.coins}} 金币 + + + ¥ + {{item.price}} + + + + 热卖 + 爆款 + 推荐 + + + + + + + 充值后金币实时到账 + + + + 金币仅用于平台内数字人视频相关功能 + + + + + + + 已选: + {{selectedPackage.coin || 0}} + 金币 + + ¥{{selectedPackage.price || 0.00}} + + + 立即购买 + + + diff --git a/miniprogram/pages/myPackage/golb/index.wxss b/miniprogram/pages/myPackage/golb/index.wxss new file mode 100644 index 0000000..dfc4f08 --- /dev/null +++ b/miniprogram/pages/myPackage/golb/index.wxss @@ -0,0 +1,509 @@ +page { + min-height: 100vh; + background: #fbfaff; + color: #111827; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif; +} + +.coin-page { + width: 750rpx; + min-height: 100vh; + margin: 0 auto; + display: flex; + flex-direction: column; + box-sizing: border-box; + background: + radial-gradient(circle at 80% 5%, rgba(138, 103, 255, 0.16), transparent 20%), + radial-gradient(circle at 18% 8%, rgba(115, 129, 255, 0.12), transparent 24%), + linear-gradient(180deg, #f9f6ff 0%, #fbfbff 42%, #ffffff 100%); +} + +.coin-nav { + width: 100%; + display: flex; + align-items: center; + justify-content: space-between; +} + +.nav-back, +.nav-placeholder { + width: 58rpx; + height: 58rpx; + display: flex; + align-items: center; + justify-content: flex-start; + flex-shrink: 0; +} + +.nav-back text { + width: 24rpx; + height: 24rpx; + display: block; + border-left: 5rpx solid #111827; + border-bottom: 5rpx solid #111827; + transform: rotate(45deg); + box-sizing: border-box; +} + +.nav-title { + font-size: 31rpx; + line-height: 1.2; + font-weight: 900; + color: #111827; +} + +.coin-content { + flex: 1; + display: flex; + flex-direction: column; + padding: 24rpx; + box-sizing: border-box; +} + +.balance-card { + position: relative; + /* height: 198rpx; */ + /* padding: 36rpx 38rpx; */ + border-radius: 24rpx; + display: flex; + align-items: center; + justify-content: space-between; + /* overflow: hidden; */ + /* background: + radial-gradient(circle at 82% 46%, rgba(126, 83, 255, 0.22), transparent 30%), + linear-gradient(100deg, #ffffff 0%, #eee8ff 100%); */ + /* border: 1rpx solid #ded6ff; */ + box-shadow: 0 10rpx 22rpx rgba(103, 86, 176, 0.1); + box-sizing: border-box; +} + +.balance-copy { + display: flex; + flex-direction: column; + position: absolute; + z-index: 2026; + font-weight: bold; + font-size: 72rpx; + left: 110rpx; + bottom: 45rpx; +} + +.balance-title { + font-size: 24rpx; + font-weight: 700; + color: #111827; +} + +.balance-row { + display: flex; + align-items: center; + gap: 18rpx; +} + +.coin-icon { + width: 50rpx; + height: 50rpx; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + color: #ffffff; + font-size: 20rpx; + font-weight: 900; + background: linear-gradient(135deg, #ffd56b, #ff9900); + box-shadow: inset 0 0 0 4rpx rgba(255, 255, 255, 0.38), 0 7rpx 13rpx rgba(248, 154, 12, 0.2); +} + +.balance-count { + font-size: 68rpx; + line-height: 1; + font-weight: 900; + color: #0e1118; +} + +.balance-art { + width: 100%; + height: 100%; + display: flex; + align-items: flex-end; + justify-content: center; + /* position: absolute; */ + /* left: 0; + top: 0; */ +} + +.open-box { + width: 142rpx; + height: 104rpx; + display: flex; + flex-direction: column; + align-items: center; + justify-content: flex-end; +} + +.box-lid { + width: 142rpx; + height: 44rpx; + border-radius: 24rpx 24rpx 8rpx 8rpx; + background: linear-gradient(135deg, rgba(196, 163, 255, 0.55), rgba(138, 89, 255, 0.28)); + transform: rotate(6deg) translateY(12rpx); +} + +.box-body { + width: 126rpx; + height: 60rpx; + border-radius: 12rpx 12rpx 28rpx 28rpx; + background: linear-gradient(135deg, rgba(126, 83, 255, 0.28), rgba(196, 163, 255, 0.5)); + box-shadow: 0 8rpx 18rpx rgba(126, 83, 255, 0.18); +} + +.big-coin { + width: 76rpx; + height: 76rpx; + margin-top: -108rpx; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + background: linear-gradient(135deg, #ffe28b, #ffac19); + box-shadow: inset 0 0 0 8rpx rgba(255, 255, 255, 0.34), 0 10rpx 18rpx rgba(255, 172, 25, 0.24); +} + +.big-coin text { + width: 34rpx; + height: 34rpx; + border-radius: 8rpx; + background: rgba(255, 255, 255, 0.8); + transform: rotate(45deg); +} + +.art-spark { + width: 30rpx; + height: 30rpx; + border-radius: 5rpx; + background: #ffffff; + transform: rotate(45deg); +} + +.spark-one { + margin-right: -12rpx; + margin-bottom: 98rpx; +} + +.spark-two { + width: 18rpx; + height: 18rpx; + margin-left: -4rpx; + margin-bottom: 46rpx; + background: #8d73ff; +} + +.section-head { + margin-top: 34rpx; + margin-bottom: 22rpx; + display: flex; + align-items: center; + justify-content: space-between; +} + +.section-title { + font-size: 27rpx; + font-weight: 900; + color: #121722; +} + +.section-note { + display: flex; + align-items: center; + gap: 8rpx; + color: #85899a; + font-size: 20rpx; + white-space: nowrap; +} + +.info-icon { + width: 18rpx; + height: 18rpx; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + border: 2rpx solid currentColor; + font-size: 14rpx; + font-weight: 900; +} + +.package-grid { + display: grid; + grid-template-columns: repeat(3, 1fr); + gap: 22rpx 18rpx; +} + +.package-card { + position: relative; + height: 230rpx; + border-radius: 22rpx; + padding: 28rpx 0; + box-sizing: border-box; + display: flex; + flex-direction: column; + align-items: center; + overflow: hidden; + background: rgba(255, 255, 255, 1); + box-shadow: 0 8rpx 20rpx rgba(82, 90, 146, 0.08); + border-width: 2rpx; + border-style: solid; + border-color: transparent; +} + +.package-card.selected { + border-color: #7351ff; + background-color: rgba(196, 163, 255, 0.1); +} + +.ribbon { + position: absolute; + top: 0; + left: 0; + width: 74rpx; + height: 42rpx; + display: flex; + align-items: center; + justify-content: center; + color: #ffffff; + font-size: 18rpx; + font-weight: 800; + transform: rotate(-45deg) translate(-22rpx, -10rpx); +} + +.red-ribbon { + background: #ff5b78; +} + +.purple-ribbon { + background: #7452ff; +} + +.gold-ribbon { + background: #ffb629; +} + +.package-name { + color: #111827; + font-size: 24rpx; + line-height: 1.1; + font-weight: 800; +} + +.package-art { + width: 82rpx; + margin-top: 18rpx; + display: flex; + align-items: flex-end; + justify-content: center; +} + +.coin-pile { + display: flex; + align-items: flex-end; + justify-content: center; +} + +.coin-pile text { + width: 54rpx; + height: 22rpx; + border-radius: 50%; + display: block; + background: linear-gradient(180deg, #ffe28b, #f8a113); + box-shadow: inset 0 0 0 4rpx rgba(255, 255, 255, 0.36), 0 8rpx 0 -2rpx #e98a0d; +} + +.coin-pile text:nth-child(1) { + margin-right: -26rpx; +} + +.coin-pile text:nth-child(2) { + margin-bottom: 26rpx; +} + +.coin-pile text:nth-child(3) { + margin-left: -26rpx; + margin-bottom: 8rpx; +} + +.large-pile .coin-pile text { + width: 66rpx; + height: 26rpx; +} + +.mini-chest { + width: 74rpx; + height: 54rpx; + margin-left: -18rpx; + border-radius: 8rpx 8rpx 14rpx 14rpx; + background: linear-gradient(90deg, #7b56d9 0 28%, #ffbd47 28% 46%, #a166f0 46% 100%); + box-shadow: 0 8rpx 12rpx rgba(113, 83, 226, 0.18); +} + +.package-price { + margin-top: auto; + display: flex; + align-items: baseline; + gap: 4rpx; + color: #6d4cff; + font-weight: 900; +} + +.package-price text:first-child { + font-size: 24rpx; +} + +.package-price text:last-child { + font-size: 32rpx; +} + +.right-jiao { + position: absolute; + left: -90rpx; + top: -9rpx; + width: 100%; + height: 50rpx; + line-height: 70rpx; + background-color: #6d4cff; + z-index: 9999; + color: #ffffff; + text-align: center; + font-size: 18rpx; + transform: rotate(-45deg); +} + +.right-jiao.best_seller { + background-color: orange; +} +.right-jiao.recommend{ + background-color: red; +} + +.selected-check { + position: absolute; + right: 12rpx; + bottom: 12rpx; + width: 38rpx; + height: 38rpx; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + background: #6f4cff; +} + +.selected-check text { + width: 16rpx; + height: 9rpx; + border-left: 4rpx solid #ffffff; + border-bottom: 4rpx solid #ffffff; + transform: rotate(-45deg); +} + +.tips-card { + margin-top: 26rpx; + padding: 16rpx 24rpx; + border-radius: 18rpx; + display: flex; + flex-direction: column; + gap: 12rpx; + background: #f5f3ff; + color: #73788a; + font-size: 20rpx; +} + +.tip-row { + display: flex; + align-items: center; + gap: 12rpx; +} + +.tip-icon { + width: 22rpx; + height: 22rpx; + border-radius: 50%; + display: block; + background: #6f4cff; +} + +.shield-tip { + border-radius: 6rpx 6rpx 12rpx 12rpx; +} + +.selected-bar { + height: 62rpx; + margin-top: 14rpx; + padding: 0 30rpx 0 24rpx; + border-radius: 999rpx; + display: flex; + align-items: center; + justify-content: space-between; + background: #ffffff; + border: 1rpx solid #e4e2f2; + box-sizing: border-box; +} + +.selected-left { + display: flex; + align-items: center; + gap: 8rpx; + color: #171b26; + font-size: 23rpx; + font-weight: 800; +} + +.selected-icon { + width: 34rpx; + height: 34rpx; + border-radius: 50%; + display: flex; + align-items: center; + justify-content: center; + background: #6f4cff; +} + +.selected-icon text { + width: 14rpx; + height: 8rpx; + border-left: 4rpx solid #ffffff; + border-bottom: 4rpx solid #ffffff; + transform: rotate(-45deg); +} + +.selected-coins, +.selected-price { + color: #6f4cff; + font-weight: 900; +} + +.selected-price { + font-size: 29rpx; +} + +.buy-btn { + height: 68rpx; + margin-top: 12rpx; + border-radius: 14rpx; + display: flex; + align-items: center; + justify-content: center; + color: #ffffff; + font-size: 29rpx; + font-weight: 800; + background: linear-gradient(135deg, #4c88ff 0%, #7b3df2 100%); + box-shadow: 0 10rpx 18rpx rgba(91, 83, 244, 0.2); +} + +.icon-placeholder { + display: block; + flex-shrink: 0; + background: none; + border: 0; + box-shadow: none; + transform: none; +} \ No newline at end of file diff --git a/miniprogram/pages/myPackage/vip/index.json b/miniprogram/pages/myPackage/vip/index.json new file mode 100644 index 0000000..8835af0 --- /dev/null +++ b/miniprogram/pages/myPackage/vip/index.json @@ -0,0 +1,3 @@ +{ + "usingComponents": {} +} \ No newline at end of file diff --git a/miniprogram/pages/myPackage/vip/index.ts b/miniprogram/pages/myPackage/vip/index.ts new file mode 100644 index 0000000..43c64f8 --- /dev/null +++ b/miniprogram/pages/myPackage/vip/index.ts @@ -0,0 +1,66 @@ +// pages/myPackage/vip/index.ts +Page({ + + /** + * 页面的初始数据 + */ + data: { + + }, + + /** + * 生命周期函数--监听页面加载 + */ + onLoad() { + + }, + + /** + * 生命周期函数--监听页面初次渲染完成 + */ + onReady() { + + }, + + /** + * 生命周期函数--监听页面显示 + */ + onShow() { + + }, + + /** + * 生命周期函数--监听页面隐藏 + */ + onHide() { + + }, + + /** + * 生命周期函数--监听页面卸载 + */ + onUnload() { + + }, + + /** + * 页面相关事件处理函数--监听用户下拉动作 + */ + onPullDownRefresh() { + + }, + + /** + * 页面上拉触底事件的处理函数 + */ + onReachBottom() { + + }, + + /** + * 用户点击右上角分享 + */ + onShareAppMessage() { + + } +}) \ No newline at end of file diff --git a/miniprogram/pages/myPackage/vip/index.wxml b/miniprogram/pages/myPackage/vip/index.wxml new file mode 100644 index 0000000..675c3f3 --- /dev/null +++ b/miniprogram/pages/myPackage/vip/index.wxml @@ -0,0 +1,2 @@ + +pages/myPackage/vip/index.wxml \ No newline at end of file diff --git a/miniprogram/pages/myPackage/vip/index.wxss b/miniprogram/pages/myPackage/vip/index.wxss new file mode 100644 index 0000000..bc4eb13 --- /dev/null +++ b/miniprogram/pages/myPackage/vip/index.wxss @@ -0,0 +1 @@ +/* pages/myPackage/vip/index.wxss */ \ No newline at end of file diff --git a/miniprogram/pages/myPackage/yjfk/index.json b/miniprogram/pages/myPackage/yjfk/index.json new file mode 100644 index 0000000..b4acf56 --- /dev/null +++ b/miniprogram/pages/myPackage/yjfk/index.json @@ -0,0 +1,6 @@ +{ + "usingComponents": { + "custom-nav": "/components/custom-nav/custom-nav" + }, + "navigationStyle": "custom" +} diff --git a/miniprogram/pages/myPackage/yjfk/index.ts b/miniprogram/pages/myPackage/yjfk/index.ts new file mode 100644 index 0000000..a231fad --- /dev/null +++ b/miniprogram/pages/myPackage/yjfk/index.ts @@ -0,0 +1,113 @@ +import { client } from "../../../utils/api" +import { feedback, uploadavatar } from "../../../utils/request" + +interface FeedbackType { + key: number + label: string + icon: string + active: boolean +} + +interface submits { + categoryes: number[], + content: string, + images: string[], + phone: string +} + +Page({ + data: { + description: '', + contact: '', + types: [ + { key: 1, label: '功能问题', icon: '/static/images/my/debug.png', active: true }, + { key: 2, label: '体验优化', active: false, icon: '/static/images/my/star.png' }, + { key: 3, label: '内容建议', active: false, icon: '/static/images/my/msg.png' }, + { key: 4, label: '其他问题', active: false, icon: '/static/images/my/more.png' }, + ] as FeedbackType[], + datas: {} as submits + }, + onLoad() { + this.setData({ datas: { categoryes: [], content: '', images: [], phone: '' } }) + }, + handleBack() { + wx.navigateBack({ + fail: () => wx.switchTab({ url: '/pages/my/my' }), + }) + }, + handleRecord() { + wx.showToast({ title: '反馈记录', icon: 'none' }) + }, + handleTypeTap(e: WechatMiniprogram.TouchEvent) { + const key = e.currentTarget.dataset.key + + this.setData({ + types: this.data.types.map((item) => ({ + ...item, + active: item.key === key ? !item.active : item.active, + })), + }) + }, + handleDescriptionInput(e: any) { + this.setData({ description: e.detail.value }) + }, + handleContactInput(e: any) { + this.setData({ contact: e.detail.value }) + }, + handleUpload() { + let that = this; + wx.showLoading({ mask: true, title: '请稍后...' }) + wx.chooseMedia({ + count: 3 - this.data.datas.images.length, + mediaType: ['image', 'video'], + sourceType: ['album', 'camera'], + maxDuration: 30, + camera: 'back', + success(res) { + client.upload(res.tempFiles[0].tempFilePath, {}).then((res: any) => { + wx.hideLoading(); + if (res.code == 0) { + let images = that.data.datas; + images.images.push(res.data.url); + that.setData({ datas: images }) + } + }) + }, + fail(err) { + wx.hideLoading(); + console.log(err); + } + }) + }, + handleSubmit() { + let that = this; + if (!this.data.description.trim()) { + wx.showToast({ title: '请填写问题描述', icon: 'none' }) + return + } + + let datas = this.data.datas; + let types: FeedbackType[] = []; + for (let q = 0; q < this.data.types.length; q++) { + let item = that.data.types[q]; + if (item.active) { + datas.categoryes.push(item.key) + } + item.active = false; + types.push(item); + } + + datas.content = this.data.description; + datas.phone = this.data.contact; + + feedback(JSON.stringify(datas)).then((res: any) => { + if (!res.code) { + this.setData({ datas: { categoryes: [], content: '', images: [], phone: '' }, contact: '', description: '', types: types }) + + wx.showModal({ title: '温馨提示', content: '提交成功', showCancel: false }); + } else { + wx.showModal({ title: '温馨提示', content: '提交失败, 请稍后重试', showCancel: false }); + } + }) + }, +}) diff --git a/miniprogram/pages/myPackage/yjfk/index.wxml b/miniprogram/pages/myPackage/yjfk/index.wxml new file mode 100644 index 0000000..84f9cd6 --- /dev/null +++ b/miniprogram/pages/myPackage/yjfk/index.wxml @@ -0,0 +1,86 @@ + \ No newline at end of file diff --git a/miniprogram/pages/myPackage/yjfk/index.wxss b/miniprogram/pages/myPackage/yjfk/index.wxss new file mode 100644 index 0000000..e68a513 --- /dev/null +++ b/miniprogram/pages/myPackage/yjfk/index.wxss @@ -0,0 +1,441 @@ +page { + min-height: 100vh; + background: #fbfaff; + color: #111827; + font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif; +} + +.feedback-page { + width: 750rpx; + min-height: 100vh; + margin: 0 auto; + display: flex; + flex-direction: column; + box-sizing: border-box; + background: + radial-gradient(circle at 78% 4%, rgba(137, 95, 255, 0.16), transparent 20%), + radial-gradient(circle at 18% 8%, rgba(118, 129, 255, 0.12), transparent 24%), + linear-gradient(180deg, #f7f3ff 0%, #fbfaff 48%, #ffffff 100%); +} + +.feedback-nav { + width: 100%; + display: flex; + align-items: center; + justify-content: space-between; +} + +.nav-back { + width: 56rpx; + height: 56rpx; + display: flex; + align-items: center; + justify-content: flex-start; + flex-shrink: 0; +} + +.nav-back text { + width: 24rpx; + height: 24rpx; + display: block; + border-left: 5rpx solid #111827; + border-bottom: 5rpx solid #111827; + transform: rotate(45deg); + box-sizing: border-box; +} + +.nav-title { + font-size: 31rpx; + line-height: 1.2; + font-weight: 900; + color: #111827; +} + +.record-link { + width: 142rpx; + height: 56rpx; + display: flex; + align-items: center; + justify-content: flex-end; + color: #111827; + font-size: 24rpx; + font-weight: 700; +} + +.feedback-content { + flex: 1; + display: flex; + flex-direction: column; + gap: 14rpx; + padding: 26rpx 38rpx 38rpx; + box-sizing: border-box; +} + +.hero-row { + /* min-height: 184rpx; */ + display: flex; + align-items: center; + gap: 30rpx; +} + +.hero-illustration { + /* width: 250rpx; + height: 174rpx; */ + width: 100%; + display: flex; + align-items: center; + justify-content: center; + flex-shrink: 0; +} + +.paper { + width: 116rpx; + height: 126rpx; + border-radius: 18rpx; + display: flex; + flex-direction: column; + gap: 14rpx; + padding: 30rpx 20rpx 0 34rpx; + background: linear-gradient(145deg, #ffffff, #ece5ff); + box-shadow: 0 14rpx 24rpx rgba(120, 92, 219, 0.2); + transform: rotate(-7deg); + box-sizing: border-box; +} + +.paper text { + height: 8rpx; + border-radius: 999rpx; + background: #cfc2ff; +} + +.chat-bubble { + width: 114rpx; + height: 82rpx; + margin-left: -168rpx; + margin-top: 44rpx; + border-radius: 42rpx 42rpx 42rpx 18rpx; + display: flex; + align-items: center; + justify-content: center; + gap: 10rpx; + background: linear-gradient(135deg, #9d79ff, #6d4cef); + box-shadow: 0 16rpx 24rpx rgba(108, 76, 239, 0.25); +} + +.chat-bubble text { + width: 14rpx; + height: 14rpx; + border-radius: 50%; + background: rgba(255, 255, 255, 0.78); +} + +.pencil { + width: 76rpx; + height: 22rpx; + margin-left: 92rpx; + margin-top: -18rpx; + border-radius: 999rpx; + background: linear-gradient(90deg, #7654f7 0 20%, #ffd05e 20% 78%, #ff6b91 78% 100%); + transform: rotate(-42deg); +} + +.heart { + width: 38rpx; + height: 38rpx; + margin-right: -40rpx; + margin-top: -88rpx; + border-radius: 50% 50% 8rpx 50%; + background: linear-gradient(135deg, #ff9ec2, #ff679a); + transform: rotate(45deg); + box-shadow: 0 8rpx 14rpx rgba(255, 105, 154, 0.22); +} + +.hero-copy { + flex: 1; + min-width: 0; + display: flex; + flex-direction: column; +} + +.hero-title { + display: flex; + flex-wrap: wrap; + align-items: baseline; + font-size: 28rpx; + line-height: 1.25; + font-weight: 900; + color: #111827; +} + +.accent { + color: #744dff; +} + +.hero-desc { + margin-top: 14rpx; + color: #6c7280; + font-size: 23rpx; + line-height: 1.15; +} + +.hero-line { + width: 72rpx; + height: 30rpx; + margin-top: 8rpx; + border-bottom: 5rpx solid #7c57ff; + border-radius: 50%; + transform: rotate(10deg); +} + +.form-card { + border-radius: 18rpx; + padding: 24rpx; + display: flex; + flex-direction: column; + background: rgba(255, 255, 255, 0.94); + box-shadow: 0 8rpx 24rpx rgba(84, 91, 148, 0.06); + box-sizing: border-box; +} + +.card-title { + display: flex; + align-items: center; + gap: 12rpx; + color: #111827; + font-size: 25rpx; + font-weight: 900; +} + +.optional { + color: #8b91a1; + font-size: 18rpx; + font-weight: 600; +} + +.title-icon { + width: 30rpx; + height: 30rpx; + border-radius: 8rpx; + display: flex; + align-items: center; + justify-content: center; + color: #7454ff; + background: #f3efff; +} + +.title-icon text { + display: block; +} + +.type-icon text { + width: 17rpx; + height: 19rpx; + border: 4rpx solid currentColor; + border-radius: 5rpx 5rpx 9rpx 9rpx; + box-sizing: border-box; +} + +.pen-icon text { + width: 19rpx; + height: 19rpx; + border-left: 5rpx solid currentColor; + border-bottom: 5rpx solid currentColor; + transform: rotate(-45deg); + box-sizing: border-box; +} + +.image-title-icon text { + width: 18rpx; + height: 16rpx; + border: 4rpx solid currentColor; + border-radius: 3rpx; + box-sizing: border-box; +} + +.phone-icon text { + width: 18rpx; + height: 22rpx; + border-left: 5rpx solid currentColor; + border-bottom: 5rpx solid currentColor; + border-radius: 0 0 0 10rpx; + transform: rotate(-25deg); + box-sizing: border-box; +} + +.type-grid { + margin-top: 22rpx; + display: grid; + grid-template-columns: repeat(4, 1fr); + gap: 12rpx; +} + +.type-chip { + height: 56rpx; + border-radius: 11rpx; + display: flex; + align-items: center; + justify-content: center; + gap: 8rpx; + color: #737887; + font-size: 20rpx; + font-weight: 800; + background: #f8f8fb; + border: 2rpx solid #ececf3; + box-sizing: border-box; + white-space: nowrap; +} + +.type-chip.active { + color: #6e4cff; + background: #ffffff; + border-color: #805cff; + filter: hue-rotate(180deg); /* 旋转色相 */ + filter: sepia(1) saturate(5) hue-rotate(200deg); /* 强制转为暖色调 */ +} + +.type-chip-icon { + width: 22rpx; + height: 22rpx; + display: block; + box-sizing: border-box; +} + +.bug-icon { + border-radius: 50%; + border: 4rpx solid currentColor; +} + +.star-icon { + border-radius: 5rpx; + border: 4rpx solid currentColor; + transform: rotate(45deg); +} + +.message-icon, +.more-icon { + border: 4rpx solid currentColor; + border-radius: 8rpx; +} + +.desc-card { + padding-bottom: 18rpx; +} + +.textarea-shell { + min-height: 158rpx; + margin-top: 20rpx; + padding: 20rpx 20rpx 34rpx; + border-radius: 14rpx; + border: 1rpx solid #e4e4eb; + background: #fbfbfd; + box-sizing: border-box; +} + +.desc-input { + width: 100%; + height: 104rpx; + color: #2d3340; + font-size: 22rpx; + line-height: 1.45; +} + +.placeholder { + color: #a2a6b2; +} + +.counter { + display: flex; + justify-content: flex-end; + color: #8f94a2; + font-size: 18rpx; + line-height: 1; +} + +.image-card { + min-height: 218rpx; +} + +.upload-box { + width: 106rpx; + height: 106rpx; + margin-top: 22rpx; + border-radius: 13rpx; + border: 2rpx dashed #d8d1f8; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + gap: 8rpx; + /* color: #7a57ff; */ + font-size: 19rpx; + /* font-weight: 700; */ + margin-right: 20rpx; + box-sizing: border-box; +} + +.upload-box.image-full image { + width: 100%; + height: 100%; + padding: 4rpx; + box-sizing: border-box; +} + +.plus-icon { + font-size: 44rpx; + line-height: 0.75; + font-weight: 300; +} + +.upload-tip { + margin-top: 12rpx; + color: #9ca0ad; + font-size: 18rpx; + line-height: 1; +} + +.contact-card { + min-height: 152rpx; +} + +.contact-input { + height: 54rpx; + margin-top: 20rpx; + padding: 0 20rpx; + border-radius: 12rpx; + border: 1rpx solid #e6e6ee; + background: #fbfbfd; + color: #2d3340; + font-size: 21rpx; + box-sizing: border-box; +} + +.submit-btn { + height: 68rpx; + margin: 12rpx 14rpx 0; + border-radius: 999rpx; + display: flex; + align-items: center; + justify-content: center; + color: #ffffff; + font-size: 28rpx; + font-weight: 900; + background: linear-gradient(180deg, #a45fff 0%, #6d2df1 100%); + box-shadow: 0 12rpx 24rpx rgba(111, 48, 241, 0.24); +} + +.thanks-text { + margin-top: 8rpx; + text-align: center; + color: #969aa7; + font-size: 19rpx; + line-height: 1.2; +} + +.icon-placeholder { + display: block; + flex-shrink: 0; + background: none; + border: 0; + box-shadow: none; + transform: none; +} diff --git a/miniprogram/pages/myPackage/ysxy/index.json b/miniprogram/pages/myPackage/ysxy/index.json new file mode 100644 index 0000000..8835af0 --- /dev/null +++ b/miniprogram/pages/myPackage/ysxy/index.json @@ -0,0 +1,3 @@ +{ + "usingComponents": {} +} \ No newline at end of file diff --git a/miniprogram/pages/myPackage/ysxy/index.ts b/miniprogram/pages/myPackage/ysxy/index.ts new file mode 100644 index 0000000..6be8c23 --- /dev/null +++ b/miniprogram/pages/myPackage/ysxy/index.ts @@ -0,0 +1,66 @@ +// pages/myPackage/ysxy/index.ts +Page({ + + /** + * 页面的初始数据 + */ + data: { + + }, + + /** + * 生命周期函数--监听页面加载 + */ + onLoad() { + + }, + + /** + * 生命周期函数--监听页面初次渲染完成 + */ + onReady() { + + }, + + /** + * 生命周期函数--监听页面显示 + */ + onShow() { + + }, + + /** + * 生命周期函数--监听页面隐藏 + */ + onHide() { + + }, + + /** + * 生命周期函数--监听页面卸载 + */ + onUnload() { + + }, + + /** + * 页面相关事件处理函数--监听用户下拉动作 + */ + onPullDownRefresh() { + + }, + + /** + * 页面上拉触底事件的处理函数 + */ + onReachBottom() { + + }, + + /** + * 用户点击右上角分享 + */ + onShareAppMessage() { + + } +}) \ No newline at end of file diff --git a/miniprogram/pages/myPackage/ysxy/index.wxml b/miniprogram/pages/myPackage/ysxy/index.wxml new file mode 100644 index 0000000..3f6dd95 --- /dev/null +++ b/miniprogram/pages/myPackage/ysxy/index.wxml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/miniprogram/pages/myPackage/ysxy/index.wxss b/miniprogram/pages/myPackage/ysxy/index.wxss new file mode 100644 index 0000000..616bb9b --- /dev/null +++ b/miniprogram/pages/myPackage/ysxy/index.wxss @@ -0,0 +1 @@ +/* pages/myPackage/ysxy/index.wxss */ \ No newline at end of file diff --git a/miniprogram/static/images/14_意见反馈页 3.png b/miniprogram/static/images/14_意见反馈页 3.png new file mode 100644 index 0000000..3510eb8 Binary files /dev/null and b/miniprogram/static/images/14_意见反馈页 3.png differ diff --git a/miniprogram/static/images/Frame-15355646363.png b/miniprogram/static/images/Frame-15355646363.png new file mode 100644 index 0000000..330d96c Binary files /dev/null and b/miniprogram/static/images/Frame-15355646363.png differ diff --git a/miniprogram/static/images/Frame-1561268382.png b/miniprogram/static/images/Frame-1561268382.png new file mode 100644 index 0000000..f336e26 Binary files /dev/null and b/miniprogram/static/images/Frame-1561268382.png differ diff --git a/miniprogram/static/images/Frame-1561268383.png b/miniprogram/static/images/Frame-1561268383.png new file mode 100644 index 0000000..f65caf8 Binary files /dev/null and b/miniprogram/static/images/Frame-1561268383.png differ diff --git a/miniprogram/static/images/Frame-1561268384.png b/miniprogram/static/images/Frame-1561268384.png new file mode 100644 index 0000000..d30d4da Binary files /dev/null and b/miniprogram/static/images/Frame-1561268384.png differ diff --git a/miniprogram/static/images/Frame-1561268385.png b/miniprogram/static/images/Frame-1561268385.png new file mode 100644 index 0000000..e1af5d2 Binary files /dev/null and b/miniprogram/static/images/Frame-1561268385.png differ diff --git a/miniprogram/static/images/Frame-1561268386.png b/miniprogram/static/images/Frame-1561268386.png new file mode 100644 index 0000000..d650e5c Binary files /dev/null and b/miniprogram/static/images/Frame-1561268386.png differ diff --git a/miniprogram/static/images/Frame-1561268387.png b/miniprogram/static/images/Frame-1561268387.png new file mode 100644 index 0000000..e392ab3 Binary files /dev/null and b/miniprogram/static/images/Frame-1561268387.png differ diff --git a/miniprogram/static/images/Frame-1561268388.png b/miniprogram/static/images/Frame-1561268388.png new file mode 100644 index 0000000..b6bd1ee Binary files /dev/null and b/miniprogram/static/images/Frame-1561268388.png differ diff --git a/miniprogram/static/images/Frame-1561268389.png b/miniprogram/static/images/Frame-1561268389.png new file mode 100644 index 0000000..3eec24d Binary files /dev/null and b/miniprogram/static/images/Frame-1561268389.png differ diff --git a/miniprogram/static/images/Frame-1561268390.png b/miniprogram/static/images/Frame-1561268390.png new file mode 100644 index 0000000..7804b88 Binary files /dev/null and b/miniprogram/static/images/Frame-1561268390.png differ diff --git a/miniprogram/static/images/carram_white.png b/miniprogram/static/images/carram_white.png new file mode 100644 index 0000000..379a466 Binary files /dev/null and b/miniprogram/static/images/carram_white.png differ diff --git a/miniprogram/static/images/checked.png b/miniprogram/static/images/checked.png new file mode 100644 index 0000000..46fe58c Binary files /dev/null and b/miniprogram/static/images/checked.png differ diff --git a/miniprogram/static/images/chevron-down.png b/miniprogram/static/images/chevron-down.png new file mode 100644 index 0000000..949693c Binary files /dev/null and b/miniprogram/static/images/chevron-down.png differ diff --git a/miniprogram/static/images/currency-exchange.png b/miniprogram/static/images/currency-exchange.png new file mode 100644 index 0000000..300b4be Binary files /dev/null and b/miniprogram/static/images/currency-exchange.png differ diff --git a/miniprogram/static/images/download.png b/miniprogram/static/images/download.png new file mode 100644 index 0000000..3f935fd Binary files /dev/null and b/miniprogram/static/images/download.png differ diff --git a/miniprogram/static/images/edit.png b/miniprogram/static/images/edit.png new file mode 100644 index 0000000..68bef9f Binary files /dev/null and b/miniprogram/static/images/edit.png differ diff --git a/miniprogram/static/images/file_copy.png b/miniprogram/static/images/file_copy.png new file mode 100644 index 0000000..2153db3 Binary files /dev/null and b/miniprogram/static/images/file_copy.png differ diff --git a/miniprogram/static/images/filter-3-filled.png b/miniprogram/static/images/filter-3-filled.png new file mode 100644 index 0000000..a51b0e7 Binary files /dev/null and b/miniprogram/static/images/filter-3-filled.png differ diff --git a/miniprogram/static/images/filter.png b/miniprogram/static/images/filter.png new file mode 100644 index 0000000..78a3dc3 Binary files /dev/null and b/miniprogram/static/images/filter.png differ diff --git a/miniprogram/static/images/icons/check-circle-filled.png b/miniprogram/static/images/icons/check-circle-filled.png new file mode 100644 index 0000000..747422c Binary files /dev/null and b/miniprogram/static/images/icons/check-circle-filled.png differ diff --git a/miniprogram/static/images/icons/frame_.png b/miniprogram/static/images/icons/frame_.png new file mode 100644 index 0000000..90fe057 Binary files /dev/null and b/miniprogram/static/images/icons/frame_.png differ diff --git a/miniprogram/static/images/icons/frame_1.png b/miniprogram/static/images/icons/frame_1.png new file mode 100644 index 0000000..ca15337 Binary files /dev/null and b/miniprogram/static/images/icons/frame_1.png differ diff --git a/miniprogram/static/images/icons/frame_2.png b/miniprogram/static/images/icons/frame_2.png new file mode 100644 index 0000000..2d23f00 Binary files /dev/null and b/miniprogram/static/images/icons/frame_2.png differ diff --git a/miniprogram/static/images/icons/frame_3.png b/miniprogram/static/images/icons/frame_3.png new file mode 100644 index 0000000..ad367dd Binary files /dev/null and b/miniprogram/static/images/icons/frame_3.png differ diff --git a/miniprogram/static/images/icons/frame_4.png b/miniprogram/static/images/icons/frame_4.png new file mode 100644 index 0000000..174e46d Binary files /dev/null and b/miniprogram/static/images/icons/frame_4.png differ diff --git a/miniprogram/static/images/icons/frame_5.png b/miniprogram/static/images/icons/frame_5.png new file mode 100644 index 0000000..c377e08 Binary files /dev/null and b/miniprogram/static/images/icons/frame_5.png differ diff --git a/miniprogram/static/images/icons/frame_6.png b/miniprogram/static/images/icons/frame_6.png new file mode 100644 index 0000000..c1ffd6e Binary files /dev/null and b/miniprogram/static/images/icons/frame_6.png differ diff --git a/miniprogram/static/images/icons/frame_7.png b/miniprogram/static/images/icons/frame_7.png new file mode 100644 index 0000000..d4d46e0 Binary files /dev/null and b/miniprogram/static/images/icons/frame_7.png differ diff --git a/miniprogram/static/images/icons/frame_8.png b/miniprogram/static/images/icons/frame_8.png new file mode 100644 index 0000000..f94ae48 Binary files /dev/null and b/miniprogram/static/images/icons/frame_8.png differ diff --git a/miniprogram/static/images/indexed/down_bottom.png b/miniprogram/static/images/indexed/down_bottom.png new file mode 100644 index 0000000..117f5a7 Binary files /dev/null and b/miniprogram/static/images/indexed/down_bottom.png differ diff --git a/miniprogram/static/images/indexed/lc_card.png b/miniprogram/static/images/indexed/lc_card.png new file mode 100644 index 0000000..cac5e43 Binary files /dev/null and b/miniprogram/static/images/indexed/lc_card.png differ diff --git a/miniprogram/static/images/indexed/top.png b/miniprogram/static/images/indexed/top.png new file mode 100644 index 0000000..03a99de Binary files /dev/null and b/miniprogram/static/images/indexed/top.png differ diff --git a/miniprogram/static/images/info-circle.png b/miniprogram/static/images/info-circle.png new file mode 100644 index 0000000..80bfcca Binary files /dev/null and b/miniprogram/static/images/info-circle.png differ diff --git a/miniprogram/static/images/lightbulb.png b/miniprogram/static/images/lightbulb.png new file mode 100644 index 0000000..b901ce0 Binary files /dev/null and b/miniprogram/static/images/lightbulb.png differ diff --git a/miniprogram/static/images/mic.png b/miniprogram/static/images/mic.png new file mode 100644 index 0000000..27e6c13 Binary files /dev/null and b/miniprogram/static/images/mic.png differ diff --git a/miniprogram/static/images/my/Addimages.png b/miniprogram/static/images/my/Addimages.png new file mode 100644 index 0000000..e7e912a Binary files /dev/null and b/miniprogram/static/images/my/Addimages.png differ diff --git a/miniprogram/static/images/my/Signin.png b/miniprogram/static/images/my/Signin.png new file mode 100644 index 0000000..d71557d Binary files /dev/null and b/miniprogram/static/images/my/Signin.png differ diff --git a/miniprogram/static/images/my/add.png b/miniprogram/static/images/my/add.png new file mode 100644 index 0000000..4595e0b Binary files /dev/null and b/miniprogram/static/images/my/add.png differ diff --git a/miniprogram/static/images/my/call.png b/miniprogram/static/images/my/call.png new file mode 100644 index 0000000..b0e5eed Binary files /dev/null and b/miniprogram/static/images/my/call.png differ diff --git a/miniprogram/static/images/my/caram.png b/miniprogram/static/images/my/caram.png new file mode 100644 index 0000000..2ae18d4 Binary files /dev/null and b/miniprogram/static/images/my/caram.png differ diff --git a/miniprogram/static/images/my/debug.png b/miniprogram/static/images/my/debug.png new file mode 100644 index 0000000..c84fb04 Binary files /dev/null and b/miniprogram/static/images/my/debug.png differ diff --git a/miniprogram/static/images/my/edit.png b/miniprogram/static/images/my/edit.png new file mode 100644 index 0000000..6ce5d92 Binary files /dev/null and b/miniprogram/static/images/my/edit.png differ diff --git a/miniprogram/static/images/my/image.png b/miniprogram/static/images/my/image.png new file mode 100644 index 0000000..83a1b9c Binary files /dev/null and b/miniprogram/static/images/my/image.png differ diff --git a/miniprogram/static/images/my/more.png b/miniprogram/static/images/my/more.png new file mode 100644 index 0000000..14880d4 Binary files /dev/null and b/miniprogram/static/images/my/more.png differ diff --git a/miniprogram/static/images/my/msg.png b/miniprogram/static/images/my/msg.png new file mode 100644 index 0000000..109b0af Binary files /dev/null and b/miniprogram/static/images/my/msg.png differ diff --git a/miniprogram/static/images/my/my_icon_1.png b/miniprogram/static/images/my/my_icon_1.png new file mode 100644 index 0000000..31bc1df Binary files /dev/null and b/miniprogram/static/images/my/my_icon_1.png differ diff --git a/miniprogram/static/images/my/my_icon_2.png b/miniprogram/static/images/my/my_icon_2.png new file mode 100644 index 0000000..4911389 Binary files /dev/null and b/miniprogram/static/images/my/my_icon_2.png differ diff --git a/miniprogram/static/images/my/my_icon_3.png b/miniprogram/static/images/my/my_icon_3.png new file mode 100644 index 0000000..b29c74d Binary files /dev/null and b/miniprogram/static/images/my/my_icon_3.png differ diff --git a/miniprogram/static/images/my/my_icon_7.png b/miniprogram/static/images/my/my_icon_7.png new file mode 100644 index 0000000..53f7da2 Binary files /dev/null and b/miniprogram/static/images/my/my_icon_7.png differ diff --git a/miniprogram/static/images/my/my_icon_8.png b/miniprogram/static/images/my/my_icon_8.png new file mode 100644 index 0000000..8306199 Binary files /dev/null and b/miniprogram/static/images/my/my_icon_8.png differ diff --git a/miniprogram/static/images/my/star.png b/miniprogram/static/images/my/star.png new file mode 100644 index 0000000..d386bfa Binary files /dev/null and b/miniprogram/static/images/my/star.png differ diff --git a/miniprogram/static/images/my/vip_bg.png b/miniprogram/static/images/my/vip_bg.png new file mode 100644 index 0000000..d465b28 Binary files /dev/null and b/miniprogram/static/images/my/vip_bg.png differ diff --git a/miniprogram/static/images/my/vip_btn.png b/miniprogram/static/images/my/vip_btn.png new file mode 100644 index 0000000..7e47bad Binary files /dev/null and b/miniprogram/static/images/my/vip_btn.png differ diff --git a/miniprogram/static/images/my/vip_selected.png b/miniprogram/static/images/my/vip_selected.png new file mode 100644 index 0000000..22e340c Binary files /dev/null and b/miniprogram/static/images/my/vip_selected.png differ diff --git a/miniprogram/static/images/my/yjfk_top.png b/miniprogram/static/images/my/yjfk_top.png new file mode 100644 index 0000000..6dcfc99 Binary files /dev/null and b/miniprogram/static/images/my/yjfk_top.png differ diff --git a/miniprogram/static/images/nav_icon_avatar_nor.png b/miniprogram/static/images/nav_icon_avatar_nor.png new file mode 100644 index 0000000..d1f11ae Binary files /dev/null and b/miniprogram/static/images/nav_icon_avatar_nor.png differ diff --git a/miniprogram/static/images/sign_bg.png b/miniprogram/static/images/sign_bg.png new file mode 100644 index 0000000..5b14768 Binary files /dev/null and b/miniprogram/static/images/sign_bg.png differ diff --git a/miniprogram/static/images/sign_glob_icon.png b/miniprogram/static/images/sign_glob_icon.png new file mode 100644 index 0000000..54bb315 Binary files /dev/null and b/miniprogram/static/images/sign_glob_icon.png differ diff --git a/miniprogram/static/images/stop.png b/miniprogram/static/images/stop.png new file mode 100644 index 0000000..f667ae7 Binary files /dev/null and b/miniprogram/static/images/stop.png differ diff --git a/miniprogram/static/images/to_index.png b/miniprogram/static/images/to_index.png new file mode 100644 index 0000000..997a0ca Binary files /dev/null and b/miniprogram/static/images/to_index.png differ diff --git a/miniprogram/static/images/xfj.png b/miniprogram/static/images/xfj.png new file mode 100644 index 0000000..035df2f Binary files /dev/null and b/miniprogram/static/images/xfj.png differ diff --git a/miniprogram/static/images/yinse.png b/miniprogram/static/images/yinse.png new file mode 100644 index 0000000..82773c9 Binary files /dev/null and b/miniprogram/static/images/yinse.png differ diff --git a/miniprogram/static/images/ys.png b/miniprogram/static/images/ys.png new file mode 100644 index 0000000..aaffaac Binary files /dev/null and b/miniprogram/static/images/ys.png differ diff --git a/miniprogram/static/images/zhuyi1.png b/miniprogram/static/images/zhuyi1.png new file mode 100644 index 0000000..c756946 Binary files /dev/null and b/miniprogram/static/images/zhuyi1.png differ diff --git a/miniprogram/utils/api.ts b/miniprogram/utils/api.ts new file mode 100644 index 0000000..b58888e --- /dev/null +++ b/miniprogram/utils/api.ts @@ -0,0 +1,211 @@ + +export const client = (function () { + const hosts = 'http://192.168.200.129:6604/', + uploaderUrl = 'http://192.168.200.129:6604/api/upload', + loginPath = 'oauth', + serverId = 0, + clientVersion = ''; + + let pool: any[] = []; + let waite: any[] = []; + let isLogin = false; + + const clearQueue = () => { + pool = []; + waite = []; + }; + + const requestApi = (url: string, method: 'OPTIONS' | 'GET' | 'HEAD' | 'POST' | 'PUT' | 'DELETE' | 'TRACE' | 'CONNECT', data: any, resolve: (res: any) => void, subject: (res: any) => void, retryOn401 = true) => { + wx.request({ + url: hosts + url, + header: { + 'AppId': serverId, + 'x-token': wx.getStorageSync('access_token'), + 'Content-Type': 'application/x-www-form-urlencoded', + 'Scene': wx.getStorageSync('scene'), + 'Version': clientVersion + }, + method: method, + data: data, + dataType: 'json', + success(token) { + if (+token.statusCode === 401) { + console.log(token, retryOn401); + if (retryOn401) { + make(url, method, data, resolve, subject); + } else { + subject(token); + } + return; + } + + if (+token.statusCode === 200) { + resolve(token.data); + return; + } + + subject(token); + }, + fail(fai) { + subject(fai); + } + }); + }; + + const flushQueue = () => { + const pending = pool.slice(); + clearQueue(); + + console.log(pending); + + pending.forEach((item) => { + request(item.url, item.method, item.data).then((data) => { + item.resolve(data); + }).catch((err) => { + item.subject(err); + }); + }); + }; + + const rejectQueue = (error: any) => { + const pending = pool.slice(); + console.log(pending); + clearQueue(); + pending.forEach((item) => { + item.subject(error); + }); + }; + + const login = () => { + return new Promise((resolve, reject) => { + if (isLogin === true) { + return; + } + isLogin = true; + + const success = (value: any) => { + if (value.code != 0) { + rejectQueue(value); + reject(value); + + wx.showModal({ + title: '温馨提示', + content: '登录失败,请稍后再试', + showCancel: false + }); + return + } + wx.setStorageSync('access_token', value.data.token); + setTimeout(() => { + flushQueue(); + resolve(value); + }, 50); + }; + + const fail = (err: any) => { + rejectQueue(err); + reject(err); + }; + + wx.login({ + timeout: 3000, + success: (res) => { + isLogin = false; + const options = wx.getLaunchOptionsSync(); + requestApi( + loginPath, + 'POST', + { + code: res.code, + query: JSON.stringify(options.query), + scene: options.scene + }, + success, + fail, + false + ); + }, + fail: (res) => { + isLogin = false; + rejectQueue(res); + reject(res); + } + }); + // #endif + }); + }; + + const make = (url: string, method: 'OPTIONS' | 'GET' | 'HEAD' | 'POST' | 'PUT' | 'DELETE' | 'TRACE' | 'CONNECT', data: any, resolve: (res: any) => void, subject: (res: any) => void) => { + const obj = { + url: url, + method: method, + data: data, + resolve: resolve, + subject: subject + }; + const key = method + url; + if (waite.indexOf(key) === -1) { + waite.push(key); + pool.push(obj); + } + login().catch((res: any) => { + console.log('catch', res); + rejectQueue(res); + subject(res); + }).then((res: any) => { + console.log('then', res); + }); + }; + + const request = (url: string, method: 'OPTIONS' | 'GET' | 'HEAD' | 'POST' | 'PUT' | 'DELETE' | 'TRACE' | 'CONNECT', data = {}) => { + return new Promise((resolve, subject) => { + const token = wx.getStorageSync('access_token'); + if (token !== null && token !== '') { + requestApi(url, method, data, resolve, subject); + } else { + make(url, method, data, resolve, subject); + } + }); + }; + + const upload = (imageUrl: string, data: any, path: string = '/api/upload/default') => { + return new Promise((sCall, eCall) => { + wx.uploadFile({ + filePath: imageUrl, + name: 'file', + url: 'http://192.168.200.129:6604' + path, + header: { + AppId: serverId, + 'x-token': wx.getStorageSync('access_token'), + Version: clientVersion + }, + formData: data, + success(token) { + try { + const json = JSON.parse(token.data); + if (token.statusCode === 401) { + eCall(json); + } else { + sCall(json); + } + } catch (e) { + eCall(e); + } + }, + fail(res) { + wx.showModal({ + title: '错误提示', + content: '网络异常,请稍后再试', + showCancel: false + }); + eCall(res); + } + }); + }); + }; + + return { + request, + upload + }; +})() \ No newline at end of file diff --git a/miniprogram/utils/event.ts b/miniprogram/utils/event.ts new file mode 100644 index 0000000..1987324 --- /dev/null +++ b/miniprogram/utils/event.ts @@ -0,0 +1,173 @@ +/** + * 优化后的事件系统 + * 使用 WeakMap 来追踪监听器,避免内存泄漏 + * 使用数组存储监听器,确保正确注册和移除 + */ +export const customEvent = (function () { + let events: { [key: string]: any } = {}; + + // 用于追踪监听器的唯一标识,避免重复注册 + let locked: { [key: string]: any } = {}; + + /** + * 检查监听器是否已经注册 + */ + function isListenerRegistered(listeners: any, listener: any) { + if (!Array.isArray(listeners)) { + return false; + } + // 使用严格相等检查 + return listeners.some(item => item === listener); + } + + return { + /** + * 注册事件监听器 + * @param {string} name - 事件名称 + * @param {Function} callback - 回调函数 + */ + on: function (name: string, callback: Function) { + if (typeof name !== 'string' || !name) { + return; + } + if (typeof callback !== 'function') { + return; + } + + // 初始化事件数组 + if (!events[name]) { + events[name] = []; + } + + // 检查是否已经注册过 + if (isListenerRegistered(events[name], callback)) { + return; + } + + // 注册监听器 + events[name].push({ + once: false, + handler: callback + }); + }, + /** + * 注册事件监听器 + * @param {string} name - 事件名称 + * @param {Function} callback - 回调函数 + */ + once: function (name: string, callback: Function) { + if (typeof name !== 'string' || !name) { + return; + } + if (typeof callback !== 'function') { + return; + } + + // 初始化事件数组 + if (!events[name]) { + events[name] = []; + } + + // 检查是否已经注册过 + if (isListenerRegistered(events[name], callback)) { + return; + } + + // 注册监听器 + events[name].push({ + once: true, + handler: callback + }); + }, + + /** + * 取消事件监听器 + * @param {string} name - 事件名称 + * @param {Function} callback - 要移除的回调函数,如果为 null 则移除该事件的所有监听器 + */ + off: function (name: string, callback: null | Function = null) { + if (typeof name !== 'string' || !name) { + return; + } + + // 如果事件不存在,直接返回 + if (!events[name] || !Array.isArray(events[name])) { + return; + } + + // 如果没有指定回调,移除该事件的所有监听器 + if (callback === null) { + delete events[name]; + return; + } + + // 查找并移除指定的监听器 + const index = events[name].findIndex((listener: { handler: Function }) => listener.handler === callback); + if (index !== -1) { + events[name].splice(index, 1); + } + + // 如果该事件没有监听器了,清理事件对象 + if (events[name].length === 0) { + delete events[name]; + } + }, + + /** + * 触发事件 + * @param {string} name - 事件名称 + * @param {Object} data - 事件数据 + */ + emmit: function (name: string, data: any) { + if (typeof name !== 'string' || !name) { + return; + } + + // 如果事件不存在或没有监听器,直接返回 + if (!events[name] || !Array.isArray(events[name]) || events[name].length === 0) { + return; + } + + if ((locked[name] || false) === true) { + return; + } + locked[name] = true; + + // 创建 SocketMessage 实例 + + // 复制监听器数组,避免在执行过程中数组被修改 + const listeners = [...events[name]]; + + // 触发所有监听器 + listeners.forEach((listener, index) => { + try { + if (listener.once) { + events[name].splice(index, 1) + } + listener.handler(data); + } catch (e) { + console.log(e) + } + }); + + locked[name] = false; + + delete locked[name] + }, + + /** + * 获取事件监听器数量(用于调试) + * @param {string} name - 事件名称,如果为空则返回所有事件的信息 + */ + getListenerCount: function (name: string) { + if (name) { + return events[name] ? events[name].length : 0; + } + const result: { [key: string]: any } = {}; + Object.keys(events).forEach(eventName => { + result[eventName] = events[eventName].length; + }); + return result; + } + } +})(); \ No newline at end of file diff --git a/miniprogram/utils/request.ts b/miniprogram/utils/request.ts new file mode 100644 index 0000000..91a3986 --- /dev/null +++ b/miniprogram/utils/request.ts @@ -0,0 +1,110 @@ +import { client } from "./api" +import { customEvent } from "./event"; + +export const resetuserinfocache = (that?: any) => { + userInfo().then((res: any) => { + if (!res.code) { + wx.setStorageSync('userInfo', res.data); + if (that) { + that.setData({ userInfo: res.Data }); + } + customEvent.emmit('update:userinfo', [res.data]); + } + }) +} +export const userInfo = () => { + return client.request('api/info', 'GET'); +} +export const login = () => { + return client.request('oauth', 'GET'); +} + +export const diamonds = () => { + return client.request('api/diamond/confs', 'GET'); +} +export const vips = () => { + return client.request('api/vip/confs', 'GET'); +} +export const updateuserinfo = (nickname: string, avatar: string) => { + return client.request('api/update', 'POST', { nickname, avatar }); +} +export const analysis = (content: string) => { + return client.request('api/analysis', 'POST', { content }); +} +export const tasksearch = (taskId: string) => { + return client.request('api/task', 'GET', { taskId }); +} +export const createTask = (parseId: string, content: string) => { + return client.request('api/task/create', 'POST', { parseId, content }); +} +export const polishScript = (taskId: string, content: string, style = 'optimize') => { + return client.request('api/script/polish', 'POST', { taskId, content, style }); +} +export const saveScript = (taskId: string, content: string) => { + return client.request('api/script/save', 'POST', { taskId, content }); +} +export const diamondVirtualPayment = (configId: number) => { + return client.request('api/virtual/diamond', 'POST', { configId }); +} +export const vipVirtualPayment = (configId: number) => { + return client.request('api/virtual/vip', 'POST', { configId }); +} +export const taskinfo = (taskId: string) => { + return client.request('api/task/search', 'GET', { taskId }); +} +export const feedback = (data: any) => { + return client.request('api/feedback', 'POST', { data }); +} +export const updateTaskAvatar = (taskId: string, avatarId: number) => { + return client.request('api/task/avatar', 'POST', { taskId, avatarId }); +} +export const updateTaskVoice = (taskId: string, voiceId: number) => { + return client.request('api/task/voice', 'POST', { taskId, voiceId }); +} +export const updatesessionkey = (code: string) => { + return client.request('api/update/session-key', 'POST', { code }); +} +export const uploadavatar = (file: any, data: any, path: string) => { + return client.upload(file, data, path); +} +export const checkavatar = (url: string) => { + return client.request('api/upload/avatar/check', 'POST', { url }); +} +export const checkvoice = (url: string, asrTaskId = '') => { + return client.request('api/upload/voice/check', 'POST', { url, asrTaskId }); +} +export const saveHumanAssets = (data: { taskId: string, avatarUrl: string, voiceUrl: string, voiceText: string, durationMs?: number, asrTaskId?: string }) => { + return client.request('api/human-assets/save', 'POST', data); +} +export const backgroundTemplates = () => { + return client.request('api/background/templates', 'GET'); +} +export const updateTaskBackground = (taskId: string, backgroundId: number) => { + return client.request('api/task/background', 'POST', { taskId, backgroundId }); +} +export const historyList = (status = 'all', page = 1, limit = 10) => { + return client.request('api/history', 'GET', { status, page, limit }); +} +export const historyDetail = (taskId: string) => { + return client.request('api/history/detail', 'GET', { taskId }); +} +export const historyDelete = (taskId: string) => { + return client.request('api/history/delete', 'POST', { taskId }); +} +export const historyDownload = (taskId: string) => { + return client.request('api/history/download', 'POST', { taskId }); +} +export const historyCancel = (taskId: string) => { + return client.request('api/history/cancel', 'POST', { taskId }); +} +export const sign = () => { + return client.request('api/sign', 'POST', {}); +} +export const uploadrecord = (file: string) => { + return client.upload(file, {}, '/api/upload/voice'); +} + + + + + diff --git a/miniprogram/utils/util.ts b/miniprogram/utils/util.ts new file mode 100644 index 0000000..47c3f3b --- /dev/null +++ b/miniprogram/utils/util.ts @@ -0,0 +1,34 @@ +import { userInfo } from "./request" + +export const formatTime = (date: Date) => { + const year = date.getFullYear() + const month = date.getMonth() + 1 + const day = date.getDate() + const hour = date.getHours() + const minute = date.getMinutes() + const second = date.getSeconds() + + return ( + [year, month, day].map(formatNumber).join('/') + + ' ' + + [hour, minute, second].map(formatNumber).join(':') + ) +} + +const formatNumber = (n: number) => { + const s = n.toString() + return s[1] ? s : '0' + s +} + + +export const event = { + user: { + update: () => { + userInfo().then((res: any) => { + if (!res.code) { + wx.setStorageSync('userInfo', res.data); + } + }) + } + } +} \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..8bead47 --- /dev/null +++ b/package.json @@ -0,0 +1,15 @@ +{ + "name": "miniprogram-ts-quickstart", + "version": "1.0.0", + "description": "", + "scripts": { + }, + "keywords": [], + "author": "", + "license": "", + "dependencies": { + }, + "devDependencies": { + "miniprogram-api-typings": "^2.8.3-1" + } +} diff --git a/project.config.json b/project.config.json new file mode 100644 index 0000000..b3eb1b1 --- /dev/null +++ b/project.config.json @@ -0,0 +1,50 @@ +{ + "description": "项目配置文件", + "miniprogramRoot": "miniprogram/", + "compileType": "miniprogram", + "setting": { + "useCompilerPlugins": [ + "typescript" + ], + "babelSetting": { + "ignore": [], + "disablePlugins": [], + "outputPath": "" + }, + "coverView": false, + "postcss": false, + "minified": false, + "enhance": false, + "showShadowRootInWxmlPanel": false, + "packNpmRelationList": [], + "ignoreUploadUnusedFiles": true, + "compileHotReLoad": false, + "skylineRenderEnable": true, + "es6": false, + "compileWorklet": false, + "uglifyFileName": false, + "uploadWithSourceMap": true, + "packNpmManually": false, + "minifyWXSS": true, + "minifyWXML": true, + "localPlugins": false, + "condition": false, + "swc": false, + "disableSWC": true, + "disableUseStrict": false + }, + "simulatorType": "wechat", + "simulatorPluginLibVersion": {}, + "condition": {}, + "srcMiniprogramRoot": "miniprogram/", + "editorSetting": { + "tabIndent": "insertSpaces", + "tabSize": 2 + }, + "libVersion": "trial", + "packOptions": { + "ignore": [], + "include": [] + }, + "appid": "wx1112ecdb0cb678d5" +} \ No newline at end of file diff --git a/project.private.config.json b/project.private.config.json new file mode 100644 index 0000000..d5d7ecf --- /dev/null +++ b/project.private.config.json @@ -0,0 +1,22 @@ +{ + "description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档:https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html", + "projectname": "%E6%95%B0%E5%AD%97%E4%BA%BA", + "setting": { + "compileHotReLoad": true, + "urlCheck": false, + "coverView": false, + "lazyloadPlaceholderEnable": false, + "skylineRenderEnable": true, + "preloadBackgroundData": false, + "autoAudits": false, + "useApiHook": true, + "showShadowRootInWxmlPanel": false, + "useStaticServer": false, + "useLanDebug": false, + "showES6CompileOption": false, + "bigPackageSizeSupport": false, + "checkInvalidKey": true, + "ignoreDevUnusedFiles": true + }, + "libVersion": "3.8.12" +} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..8a0323d --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,31 @@ +{ + "compilerOptions": { + "strictNullChecks": true, + "noImplicitAny": true, + "module": "CommonJS", + "target": "ES5", + "allowJs": true, + "allowSyntheticDefaultImports": true, + "esModuleInterop": true, + "experimentalDecorators": true, + "noImplicitThis": true, + "noImplicitReturns": true, + "alwaysStrict": true, + "noFallthroughCasesInSwitch": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "strict": true, + "strictPropertyInitialization": true, + "lib": ["ES2020"], + "typeRoots": [ + "./typings" + ] + }, + "include": [ + "./**/*.ts" + ], + "exclude": [ + "node_modules" + ] +} + diff --git a/typings/index.d.ts b/typings/index.d.ts new file mode 100644 index 0000000..3ee60c8 --- /dev/null +++ b/typings/index.d.ts @@ -0,0 +1,8 @@ +/// + +interface IAppOption { + globalData: { + userInfo?: WechatMiniprogram.UserInfo, + } + userInfoReadyCallback?: WechatMiniprogram.GetUserInfoSuccessCallback, +} \ No newline at end of file diff --git a/typings/types/index.d.ts b/typings/types/index.d.ts new file mode 100644 index 0000000..a5e8a7c --- /dev/null +++ b/typings/types/index.d.ts @@ -0,0 +1 @@ +/// diff --git a/typings/types/wx/index.d.ts b/typings/types/wx/index.d.ts new file mode 100644 index 0000000..db82722 --- /dev/null +++ b/typings/types/wx/index.d.ts @@ -0,0 +1,74 @@ +/*! ***************************************************************************** +Copyright (c) 2021 Tencent, Inc. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +***************************************************************************** */ + +/// +/// +/// +/// +/// +/// +/// + +declare namespace WechatMiniprogram { + type IAnyObject = Record + type Optional = F extends (arg: infer P) => infer R ? (arg?: P) => R : F + type OptionalInterface = { [K in keyof T]: Optional } + interface AsyncMethodOptionLike { + success?: (...args: any[]) => void + } + type PromisifySuccessResult< + P, + T extends AsyncMethodOptionLike + > = P extends { success: any } + ? void + : P extends { fail: any } + ? void + : P extends { complete: any } + ? void + : Promise>[0]> +} + +declare const console: WechatMiniprogram.Console +declare const wx: WechatMiniprogram.Wx +/** 引入模块。返回模块通过 `module.exports` 或 `exports` 暴露的接口。 */ +declare function require( + /** 需要引入模块文件相对于当前文件的相对路径,或 npm 模块名,或 npm 模块路径。不支持绝对路径 */ + module: string +): any +/** 引入插件。返回插件通过 `main` 暴露的接口。 */ +declare function requirePlugin( + /** 需要引入的插件的 alias */ + module: string +): any +/** 插件引入当前使用者小程序。返回使用者小程序通过 [插件配置中 `export` 暴露的接口](https://developers.weixin.qq.com/miniprogram/dev/framework/plugin/using.html#%E5%AF%BC%E5%87%BA%E5%88%B0%E6%8F%92%E4%BB%B6)。 + * + * 该接口只在插件中存在 + * + * 最低基础库: `2.11.1` */ +declare function requireMiniProgram(): any +/** 当前模块对象 */ +declare let module: { + /** 模块向外暴露的对象,使用 `require` 引用该模块时可以获取 */ + exports: any +} +/** `module.exports` 的引用 */ +declare let exports: any diff --git a/typings/types/wx/lib.wx.api.d.ts b/typings/types/wx/lib.wx.api.d.ts new file mode 100644 index 0000000..4e07ba0 --- /dev/null +++ b/typings/types/wx/lib.wx.api.d.ts @@ -0,0 +1,19694 @@ +/*! ***************************************************************************** +Copyright (c) 2021 Tencent, Inc. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +***************************************************************************** */ + +declare namespace WechatMiniprogram { + interface RequestVirtualPaymentOption { + /** 支付的类型, 不同的支付类型有各自额外要传的附加参数 + * + * 可选值: + * - 'short_series_goods': 道具直购; + * - 'short_series_coin': 代币充值; */ + mode: 'short_series_goods' | 'short_series_coin' + /** 支付签名, 详见[《签名详解》](https://developers.weixin.qq.com/miniprogram/dev/platform-capabilities/industry/virtual-payment.html) */ + paySig: string + /** 具体支付参数见signData, 该参数需以string形式传递, 例如signData: '{"offerId":"123","buyQuantity":1,"env":0,"currencyType":"CNY","productId":"testproductId","goodsPrice":10,"outTradeNo":"xxxxxx","attach":"testdata"}' */ + signData: string + /** 用户态签名, 详见[《签名详解》](https://developers.weixin.qq.com/miniprogram/dev/platform-capabilities/industry/virtual-payment.html) */ + signature: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: any + /** 接口调用失败的回调函数 */ + fail?: any + /** 接口调用成功的回调函数 */ + success?: any + } + interface AccessFailCallbackResult { + /** 错误信息 + * + * 可选值: + * - 'fail no such file or directory ${path}': 文件/目录不存在; + * - 'fail sdcard not mounted': Android sdcard 挂载失败; */ + errMsg: string + } + interface AccessOption { + /** 要判断是否存在的文件/目录路径 (本地路径) */ + path: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: AccessCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: AccessFailCallback + /** 接口调用成功的回调函数 */ + success?: AccessSuccessCallback + } + /** 帐号信息 */ + interface AccountInfo { + /** 小程序帐号信息 */ + miniProgram: MiniProgram + /** 插件帐号信息(仅在插件中调用时包含这一项) */ + plugin: Plugin + } + interface AddCardOption { + /** 需要添加的卡券列表 */ + cardList: AddCardRequestInfo[] + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: AddCardCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: AddCardFailCallback + /** 接口调用成功的回调函数 */ + success?: AddCardSuccessCallback + } + /** 需要添加的卡券列表 */ + interface AddCardRequestInfo { + /** 卡券的扩展参数。需将 CardExt 对象 JSON 序列化为**字符串**传入 */ + cardExt: string + /** 卡券 ID */ + cardId: string + } + /** 卡券添加结果列表 */ + interface AddCardResponseInfo { + /** 卡券的扩展参数,结构请参考下文 */ + cardExt: string + /** 用户领取到卡券的 ID */ + cardId: string + /** 加密 code,为用户领取到卡券的code加密后的字符串,解密请参照:[code 解码接口](https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1499332673_Unm7V) */ + code: string + /** 是否成功 */ + isSuccess: boolean + } + interface AddCardSuccessCallbackResult { + /** 卡券添加结果列表 */ + cardList: AddCardResponseInfo[] + errMsg: string + } + interface AddCustomLayerOption { + /** 个性化图层id */ + layerId: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: AddCustomLayerCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: AddCustomLayerFailCallback + /** 接口调用成功的回调函数 */ + success?: AddCustomLayerSuccessCallback + } + interface AddGroundOverlayOption { + /** 图片覆盖的经纬度范围 */ + bounds: MapBounds + /** 图片图层 id */ + id: string + /** 图片路径,支持网络图片、临时路径、代码包路径 */ + src: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: AddGroundOverlayCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: AddGroundOverlayFailCallback + /** 图层透明度 */ + opacity?: number + /** 接口调用成功的回调函数 */ + success?: AddGroundOverlaySuccessCallback + /** 是否可见 */ + visible?: boolean + /** 图层绘制顺序 */ + zIndex?: number + } + interface AddMarkersOption { + /** 同传入 map 组件的 marker 属性 */ + markers: any[] + /** 是否先清空地图上所有 marker */ + clear?: boolean + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: AddMarkersCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: AddMarkersFailCallback + /** 接口调用成功的回调函数 */ + success?: AddMarkersSuccessCallback + } + interface AddPhoneCalendarOption { + /** 开始时间的 unix 时间戳 */ + startTime: number + /** 日历事件标题 */ + title: string + /** 是否提醒,默认 true */ + alarm?: boolean + /** 提醒提前量,单位秒,默认 0 表示开始时提醒 */ + alarmOffset?: number + /** 是否全天事件,默认 false */ + allDay?: boolean + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: AddPhoneCalendarCompleteCallback + /** 事件说明 */ + description?: string + /** 结束时间的 unix 时间戳,默认与开始时间相同 */ + endTime?: string + /** 接口调用失败的回调函数 */ + fail?: AddPhoneCalendarFailCallback + /** 事件位置 */ + location?: string + /** 接口调用成功的回调函数 */ + success?: AddPhoneCalendarSuccessCallback + } + interface AddPhoneContactOption { + /** 名字 */ + firstName: string + /** 联系地址城市 */ + addressCity?: string + /** 联系地址国家 */ + addressCountry?: string + /** 联系地址邮政编码 */ + addressPostalCode?: string + /** 联系地址省份 */ + addressState?: string + /** 联系地址街道 */ + addressStreet?: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: AddPhoneContactCompleteCallback + /** 电子邮件 */ + email?: string + /** 接口调用失败的回调函数 */ + fail?: AddPhoneContactFailCallback + /** 住宅地址城市 */ + homeAddressCity?: string + /** 住宅地址国家 */ + homeAddressCountry?: string + /** 住宅地址邮政编码 */ + homeAddressPostalCode?: string + /** 住宅地址省份 */ + homeAddressState?: string + /** 住宅地址街道 */ + homeAddressStreet?: string + /** 住宅传真 */ + homeFaxNumber?: string + /** 住宅电话 */ + homePhoneNumber?: string + /** 公司电话 */ + hostNumber?: string + /** 姓氏 */ + lastName?: string + /** 中间名 */ + middleName?: string + /** 手机号 */ + mobilePhoneNumber?: string + /** 昵称 */ + nickName?: string + /** 公司 */ + organization?: string + /** 头像本地文件路径 */ + photoFilePath?: string + /** 备注 */ + remark?: string + /** 接口调用成功的回调函数 */ + success?: AddPhoneContactSuccessCallback + /** 职位 */ + title?: string + /** 网站 */ + url?: string + /** 微信号 */ + weChatNumber?: string + /** 工作地址城市 */ + workAddressCity?: string + /** 工作地址国家 */ + workAddressCountry?: string + /** 工作地址邮政编码 */ + workAddressPostalCode?: string + /** 工作地址省份 */ + workAddressState?: string + /** 工作地址街道 */ + workAddressStreet?: string + /** 工作传真 */ + workFaxNumber?: string + /** 工作电话 */ + workPhoneNumber?: string + } + interface AddPhoneRepeatCalendarOption { + /** 开始时间的 unix 时间戳 (1970年1月1日开始所经过的秒数) */ + startTime: number + /** 日历事件标题 */ + title: string + /** 是否提醒,默认 true */ + alarm?: boolean + /** 提醒提前量,单位秒,默认 0 表示开始时提醒 */ + alarmOffset?: number + /** 是否全天事件,默认 false */ + allDay?: boolean + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: AddPhoneRepeatCalendarCompleteCallback + /** 事件说明 */ + description?: string + /** 结束时间的 unix 时间戳,默认与开始时间相同 */ + endTime?: string + /** 接口调用失败的回调函数 */ + fail?: AddPhoneRepeatCalendarFailCallback + /** 事件位置 */ + location?: string + /** 重复周期结束时间的 unix 时间戳,不填表示一直重复 */ + repeatEndTime?: number + /** 重复周期,默认 month 每月重复 */ + repeatInterval?: string + /** 接口调用成功的回调函数 */ + success?: AddPhoneRepeatCalendarSuccessCallback + } + interface AddServiceOption { + /** 描述service的Object */ + service: BLEPeripheralService + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: AddServiceCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: AddServiceFailCallback + /** 接口调用成功的回调函数 */ + success?: AddServiceSuccessCallback + } + /** 广播自定义参数 */ + interface AdvertiseReqObj { + /** 当前Service是否可连接 */ + connectable?: boolean + /** 广播中deviceName字段,默认为空 */ + deviceName?: string + /** 广播的制造商信息, 仅安卓支持 */ + manufacturerData?: ManufacturerData[] + /** 要广播的serviceUuid列表 */ + serviceUuids?: string[] + } + /** animationData */ + interface AnimationExportResult { + actions: IAnyObject[] + } + /** 动画效果 */ + interface AnimationOption { + /** 动画变化时间,单位 ms */ + duration?: number + /** 动画变化方式 + * + * 可选值: + * - 'linear': 动画从头到尾的速度是相同的; + * - 'easeIn': 动画以低速开始; + * - 'easeOut': 动画以低速结束; + * - 'easeInOut': 动画以低速开始和结束; */ + timingFunc?: 'linear' | 'easeIn' | 'easeOut' | 'easeInOut' + } + interface AppendFileFailCallbackResult { + /** 错误信息 + * + * 可选值: + * - 'fail no such file or directory, open ${filePath}': 指定的 filePath 文件不存在; + * - 'fail illegal operation on a directory, open "${filePath}"': 指定的 filePath 是一个已经存在的目录; + * - 'fail permission denied, open ${dirPath}': 指定的 filePath 路径没有写权限; + * - 'fail sdcard not mounted': Android sdcard 挂载失败; */ + errMsg: string + } + interface AppendFileOption { + /** 要追加的文本或二进制数据 */ + data: string | ArrayBuffer + /** 要追加内容的文件路径 (本地路径) */ + filePath: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: AppendFileCompleteCallback + /** 指定写入文件的字符编码 + * + * 可选值: + * - 'ascii': ; + * - 'base64': ; + * - 'binary': ; + * - 'hex': ; + * - 'ucs2': 以小端序读取; + * - 'ucs-2': 以小端序读取; + * - 'utf16le': 以小端序读取; + * - 'utf-16le': 以小端序读取; + * - 'utf-8': ; + * - 'utf8': ; + * - 'latin1': ; */ + encoding?: + | 'ascii' + | 'base64' + | 'binary' + | 'hex' + | 'ucs2' + | 'ucs-2' + | 'utf16le' + | 'utf-16le' + | 'utf-8' + | 'utf8' + | 'latin1' + /** 接口调用失败的回调函数 */ + fail?: AppendFileFailCallback + /** 接口调用成功的回调函数 */ + success?: AppendFileSuccessCallback + } + interface AuthPrivateMessageOption { + /** shareTicket。可以从 wx.onShow 中获取。详情 [shareTicket](https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share.html) */ + shareTicket: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: AuthPrivateMessageCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: AuthPrivateMessageFailCallback + /** 接口调用成功的回调函数 */ + success?: AuthPrivateMessageSuccessCallback + } + interface AuthPrivateMessageSuccessCallbackResult { + /** 经过加密的activityId,解密后可得到原始的activityId。若解密后得到的activityId可以与开发者后台的活动id对应上则验证通过,否则表明valid字段不可靠(被篡改) 详细见[加密数据解密算法](https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/signature.html) */ + encryptedData: string + /** 错误信息 */ + errMsg: string + /** 加密算法的初始向量,详细见[加密数据解密算法](https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/signature.html) */ + iv: string + /** 验证是否通过 */ + valid: boolean + } + /** 用户授权设置信息,详情参考[权限](https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/authorize.html) */ + interface AuthSetting { + /** 是否授权通讯地址,已取消此项授权,会默认返回true */ + 'scope.address'?: boolean + /** 是否授权摄像头,对应[[camera](https://developers.weixin.qq.com/miniprogram/dev/component/camera.html)](https://developers.weixin.qq.com/miniprogram/dev/component/camera.html) 组件 */ + 'scope.camera'?: boolean + /** 是否授权获取发票,已取消此项授权,会默认返回true */ + 'scope.invoice'?: boolean + /** 是否授权发票抬头,已取消此项授权,会默认返回true */ + 'scope.invoiceTitle'?: boolean + /** 是否授权录音功能,对应接口 [wx.startRecord](https://developers.weixin.qq.com/miniprogram/dev/api/media/recorder/wx.startRecord.html) */ + 'scope.record'?: boolean + /** 是否授权用户信息,对应接口 [wx.getUserInfo](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/user-info/wx.getUserInfo.html) */ + 'scope.userInfo'?: boolean + /** 是否授权地理位置,对应接口 [wx.getLocation](https://developers.weixin.qq.com/miniprogram/dev/api/location/wx.getLocation.html), [wx.chooseLocation](https://developers.weixin.qq.com/miniprogram/dev/api/location/wx.chooseLocation.html) */ + 'scope.userLocation'?: boolean + /** 是否授权微信运动步数,对应接口 [wx.getWeRunData](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/werun/wx.getWeRunData.html) */ + 'scope.werun'?: boolean + /** 是否授权保存到相册 [wx.saveImageToPhotosAlbum](https://developers.weixin.qq.com/miniprogram/dev/api/media/image/wx.saveImageToPhotosAlbum.html), [wx.saveVideoToPhotosAlbum](https://developers.weixin.qq.com/miniprogram/dev/api/media/video/wx.saveVideoToPhotosAlbum.html) */ + 'scope.writePhotosAlbum'?: boolean + } + interface AuthorizeForMiniProgramOption { + /** 需要获取权限的 scope,详见 [scope 列表]((authorize#scope-列表)) + * + * 可选值: + * - 'scope.record': ; + * - 'scope.writePhotosAlbum': ; + * - 'scope.camera': ; */ + scope: 'scope.record' | 'scope.writePhotosAlbum' | 'scope.camera' + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: AuthorizeForMiniProgramCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: AuthorizeForMiniProgramFailCallback + /** 接口调用成功的回调函数 */ + success?: AuthorizeForMiniProgramSuccessCallback + } + interface AuthorizeOption { + /** 需要获取权限的 scope,详见 [scope 列表]((authorize#scope-列表)) */ + scope: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: AuthorizeCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: AuthorizeFailCallback + /** 接口调用成功的回调函数 */ + success?: AuthorizeSuccessCallback + } + /** 设备特征值列表 */ + interface BLECharacteristic { + /** 该特征值支持的操作类型 */ + properties: BLECharacteristicProperties + /** 蓝牙设备特征值的 uuid */ + uuid: string + } + /** 该特征值支持的操作类型 */ + interface BLECharacteristicProperties { + /** 该特征值是否支持 indicate 操作 */ + indicate: boolean + /** 该特征值是否支持 notify 操作 */ + notify: boolean + /** 该特征值是否支持 read 操作 */ + read: boolean + /** 该特征值是否支持 write 操作 */ + write: boolean + } + interface BLEPeripheralServerCloseOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SocketTaskCloseCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SocketTaskCloseFailCallback + /** 接口调用成功的回调函数 */ + success?: SocketTaskCloseSuccessCallback + } + /** 描述service的Object */ + interface BLEPeripheralService { + /** characteristics列表 */ + characteristics: Characteristic[] + /** service 的 uuid */ + uuid: string + } + /** 设备服务列表 */ + interface BLEService { + /** 该服务是否为主服务 */ + isPrimary: boolean + /** 蓝牙设备服务的 uuid */ + uuid: string + } + /** BackgroundAudioManager 实例,可通过 [wx.getBackgroundAudioManager](https://developers.weixin.qq.com/miniprogram/dev/api/media/background-audio/wx.getBackgroundAudioManager.html) 获取。 +* +* **示例代码** +* +* +* ```js +const backgroundAudioManager = wx.getBackgroundAudioManager() + +backgroundAudioManager.title = '此时此刻' +backgroundAudioManager.epname = '此时此刻' +backgroundAudioManager.singer = '许巍' +backgroundAudioManager.coverImgUrl = 'http://y.gtimg.cn/music/photo_new/T002R300x300M000003rsKF44GyaSk.jpg?max_age=2592000' +// 设置了 src 之后会自动播放 +backgroundAudioManager.src = 'http://ws.stream.qqmusic.qq.com/M500001VfvsJ21xFqb.mp3?guid=ffffffff82def4af4b12b3cd9337d5e7&uin=346897220&vkey=6292F51E1E384E061FF02C31F716658E5C81F5594D561F2E88B854E81CAAB7806D5E4F103E55D33C16F3FAC506D1AB172DE8600B37E43FAD&fromtag=46' +``` */ + interface BackgroundAudioManager { + /** 音频已缓冲的时间,仅保证当前播放时间点到此时间点内容已缓冲。(只读) */ + buffered: number + /** 封面图 URL,用于做原生音频播放器背景图。原生音频播放器中的分享功能,分享出去的卡片配图及背景也将使用该图。 */ + coverImgUrl: string + /** 当前音频的播放位置(单位:s),只有在有合法 src 时返回。(只读) */ + currentTime: number + /** 当前音频的长度(单位:s),只有在有合法 src 时返回。(只读) */ + duration: number + /** 专辑名,原生音频播放器中的分享功能,分享出去的卡片简介,也将使用该值。 */ + epname: string + /** 当前是否暂停或停止。(只读) */ + paused: boolean + /** 播放速度。范围 0.5-2.0,默认为 1。(Android 需要 6 及以上版本) + * + * 最低基础库: `2.11.0` */ + playbackRate: number + /** 音频协议。默认值为 'http',设置 'hls' 可以支持播放 HLS 协议的直播音频。 + * + * 最低基础库: `1.9.94` */ + protocol: string + /** 歌手名,原生音频播放器中的分享功能,分享出去的卡片简介,也将使用该值。 */ + singer: string + /** 音频的数据源([2.2.3](https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html) 开始支持云文件ID)。默认为空字符串,**当设置了新的 src 时,会自动开始播放**,目前支持的格式有 m4a, aac, mp3, wav。 */ + src: string + /** 音频开始播放的位置(单位:s)。 */ + startTime: number + /** 音频标题,用于原生音频播放器音频标题(必填)。原生音频播放器中的分享功能,分享出去的卡片标题,也将使用该值。 */ + title: string + /** 页面链接,原生音频播放器中的分享功能,分享出去的卡片简介,也将使用该值。 */ + webUrl: string + } + interface BlueToothDevice { + /** 当前蓝牙设备的信号强度 */ + RSSI: number + /** 当前蓝牙设备的广播数据段中的 ManufacturerData 数据段。 */ + advertisData: ArrayBuffer + /** 当前蓝牙设备的广播数据段中的 ServiceUUIDs 数据段 */ + advertisServiceUUIDs: string[] + /** 用于区分设备的 id */ + deviceId: string + /** 当前蓝牙设备的广播数据段中的 LocalName 数据段 */ + localName: string + /** 蓝牙设备名称,某些设备可能没有 */ + name: string + /** 当前蓝牙设备的广播数据段中的 ServiceData 数据段 */ + serviceData: IAnyObject + } + /** 搜索到的设备列表 */ + interface BluetoothDeviceInfo { + /** 用于区分设备的 id */ + deviceId: string + /** 蓝牙设备名称,某些设备可能没有 */ + name: string + } + interface BlurOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: BlurCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: BlurFailCallback + /** 接口调用成功的回调函数 */ + success?: BlurSuccessCallback + } + interface BoundingClientRectCallbackResult { + /** 节点的下边界坐标 */ + bottom: number + /** 节点的 dataset */ + dataset: IAnyObject + /** 节点的高度 */ + height: number + /** 节点的 ID */ + id: string + /** 节点的左边界坐标 */ + left: number + /** 节点的右边界坐标 */ + right: number + /** 节点的上边界坐标 */ + top: number + /** 节点的宽度 */ + width: number + } + /** 目标边界 */ + interface BoundingClientRectResult { + /** 下边界 */ + bottom: number + /** 高度 */ + height: number + /** 左边界 */ + left: number + /** 右边界 */ + right: number + /** 上边界 */ + top: number + /** 宽度 */ + width: number + } + interface CameraContextStartRecordOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StartRecordCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StartRecordFailCallback + /** 接口调用成功的回调函数 */ + success?: CameraContextStartRecordSuccessCallback + /** 超过30s或页面 `onHide` 时会结束录像 */ + timeoutCallback?: StartRecordTimeoutCallback + } + interface CameraContextStopRecordOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StopRecordCompleteCallback + /** 启动视频压缩,压缩效果同`chooseVideo` */ + compressed?: boolean + /** 接口调用失败的回调函数 */ + fail?: StopRecordFailCallback + /** 接口调用成功的回调函数 */ + success?: CameraContextStopRecordSuccessCallback + } + interface CameraFrameListenerStartOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StartCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StartFailCallback + /** 接口调用成功的回调函数 */ + success?: StartSuccessCallback + } + /** Canvas 实例,可通过 [SelectorQuery](https://developers.weixin.qq.com/miniprogram/dev/api/wxml/SelectorQuery.html) 获取。 + * + * **示例代码** + * + * + * + * 2D Canvas 示例 + * [在微信开发者工具中查看示例](https://developers.weixin.qq.com/s/SHfgCmmq7UcM) + * + * WebGL 示例 + * [在微信开发者工具中查看示例](https://developers.weixin.qq.com/s/qEGUOqmf7T8z) + * + * 最低基础库: `2.7.0` */ + interface Canvas { + /** 画布高度 */ + height: number + /** 画布宽度 */ + width: number + } + /** canvas 组件的绘图上下文。CanvasContext 是旧版的接口, 新版 Canvas 2D 接口与 Web 一致。 */ + interface CanvasContext { + /** 填充颜色。用法同 [CanvasContext.setFillStyle()](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.setFillStyle.html)。 + * + * 最低基础库: `1.9.90` */ + fillStyle: string | CanvasGradient + /** 当前字体样式的属性。符合 [CSS font 语法](https://developer.mozilla.org/zh-CN/docs/Web/CSS/font) 的 DOMString 字符串,至少需要提供字体大小和字体族名。默认值为 10px sans-serif。 + * + * 最低基础库: `1.9.90` */ + font: string + /** 全局画笔透明度。范围 0-1,0 表示完全透明,1 表示完全不透明。 */ + globalAlpha: number + /** 在绘制新形状时应用的合成操作的类型。目前安卓版本只适用于 `fill` 填充块的合成,用于 `stroke` 线段的合成效果都是 `source-over`。 + * + * 目前支持的操作有 + * - 安卓:xor, source-over, source-atop, destination-out, lighter, overlay, darken, lighten, hard-light + * - iOS:xor, source-over, source-atop, destination-over, destination-out, lighter, multiply, overlay, darken, lighten, color-dodge, color-burn, hard-light, soft-light, difference, exclusion, saturation, luminosity + * + * 最低基础库: `1.9.90` */ + globalCompositeOperation: string + /** 线条的端点样式。用法同 [CanvasContext.setLineCap()](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.setLineCap.html)。 + * + * 最低基础库: `1.9.90` */ + lineCap: string + /** 虚线偏移量,初始值为0 + * + * 最低基础库: `1.9.90` */ + lineDashOffset: number + /** 线条的交点样式。用法同 [CanvasContext.setLineJoin()](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.setLineJoin.html)。 + * + * 可选值: + * - 'bevel': 斜角; + * - 'round': 圆角; + * - 'miter': 尖角; + * + * 最低基础库: `1.9.90` */ + lineJoin: 'bevel' | 'round' | 'miter' + /** 线条的宽度。用法同 [CanvasContext.setLineWidth()](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.setLineWidth.html)。 + * + * 最低基础库: `1.9.90` */ + lineWidth: number + /** 最大斜接长度。用法同 [CanvasContext.setMiterLimit()](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.setMiterLimit.html)。 + * + * 最低基础库: `1.9.90` */ + miterLimit: number + /** 阴影的模糊级别 + * + * 最低基础库: `1.9.90` */ + shadowBlur: number + /** 阴影的颜色 + * + * 最低基础库: `1.9.90` */ + shadowColor: number + /** 阴影相对于形状在水平方向的偏移 + * + * 最低基础库: `1.9.90` */ + shadowOffsetX: number + /** 阴影相对于形状在竖直方向的偏移 + * + * 最低基础库: `1.9.90` */ + shadowOffsetY: number + /** 边框颜色。用法同 [CanvasContext.setStrokeStyle()](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.setStrokeStyle.html)。 + * + * 最低基础库: `1.9.90` */ + strokeStyle: string | CanvasGradient + } + interface CanvasGetImageDataOption { + /** 画布标识,传入 [canvas](https://developers.weixin.qq.com/miniprogram/dev/component/canvas.html) 组件的 `canvas-id` 属性。 */ + canvasId: string + /** 将要被提取的图像数据矩形区域的高度 */ + height: number + /** 将要被提取的图像数据矩形区域的宽度 */ + width: number + /** 将要被提取的图像数据矩形区域的左上角横坐标 */ + x: number + /** 将要被提取的图像数据矩形区域的左上角纵坐标 */ + y: number + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: CanvasGetImageDataCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: CanvasGetImageDataFailCallback + /** 接口调用成功的回调函数 */ + success?: CanvasGetImageDataSuccessCallback + } + interface CanvasGetImageDataSuccessCallbackResult { + /** 图像像素点数据,一维数组,每四项表示一个像素点的 rgba */ + data: Uint8ClampedArray + /** 图像数据矩形的高度 */ + height: number + /** 图像数据矩形的宽度 */ + width: number + errMsg: string + } + interface CanvasPutImageDataOption { + /** 画布标识,传入 [canvas](https://developers.weixin.qq.com/miniprogram/dev/component/canvas.html) 组件的 canvas-id 属性。 */ + canvasId: string + /** 图像像素点数据,一维数组,每四项表示一个像素点的 rgba */ + data: Uint8ClampedArray + /** 源图像数据矩形区域的高度 */ + height: number + /** 源图像数据矩形区域的宽度 */ + width: number + /** 源图像数据在目标画布中的位置偏移量(x 轴方向的偏移量) */ + x: number + /** 源图像数据在目标画布中的位置偏移量(y 轴方向的偏移量) */ + y: number + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: CanvasPutImageDataCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: CanvasPutImageDataFailCallback + /** 接口调用成功的回调函数 */ + success?: CanvasPutImageDataSuccessCallback + } + interface CanvasToTempFilePathOption { + /** 画布标识,传入 [canvas](https://developers.weixin.qq.com/miniprogram/dev/component/canvas.html) 组件实例 (canvas type="2d" 时使用该属性)。 */ + canvas?: IAnyObject + /** 画布标识,传入 [canvas](https://developers.weixin.qq.com/miniprogram/dev/component/canvas.html) 组件的 canvas-id */ + canvasId?: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: CanvasToTempFilePathCompleteCallback + /** 输出的图片的高度 + * + * 最低基础库: `1.2.0` */ + destHeight?: number + /** 输出的图片的宽度 + * + * 最低基础库: `1.2.0` */ + destWidth?: number + /** 接口调用失败的回调函数 */ + fail?: CanvasToTempFilePathFailCallback + /** 目标文件的类型 + * + * 可选值: + * - 'jpg': jpg 图片; + * - 'png': png 图片; + * + * 最低基础库: `1.7.0` */ + fileType?: 'jpg' | 'png' + /** 指定的画布区域的高度 + * + * 最低基础库: `1.2.0` */ + height?: number + /** 图片的质量,目前仅对 jpg 有效。取值范围为 (0, 1],不在范围内时当作 1.0 处理。 + * + * 最低基础库: `1.7.0` */ + quality?: number + /** 接口调用成功的回调函数 */ + success?: CanvasToTempFilePathSuccessCallback + /** 指定的画布区域的宽度 + * + * 最低基础库: `1.2.0` */ + width?: number + /** 指定的画布区域的左上角横坐标 + * + * 最低基础库: `1.2.0` */ + x?: number + /** 指定的画布区域的左上角纵坐标 + * + * 最低基础库: `1.2.0` */ + y?: number + } + interface CanvasToTempFilePathSuccessCallbackResult { + /** 生成文件的临时路径 (本地路径) */ + tempFilePath: string + errMsg: string + } + /** characteristics列表 */ + interface Characteristic { + /** Characteristic 的 uuid */ + uuid: string + /** 描述符数据 */ + descriptors?: CharacteristicDescriptor[] + /** 特征值权限 */ + permission?: CharacteristicPermission + /** 特征值支持的操作 */ + properties?: CharacteristicProperties + /** 特征值对应的二进制值 */ + value?: ArrayBuffer + } + /** 描述符数据 */ + interface CharacteristicDescriptor { + /** Descriptor 的 uuid */ + uuid: string + /** 描述符的权限 */ + permission?: DescriptorPermission + /** 描述符数据 */ + value?: ArrayBuffer + } + /** 特征值权限 */ + interface CharacteristicPermission { + /** 加密读请求 */ + readEncryptionRequired?: boolean + /** 可读 */ + readable?: boolean + /** 加密写请求 */ + writeEncryptionRequired?: boolean + /** 可写 */ + writeable?: boolean + } + /** 特征值支持的操作 */ + interface CharacteristicProperties { + /** 回包 */ + indicate?: boolean + /** 订阅 */ + notify?: boolean + /** 读 */ + read?: boolean + /** 写 */ + write?: boolean + } + interface CheckIsOpenAccessibilityOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: CheckIsOpenAccessibilityCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: CheckIsOpenAccessibilityFailCallback + /** 接口调用成功的回调函数 */ + success?: CheckIsOpenAccessibilitySuccessCallback + } + interface CheckIsOpenAccessibilitySuccessCallbackOption { + /** iOS 上开启辅助功能旁白,安卓开启 talkback 时返回 true */ + open: boolean + } + interface CheckIsSoterEnrolledInDeviceOption { + /** 认证方式 + * + * 可选值: + * - 'fingerPrint': 指纹识别; + * - 'facial': 人脸识别; + * - 'speech': 声纹识别(暂未支持); */ + checkAuthMode: 'fingerPrint' | 'facial' | 'speech' + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: CheckIsSoterEnrolledInDeviceCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: CheckIsSoterEnrolledInDeviceFailCallback + /** 接口调用成功的回调函数 */ + success?: CheckIsSoterEnrolledInDeviceSuccessCallback + } + interface CheckIsSoterEnrolledInDeviceSuccessCallbackResult { + /** 错误信息 */ + errMsg: string + /** 是否已录入信息 */ + isEnrolled: boolean + } + interface CheckIsSupportSoterAuthenticationOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: CheckIsSupportSoterAuthenticationCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: CheckIsSupportSoterAuthenticationFailCallback + /** 接口调用成功的回调函数 */ + success?: CheckIsSupportSoterAuthenticationSuccessCallback + } + interface CheckIsSupportSoterAuthenticationSuccessCallbackResult { + /** 该设备支持的可被SOTER识别的生物识别方式 + * + * 可选值: + * - 'fingerPrint': 指纹识别; + * - 'facial': 人脸识别; + * - 'speech': 声纹识别(暂未支持); */ + supportMode: Array<'fingerPrint' | 'facial' | 'speech'> + errMsg: string + } + interface CheckSessionOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: CheckSessionCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: CheckSessionFailCallback + /** 接口调用成功的回调函数 */ + success?: CheckSessionSuccessCallback + } + interface ChooseAddressOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ChooseAddressCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ChooseAddressFailCallback + /** 接口调用成功的回调函数 */ + success?: ChooseAddressSuccessCallback + } + interface ChooseAddressSuccessCallbackResult { + /** 国标收货地址第二级地址 */ + cityName: string + /** 国标收货地址第三级地址 */ + countyName: string + /** 详细收货地址信息 */ + detailInfo: string + /** 错误信息 */ + errMsg: string + /** 收货地址国家码 */ + nationalCode: string + /** 邮编 */ + postalCode: string + /** 国标收货地址第一级地址 */ + provinceName: string + /** 收货人手机号码 */ + telNumber: string + /** 收货人姓名 */ + userName: string + } + /** 返回选择的文件的本地临时文件对象数组 */ + interface ChooseFile { + /** 选择的文件名称 */ + name: string + /** 本地临时文件路径 (本地路径) */ + path: string + /** 本地临时文件大小,单位 B */ + size: number + /** 选择的文件的会话发送时间,Unix时间戳,工具暂不支持此属性 */ + time: number + /** 选择的文件类型 + * + * 可选值: + * - 'video': 选择了视频文件; + * - 'image': 选择了图片文件; + * - 'file': 选择了除图片和视频的文件; */ + type: 'video' | 'image' | 'file' + } + interface ChooseImageOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ChooseImageCompleteCallback + /** 最多可以选择的图片张数 */ + count?: number + /** 接口调用失败的回调函数 */ + fail?: ChooseImageFailCallback + /** 所选的图片的尺寸 + * + * 可选值: + * - 'original': 原图; + * - 'compressed': 压缩图; */ + sizeType?: Array<'original' | 'compressed'> + /** 选择图片的来源 + * + * 可选值: + * - 'album': 从相册选图; + * - 'camera': 使用相机; */ + sourceType?: Array<'album' | 'camera'> + /** 接口调用成功的回调函数 */ + success?: ChooseImageSuccessCallback + } + interface ChooseImageSuccessCallbackResult { + /** 图片的本地临时文件路径列表 (本地路径) */ + tempFilePaths: string[] + /** 图片的本地临时文件列表 + * + * 最低基础库: `1.2.0` */ + tempFiles: ImageFile[] + errMsg: string + } + interface ChooseInvoiceOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ChooseInvoiceCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ChooseInvoiceFailCallback + /** 接口调用成功的回调函数 */ + success?: ChooseInvoiceSuccessCallback + } + interface ChooseInvoiceSuccessCallbackResult { + /** 用户选中的发票信息,格式为一个 JSON 字符串,包含三个字段: card_id:所选发票卡券的 cardId,encrypt_code:所选发票卡券的加密 code,报销方可以通过 cardId 和 encryptCode 获得报销发票的信息,app_id: 发票方的 appId。 */ + invoiceInfo: string + errMsg: string + } + interface ChooseInvoiceTitleOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ChooseInvoiceTitleCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ChooseInvoiceTitleFailCallback + /** 接口调用成功的回调函数 */ + success?: ChooseInvoiceTitleSuccessCallback + } + interface ChooseInvoiceTitleSuccessCallbackResult { + /** 银行账号 */ + bankAccount: string + /** 银行名称 */ + bankName: string + /** 单位地址 */ + companyAddress: string + /** 错误信息 */ + errMsg: string + /** 抬头税号 */ + taxNumber: string + /** 手机号码 */ + telephone: string + /** 抬头名称 */ + title: string + /** 抬头类型 + * + * 可选值: + * - 0: 单位; + * - 1: 个人; */ + type: 0 | 1 + } + interface ChooseLocationOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ChooseLocationCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ChooseLocationFailCallback + /** 目标地纬度 + * + * 最低基础库: `2.9.0` */ + latitude?: number + /** 目标地经度 + * + * 最低基础库: `2.9.0` */ + longitude?: number + /** 接口调用成功的回调函数 */ + success?: ChooseLocationSuccessCallback + } + interface ChooseLocationSuccessCallbackResult { + /** 详细地址 */ + address: string + /** 纬度,浮点数,范围为-90~90,负数表示南纬。使用 gcj02 国测局坐标系 */ + latitude: string + /** 经度,浮点数,范围为-180~180,负数表示西经。使用 gcj02 国测局坐标系 */ + longitude: string + /** 位置名称 */ + name: string + errMsg: string + } + interface ChooseMediaOption { + /** 仅在 sourceType 为 camera 时生效,使用前置或后置摄像头 + * + * 可选值: + * - 'back': 使用后置摄像头; + * - 'front': 使用前置摄像头; */ + camera?: 'back' | 'front' + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ChooseMediaCompleteCallback + /** 最多可以选择的文件个数 */ + count?: number + /** 接口调用失败的回调函数 */ + fail?: ChooseMediaFailCallback + /** 拍摄视频最长拍摄时间,单位秒。时间范围为 3s 至 30s 之间 */ + maxDuration?: number + /** 文件类型 + * + * 可选值: + * - 'image': 只能拍摄图片或从相册选择图片; + * - 'video': 只能拍摄视频或从相册选择视频; */ + mediaType?: Array<'image' | 'video'> + /** 仅对 mediaType 为 image 时有效,是否压缩所选文件 */ + sizeType?: string[] + /** 图片和视频选择的来源 + * + * 可选值: + * - 'album': 从相册选择; + * - 'camera': 使用相机拍摄; */ + sourceType?: Array<'album' | 'camera'> + /** 接口调用成功的回调函数 */ + success?: ChooseMediaSuccessCallback + } + interface ChooseMediaSuccessCallbackResult { + /** 本地临时文件列表 */ + tempFiles: MediaFile[] + /** 文件类型,有效值有 image 、video */ + type: string + errMsg: string + } + interface ChooseMessageFileOption { + /** 最多可以选择的文件个数,可以 0~100 */ + count: number + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ChooseMessageFileCompleteCallback + /** 根据文件拓展名过滤,仅 type==file 时有效。每一项都不能是空字符串。默认不过滤。 + * + * 最低基础库: `2.6.0` */ + extension?: string[] + /** 接口调用失败的回调函数 */ + fail?: ChooseMessageFileFailCallback + /** 接口调用成功的回调函数 */ + success?: ChooseMessageFileSuccessCallback + /** 所选的文件的类型 + * + * 可选值: + * - 'all': 从所有文件选择; + * - 'video': 只能选择视频文件; + * - 'image': 只能选择图片文件; + * - 'file': 可以选择除了图片和视频之外的其它的文件; */ + type?: 'all' | 'video' | 'image' | 'file' + } + interface ChooseMessageFileSuccessCallbackResult { + /** 返回选择的文件的本地临时文件对象数组 */ + tempFiles: ChooseFile[] + errMsg: string + } + interface ChooseVideoOption { + /** 默认拉起的是前置或者后置摄像头。部分 Android 手机下由于系统 ROM 不支持无法生效 + * + * 可选值: + * - 'back': 默认拉起后置摄像头; + * - 'front': 默认拉起前置摄像头; */ + camera?: 'back' | 'front' + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ChooseVideoCompleteCallback + /** 是否压缩所选择的视频文件 + * + * 最低基础库: `1.6.0` */ + compressed?: boolean + /** 接口调用失败的回调函数 */ + fail?: ChooseVideoFailCallback + /** 拍摄视频最长拍摄时间,单位秒 */ + maxDuration?: number + /** 视频选择的来源 + * + * 可选值: + * - 'album': 从相册选择视频; + * - 'camera': 使用相机拍摄视频; */ + sourceType?: Array<'album' | 'camera'> + /** 接口调用成功的回调函数 */ + success?: ChooseVideoSuccessCallback + } + interface ChooseVideoSuccessCallbackResult { + /** 选定视频的时间长度 */ + duration: number + /** 返回选定视频的高度 */ + height: number + /** 选定视频的数据量大小 */ + size: number + /** 选定视频的临时文件路径 (本地路径) */ + tempFilePath: string + /** 返回选定视频的宽度 */ + width: number + errMsg: string + } + interface ClearOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ClearCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ClearFailCallback + /** 接口调用成功的回调函数 */ + success?: ClearSuccessCallback + } + interface ClearStorageOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ClearStorageCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ClearStorageFailCallback + /** 接口调用成功的回调函数 */ + success?: ClearStorageSuccessCallback + } + interface CloseBLEConnectionOption { + /** 用于区分设备的 id */ + deviceId: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: CloseBLEConnectionCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: CloseBLEConnectionFailCallback + /** 接口调用成功的回调函数 */ + success?: CloseBLEConnectionSuccessCallback + } + interface CloseBluetoothAdapterOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: CloseBluetoothAdapterCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: CloseBluetoothAdapterFailCallback + /** 接口调用成功的回调函数 */ + success?: CloseBluetoothAdapterSuccessCallback + } + interface CloseSocketOption { + /** 一个数字值表示关闭连接的状态号,表示连接被关闭的原因。 */ + code?: number + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: CloseSocketCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: CloseSocketFailCallback + /** 一个可读的字符串,表示连接被关闭的原因。这个字符串必须是不长于 123 字节的 UTF-8 文本(不是字符)。 */ + reason?: string + /** 接口调用成功的回调函数 */ + success?: CloseSocketSuccessCallback + } + /** 颜色。可以用以下几种方式来表示 canvas 中使用的颜色: + * + * - RGB 颜色: 如 `'rgb(255, 0, 0)'` + * - RGBA 颜色:如 `'rgba(255, 0, 0, 0.3)'` + * - 16 进制颜色: 如 `'#FF0000'` + * - 预定义的颜色: 如 `'red'` + * + * 其中预定义颜色有以下148个: + * *注意**: Color Name 大小写不敏感 + * + * | Color Name | HEX | + * | -------------------- | ------- | + * | AliceBlue | #F0F8FF | + * | AntiqueWhite | #FAEBD7 | + * | Aqua | #00FFFF | + * | Aquamarine | #7FFFD4 | + * | Azure | #F0FFFF | + * | Beige | #F5F5DC | + * | Bisque | #FFE4C4 | + * | Black | #000000 | + * | BlanchedAlmond | #FFEBCD | + * | Blue | #0000FF | + * | BlueViolet | #8A2BE2 | + * | Brown | #A52A2A | + * | BurlyWood | #DEB887 | + * | CadetBlue | #5F9EA0 | + * | Chartreuse | #7FFF00 | + * | Chocolate | #D2691E | + * | Coral | #FF7F50 | + * | CornflowerBlue | #6495ED | + * | Cornsilk | #FFF8DC | + * | Crimson | #DC143C | + * | Cyan | #00FFFF | + * | DarkBlue | #00008B | + * | DarkCyan | #008B8B | + * | DarkGoldenRod | #B8860B | + * | DarkGray | #A9A9A9 | + * | DarkGrey | #A9A9A9 | + * | DarkGreen | #006400 | + * | DarkKhaki | #BDB76B | + * | DarkMagenta | #8B008B | + * | DarkOliveGreen | #556B2F | + * | DarkOrange | #FF8C00 | + * | DarkOrchid | #9932CC | + * | DarkRed | #8B0000 | + * | DarkSalmon | #E9967A | + * | DarkSeaGreen | #8FBC8F | + * | DarkSlateBlue | #483D8B | + * | DarkSlateGray | #2F4F4F | + * | DarkSlateGrey | #2F4F4F | + * | DarkTurquoise | #00CED1 | + * | DarkViolet | #9400D3 | + * | DeepPink | #FF1493 | + * | DeepSkyBlue | #00BFFF | + * | DimGray | #696969 | + * | DimGrey | #696969 | + * | DodgerBlue | #1E90FF | + * | FireBrick | #B22222 | + * | FloralWhite | #FFFAF0 | + * | ForestGreen | #228B22 | + * | Fuchsia | #FF00FF | + * | Gainsboro | #DCDCDC | + * | GhostWhite | #F8F8FF | + * | Gold | #FFD700 | + * | GoldenRod | #DAA520 | + * | Gray | #808080 | + * | Grey | #808080 | + * | Green | #008000 | + * | GreenYellow | #ADFF2F | + * | HoneyDew | #F0FFF0 | + * | HotPink | #FF69B4 | + * | IndianRed | #CD5C5C | + * | Indigo | #4B0082 | + * | Ivory | #FFFFF0 | + * | Khaki | #F0E68C | + * | Lavender | #E6E6FA | + * | LavenderBlush | #FFF0F5 | + * | LawnGreen | #7CFC00 | + * | LemonChiffon | #FFFACD | + * | LightBlue | #ADD8E6 | + * | LightCoral | #F08080 | + * | LightCyan | #E0FFFF | + * | LightGoldenRodYellow | #FAFAD2 | + * | LightGray | #D3D3D3 | + * | LightGrey | #D3D3D3 | + * | LightGreen | #90EE90 | + * | LightPink | #FFB6C1 | + * | LightSalmon | #FFA07A | + * | LightSeaGreen | #20B2AA | + * | LightSkyBlue | #87CEFA | + * | LightSlateGray | #778899 | + * | LightSlateGrey | #778899 | + * | LightSteelBlue | #B0C4DE | + * | LightYellow | #FFFFE0 | + * | Lime | #00FF00 | + * | LimeGreen | #32CD32 | + * | Linen | #FAF0E6 | + * | Magenta | #FF00FF | + * | Maroon | #800000 | + * | MediumAquaMarine | #66CDAA | + * | MediumBlue | #0000CD | + * | MediumOrchid | #BA55D3 | + * | MediumPurple | #9370DB | + * | MediumSeaGreen | #3CB371 | + * | MediumSlateBlue | #7B68EE | + * | MediumSpringGreen | #00FA9A | + * | MediumTurquoise | #48D1CC | + * | MediumVioletRed | #C71585 | + * | MidnightBlue | #191970 | + * | MintCream | #F5FFFA | + * | MistyRose | #FFE4E1 | + * | Moccasin | #FFE4B5 | + * | NavajoWhite | #FFDEAD | + * | Navy | #000080 | + * | OldLace | #FDF5E6 | + * | Olive | #808000 | + * | OliveDrab | #6B8E23 | + * | Orange | #FFA500 | + * | OrangeRed | #FF4500 | + * | Orchid | #DA70D6 | + * | PaleGoldenRod | #EEE8AA | + * | PaleGreen | #98FB98 | + * | PaleTurquoise | #AFEEEE | + * | PaleVioletRed | #DB7093 | + * | PapayaWhip | #FFEFD5 | + * | PeachPuff | #FFDAB9 | + * | Peru | #CD853F | + * | Pink | #FFC0CB | + * | Plum | #DDA0DD | + * | PowderBlue | #B0E0E6 | + * | Purple | #800080 | + * | RebeccaPurple | #663399 | + * | Red | #FF0000 | + * | RosyBrown | #BC8F8F | + * | RoyalBlue | #4169E1 | + * | SaddleBrown | #8B4513 | + * | Salmon | #FA8072 | + * | SandyBrown | #F4A460 | + * | SeaGreen | #2E8B57 | + * | SeaShell | #FFF5EE | + * | Sienna | #A0522D | + * | Silver | #C0C0C0 | + * | SkyBlue | #87CEEB | + * | SlateBlue | #6A5ACD | + * | SlateGray | #708090 | + * | SlateGrey | #708090 | + * | Snow | #FFFAFA | + * | SpringGreen | #00FF7F | + * | SteelBlue | #4682B4 | + * | Tan | #D2B48C | + * | Teal | #008080 | + * | Thistle | #D8BFD8 | + * | Tomato | #FF6347 | + * | Turquoise | #40E0D0 | + * | Violet | #EE82EE | + * | Wheat | #F5DEB3 | + * | White | #FFFFFF | + * | WhiteSmoke | #F5F5F5 | + * | Yellow | #FFFF00 | + * | YellowGreen | #9ACD32 | */ + interface Color {} + interface CompressImageOption { + /** 图片路径,图片的路径,支持本地路径、代码包路径 */ + src: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: CompressImageCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: CompressImageFailCallback + /** 压缩质量,范围0~100,数值越小,质量越低,压缩率越高(仅对jpg有效)。 */ + quality?: number + /** 接口调用成功的回调函数 */ + success?: CompressImageSuccessCallback + } + interface CompressImageSuccessCallbackResult { + /** 压缩后图片的临时文件路径 (本地路径) */ + tempFilePath: string + errMsg: string + } + interface CompressVideoOption { + /** 码率,单位 kbps */ + bitrate: number + /** 帧率 */ + fps: number + /** 压缩质量 + * + * 可选值: + * - 'low': 低; + * - 'medium': 中; + * - 'high': 高; */ + quality: 'low' | 'medium' | 'high' + /** 相对于原视频的分辨率比例,取值范围(0, 1] */ + resolution: number + /** 视频文件路径,可以是临时文件路径也可以是永久文件路径 */ + src: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: CompressVideoCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: CompressVideoFailCallback + /** 接口调用成功的回调函数 */ + success?: CompressVideoSuccessCallback + } + interface CompressVideoSuccessCallbackResult { + /** 压缩后的大小,单位 kB */ + size: string + /** 压缩后的临时文件地址 */ + tempFilePath: string + errMsg: string + } + interface ConnectOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ConnectCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ConnectFailCallback + /** 接口调用成功的回调函数 */ + success?: ConnectSuccessCallback + } + interface ConnectSocketOption { + /** 开发者服务器 wss 接口地址 */ + url: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ConnectSocketCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ConnectSocketFailCallback + /** HTTP Header,Header 中不能设置 Referer */ + header?: IAnyObject + /** 是否开启压缩扩展 + * + * 最低基础库: `2.8.0` */ + perMessageDeflate?: boolean + /** 子协议数组 + * + * 最低基础库: `1.4.0` */ + protocols?: string[] + /** 接口调用成功的回调函数 */ + success?: ConnectSocketSuccessCallback + /** 建立 TCP 连接的时候的 TCP_NODELAY 设置 + * + * 最低基础库: `2.4.0` */ + tcpNoDelay?: boolean + /** 超时时间,单位为毫秒 + * + * 最低基础库: `2.10.0` */ + timeout?: number + } + interface ConnectWifiOption { + /** Wi-Fi 设备 SSID */ + SSID: string + /** Wi-Fi 设备密码 */ + password: string + /** Wi-Fi 设备 BSSID */ + BSSID?: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ConnectWifiCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ConnectWifiFailCallback + /** 跳转到系统设置页进行连接,仅安卓生效 + * + * 最低基础库: `2.12.0` */ + maunal?: boolean + /** 接口调用成功的回调函数 */ + success?: ConnectWifiSuccessCallback + } + interface ContextCallbackResult { + /** 节点对应的 Context 对象 */ + context: IAnyObject + } + interface CopyFileFailCallbackResult { + /** 错误信息 + * + * 可选值: + * - 'fail permission denied, copyFile ${srcPath} -> ${destPath}': 指定目标文件路径没有写权限; + * - 'fail no such file or directory, copyFile ${srcPath} -> ${destPath}': 源文件不存在,或目标文件路径的上层目录不存在; + * - 'fail the maximum size of the file storage limit is exceeded': 存储空间不足; + * - 'fail sdcard not mounted': Android sdcard 挂载失败; */ + errMsg: string + } + interface CopyFileOption { + /** 目标文件路径,支持本地路径 */ + destPath: string + /** 源文件路径,支持本地路径 */ + srcPath: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: CopyFileCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: CopyFileFailCallback + /** 接口调用成功的回调函数 */ + success?: CopyFileSuccessCallback + } + interface CreateBLEConnectionOption { + /** 用于区分设备的 id */ + deviceId: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: CreateBLEConnectionCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: CreateBLEConnectionFailCallback + /** 接口调用成功的回调函数 */ + success?: CreateBLEConnectionSuccessCallback + /** 超时时间,单位ms,不填表示不会超时 */ + timeout?: number + } + interface CreateBLEPeripheralServerOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: CreateBLEPeripheralServerCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: CreateBLEPeripheralServerFailCallback + /** 接口调用成功的回调函数 */ + success?: CreateBLEPeripheralServerSuccessCallback + } + interface CreateBLEPeripheralServerSuccessCallbackResult { + /** [BLEPeripheralServer](https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth-peripheral/BLEPeripheralServer.html) + * + * 外围设备的服务端。 */ + server: BLEPeripheralServer + errMsg: string + } + /** 选项 */ + interface CreateIntersectionObserverOption { + /** 初始的相交比例,如果调用时检测到的相交比例与这个值不相等且达到阈值,则会触发一次监听器的回调函数。 */ + initialRatio?: number + /** 是否同时观测多个目标节点(而非一个),如果设为 true ,observe 的 targetSelector 将选中多个节点(注意:同时选中过多节点将影响渲染性能) + * + * 最低基础库: `2.0.0` */ + observeAll?: boolean + /** 一个数值数组,包含所有阈值。 */ + thresholds?: number[] + } + interface CreateInterstitialAdOption { + /** 广告单元 id */ + adUnitId: string + } + interface CreateMediaRecorderOption { + /** 指定录制的时长(s),到达自动停止。最大 7200,最小 5 */ + duration?: number + /** 视频 fps */ + fps?: number + /** 视频关键帧间隔 */ + gop?: number + /** 视频比特率(kbps),最小值 600,最大值 3000 */ + videoBitsPerSecond?: number + } + interface CreateRewardedVideoAdOption { + /** 广告单元 id */ + adUnitId: string + /** 是否启用多例模式,默认为false + * + * 最低基础库: `2.8.0` */ + multiton?: boolean + } + /** 可选参数 */ + interface CreateWorkerOption { + /** 是否使用实验worker。在iOS下,实验worker的JS运行效率比非实验worker提升近十倍,如需在worker内进行重度计算的建议开启此选项。 + * + * 最低基础库: `2.13.0` */ + useExperimentalWorker?: boolean + } + /** 弹幕内容 */ + interface Danmu { + /** 弹幕文字 */ + text: string + /** 弹幕颜色 */ + color?: string + } + /** 可选的字体描述符 */ + interface DescOption { + /** 字体样式,可选值为 normal / italic / oblique */ + style?: string + /** 设置小型大写字母的字体显示文本,可选值为 normal / small-caps / inherit */ + variant?: string + /** 字体粗细,可选值为 normal / bold / 100 / 200../ 900 */ + weight?: string + } + /** 描述符的权限 */ + interface DescriptorPermission { + /** 读 */ + read?: boolean + /** 写 */ + write?: boolean + } + /** 指定 marker 移动到的目标点 */ + interface DestinationOption { + /** 纬度 */ + latitude: number + /** 经度 */ + longitude: number + } + interface DisableAlertBeforeUnloadOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: DisableAlertBeforeUnloadCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: DisableAlertBeforeUnloadFailCallback + /** 接口调用成功的回调函数 */ + success?: DisableAlertBeforeUnloadSuccessCallback + } + interface DownloadFileOption { + /** 下载资源的 url */ + url: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: DownloadFileCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: DownloadFileFailCallback + /** 指定文件下载后存储的路径 (本地路径) + * + * 最低基础库: `1.8.0` */ + filePath?: string + /** HTTP 请求的 Header,Header 中不能设置 Referer */ + header?: IAnyObject + /** 接口调用成功的回调函数 */ + success?: DownloadFileSuccessCallback + /** 超时时间,单位为毫秒 + * + * 最低基础库: `2.10.0` */ + timeout?: number + } + interface DownloadFileSuccessCallbackResult { + /** 用户文件路径 (本地路径)。传入 filePath 时会返回,跟传入的 filePath 一致 */ + filePath: string + /** 网络请求过程中一些调试信息 + * + * 最低基础库: `2.10.4` */ + profile: DownloadProfile + /** 开发者服务器返回的 HTTP 状态码 */ + statusCode: number + /** 临时文件路径 (本地路径)。没传入 filePath 指定文件存储路径时会返回,下载后的文件会存储到一个临时文件 */ + tempFilePath: string + errMsg: string + } + /** 网络请求过程中一些调试信息 + * + * 最低基础库: `2.10.4` */ + interface DownloadProfile { + /** SSL建立完成的时间,如果不是安全连接,则值为 0 */ + SSLconnectionEnd: number + /** SSL建立连接的时间,如果不是安全连接,则值为 0 */ + SSLconnectionStart: number + /** HTTP(TCP) 完成建立连接的时间(完成握手),如果是持久连接,则与 fetchStart 值相等。注意如果在传输层发生了错误且重新建立连接,则这里显示的是新建立的连接完成的时间。注意这里握手结束,包括安全连接建立完成、SOCKS 授权通过 */ + connectEnd: number + /** HTTP(TCP) 开始建立连接的时间,如果是持久连接,则与 fetchStart 值相等。注意如果在传输层发生了错误且重新建立连接,则这里显示的是新建立的连接开始的时间 */ + connectStart: number + /** DNS 域名查询完成的时间,如果使用了本地缓存(即无 DNS 查询)或持久连接,则与 fetchStart 值相等 */ + domainLookupEnd: number + /** DNS 域名查询开始的时间,如果使用了本地缓存(即无 DNS 查询)或持久连接,则与 fetchStart 值相等 */ + domainLookupStart: number + /** 评估当前网络下载的kbps */ + downstreamThroughputKbpsEstimate: number + /** 评估的网络状态 slow 2g/2g/3g/4g */ + estimate_nettype: string + /** 组件准备好使用 HTTP 请求抓取资源的时间,这发生在检查本地缓存之前 */ + fetchStart: number + /** 协议层根据多个请求评估当前网络的 rtt(仅供参考) */ + httpRttEstimate: number + /** 当前请求的IP */ + peerIP: string + /** 当前请求的端口 */ + port: number + /** 收到字节数 */ + receivedBytedCount: number + /** 最后一个 HTTP 重定向完成时的时间。有跳转且是同域名内部的重定向才算,否则值为 0 */ + redirectEnd: number + /** 第一个 HTTP 重定向发生时的时间。有跳转且是同域名内的重定向才算,否则值为 0 */ + redirectStart: number + /** HTTP请求读取真实文档结束的时间 */ + requestEnd: number + /** HTTP请求读取真实文档开始的时间(完成建立连接),包括从本地读取缓存。连接错误重连时,这里显示的也是新建立连接的时间 */ + requestStart: number + /** HTTP 响应全部接收完成的时间(获取到最后一个字节),包括从本地读取缓存 */ + responseEnd: number + /** HTTP 开始接收响应的时间(获取到第一个字节),包括从本地读取缓存 */ + responseStart: number + /** 当次请求连接过程中实时 rtt */ + rtt: number + /** 发送的字节数 */ + sendBytesCount: number + /** 是否复用连接 */ + socketReused: boolean + /** 当前网络的实际下载kbps */ + throughputKbps: number + /** 传输层根据多个请求评估的当前网络的 rtt(仅供参考) */ + transportRttEstimate: number + } + interface DownloadTaskOnProgressUpdateCallbackResult { + /** 下载进度百分比 */ + progress: number + /** 预期需要下载的数据总长度,单位 Bytes */ + totalBytesExpectedToWrite: number + /** 已经下载的数据长度,单位 Bytes */ + totalBytesWritten: number + } + interface EnableAlertBeforeUnloadOption { + /** 询问对话框内容 */ + message: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: EnableAlertBeforeUnloadCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: EnableAlertBeforeUnloadFailCallback + /** 接口调用成功的回调函数 */ + success?: EnableAlertBeforeUnloadSuccessCallback + } + interface ExitFullScreenOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ExitFullScreenCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ExitFullScreenFailCallback + /** 接口调用成功的回调函数 */ + success?: ExitFullScreenSuccessCallback + } + interface ExitPictureInPictureOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ExitPictureInPictureCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ExitPictureInPictureFailCallback + /** 接口调用成功的回调函数 */ + success?: ExitPictureInPictureSuccessCallback + } + interface ExitVoIPChatOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ExitVoIPChatCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ExitVoIPChatFailCallback + /** 接口调用成功的回调函数 */ + success?: ExitVoIPChatSuccessCallback + } + interface ExtractDataSourceOption { + /** 视频源地址,只支持本地文件 */ + source: string + } + interface Fields { + /** 指定样式名列表,返回节点对应样式名的当前值 + * + * 最低基础库: `2.1.0` */ + computedStyle?: string[] + /** 是否返回节点对应的 Context 对象 + * + * 最低基础库: `2.4.2` */ + context?: boolean + /** 是否返回节点 dataset */ + dataset?: boolean + /** 是否返回节点 id */ + id?: boolean + /** 是否返回节点 mark */ + mark?: boolean + /** 是否返回节点对应的 Node 实例 + * + * 最低基础库: `2.7.0` */ + node?: boolean + /** 指定属性名列表,返回节点对应属性名的当前属性值(只能获得组件文档中标注的常规属性值,id class style 和事件绑定的属性值不可获取) */ + properties?: string[] + /** 是否返回节点布局位置(`left` `right` `top` `bottom`) */ + rect?: boolean + /** 否 是否返回节点的 `scrollLeft` `scrollTop`,节点必须是 `scroll-view` 或者 `viewport` */ + scrollOffset?: boolean + /** 是否返回节点尺寸(`width` `height`) */ + size?: boolean + } + interface FileItem { + /** 文件保存时的时间戳,从1970/01/01 08:00:00 到当前时间的秒数 */ + createTime: number + /** 文件路径 (本地路径) */ + filePath: string + /** 本地文件大小,以字节为单位 */ + size: number + } + interface FileSystemManagerGetFileInfoOption { + /** 要读取的文件路径 (本地路径) */ + filePath: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetFileInfoCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: FileSystemManagerGetFileInfoFailCallback + /** 接口调用成功的回调函数 */ + success?: FileSystemManagerGetFileInfoSuccessCallback + } + interface FileSystemManagerGetFileInfoSuccessCallbackResult { + /** 文件大小,以字节为单位 */ + size: number + errMsg: string + } + interface FileSystemManagerGetSavedFileListOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetSavedFileListCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetSavedFileListFailCallback + /** 接口调用成功的回调函数 */ + success?: FileSystemManagerGetSavedFileListSuccessCallback + } + interface FileSystemManagerGetSavedFileListSuccessCallbackResult { + /** 文件数组 */ + fileList: FileItem[] + errMsg: string + } + interface FileSystemManagerRemoveSavedFileOption { + /** 需要删除的文件路径 (本地路径) */ + filePath: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: RemoveSavedFileCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: FileSystemManagerRemoveSavedFileFailCallback + /** 接口调用成功的回调函数 */ + success?: RemoveSavedFileSuccessCallback + } + interface FileSystemManagerSaveFileOption { + /** 临时存储文件路径 (本地路径) */ + tempFilePath: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SaveFileCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: FileSystemManagerSaveFileFailCallback + /** 要存储的文件路径 (本地路径) */ + filePath?: string + /** 接口调用成功的回调函数 */ + success?: SaveFileSuccessCallback + } + /** 打开的文件信息数组,只有从聊天素材场景打开(scene为1173)才会携带该参数 */ + interface ForwardMaterials { + /** 文件名 */ + name: string + /** 文件路径(如果是webview则是url) */ + path: string + /** 文件大小 */ + size: number + /** 文件的mimetype类型 */ + type: string + } + /** 视频帧数据,若取不到则返回 null。当缓冲区为空的时候可能暂停取不到数据。 */ + interface FrameDataOptions { + /** 帧数据 */ + data: ArrayBuffer + /** 帧数据高度 */ + height: number + /** 帧原始 dts */ + pkDts: number + /** 帧原始 pts */ + pkPts: number + /** 帧数据宽度 */ + width: number + } + interface FromScreenLocationOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: FromScreenLocationCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: FromScreenLocationFailCallback + /** 接口调用成功的回调函数 */ + success?: FromScreenLocationSuccessCallback + } + interface GetAtqaOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetAtqaCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetAtqaFailCallback + /** 接口调用成功的回调函数 */ + success?: GetAtqaSuccessCallback + } + interface GetAtqaSuccessCallbackResult { + /** 返回 ATQA/SENS_RES 数据 */ + atqa: ArrayBuffer + errMsg: string + } + interface GetAvailableAudioSourcesOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetAvailableAudioSourcesCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetAvailableAudioSourcesFailCallback + /** 接口调用成功的回调函数 */ + success?: GetAvailableAudioSourcesSuccessCallback + } + interface GetAvailableAudioSourcesSuccessCallbackResult { + /** 支持的音频输入源列表,可在 [RecorderManager.start()](https://developers.weixin.qq.com/miniprogram/dev/api/media/recorder/RecorderManager.start.html) 接口中使用。返回值定义参考 https://developer.android.com/reference/kotlin/android/media/MediaRecorder.AudioSource + * + * 可选值: + * - 'auto': 自动设置,默认使用手机麦克风,插上耳麦后自动切换使用耳机麦克风,所有平台适用; + * - 'buildInMic': 手机麦克风,仅限 iOS; + * - 'headsetMic': 耳机麦克风,仅限 iOS; + * - 'mic': 麦克风(没插耳麦时是手机麦克风,插耳麦时是耳机麦克风),仅限 Android; + * - 'camcorder': 同 mic,适用于录制音视频内容,仅限 Android; + * - 'voice_communication': 同 mic,适用于实时沟通,仅限 Android; + * - 'voice_recognition': 同 mic,适用于语音识别,仅限 Android; */ + audioSources: Array< + | 'auto' + | 'buildInMic' + | 'headsetMic' + | 'mic' + | 'camcorder' + | 'voice_communication' + | 'voice_recognition' + > + errMsg: string + } + interface GetBLEDeviceCharacteristicsOption { + /** 蓝牙设备 id */ + deviceId: string + /** 蓝牙服务 uuid,需要使用 `getBLEDeviceServices` 获取 */ + serviceId: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetBLEDeviceCharacteristicsCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetBLEDeviceCharacteristicsFailCallback + /** 接口调用成功的回调函数 */ + success?: GetBLEDeviceCharacteristicsSuccessCallback + } + interface GetBLEDeviceCharacteristicsSuccessCallbackResult { + /** 设备特征值列表 */ + characteristics: BLECharacteristic[] + errMsg: string + } + interface GetBLEDeviceRSSIOption { + /** 蓝牙设备 id */ + deviceId: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetBLEDeviceRSSICompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetBLEDeviceRSSIFailCallback + /** 接口调用成功的回调函数 */ + success?: GetBLEDeviceRSSISuccessCallback + } + interface GetBLEDeviceRSSISuccessCallbackResult { + /** 信号强度 */ + RSSI: number + errMsg: string + } + interface GetBLEDeviceServicesOption { + /** 蓝牙设备 id */ + deviceId: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetBLEDeviceServicesCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetBLEDeviceServicesFailCallback + /** 接口调用成功的回调函数 */ + success?: GetBLEDeviceServicesSuccessCallback + } + interface GetBLEDeviceServicesSuccessCallbackResult { + /** 设备服务列表 */ + services: BLEService[] + errMsg: string + } + interface GetBackgroundAudioPlayerStateOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetBackgroundAudioPlayerStateCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetBackgroundAudioPlayerStateFailCallback + /** 接口调用成功的回调函数 */ + success?: GetBackgroundAudioPlayerStateSuccessCallback + } + interface GetBackgroundAudioPlayerStateSuccessCallbackResult { + /** 选定音频的播放位置(单位:s),只有在音乐播放中时返回 */ + currentPosition: number + /** 歌曲数据链接,只有在音乐播放中时返回 */ + dataUrl: string + /** 音频的下载进度百分比,只有在音乐播放中时返回 */ + downloadPercent: number + /** 选定音频的长度(单位:s),只有在音乐播放中时返回 */ + duration: number + /** 播放状态 + * + * 可选值: + * - 0: 暂停中; + * - 1: 播放中; + * - 2: 没有音乐播放; */ + status: 0 | 1 | 2 + errMsg: string + } + interface GetBackgroundFetchDataOption { + /** 取值为 periodic */ + fetchType: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetBackgroundFetchDataCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetBackgroundFetchDataFailCallback + /** 接口调用成功的回调函数 */ + success?: GetBackgroundFetchDataSuccessCallback + } + interface GetBackgroundFetchTokenOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetBackgroundFetchTokenCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetBackgroundFetchTokenFailCallback + /** 接口调用成功的回调函数 */ + success?: GetBackgroundFetchTokenSuccessCallback + } + interface GetBatteryInfoOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetBatteryInfoCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetBatteryInfoFailCallback + /** 接口调用成功的回调函数 */ + success?: GetBatteryInfoSuccessCallback + } + interface GetBatteryInfoSuccessCallbackResult { + /** 是否正在充电中 */ + isCharging: boolean + /** 设备电量,范围 1 - 100 */ + level: string + errMsg: string + } + interface GetBatteryInfoSyncResult { + /** 是否正在充电中 */ + isCharging: boolean + /** 设备电量,范围 1 - 100 */ + level: string + } + interface GetBeaconsOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetBeaconsCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetBeaconsFailCallback + /** 接口调用成功的回调函数 */ + success?: GetBeaconsSuccessCallback + } + interface GetBeaconsSuccessCallbackResult { + /** iBeacon 设备列表 */ + beacons: IBeaconInfo[] + errMsg: string + } + interface GetBluetoothAdapterStateOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetBluetoothAdapterStateCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetBluetoothAdapterStateFailCallback + /** 接口调用成功的回调函数 */ + success?: GetBluetoothAdapterStateSuccessCallback + } + interface GetBluetoothAdapterStateSuccessCallbackResult { + /** 蓝牙适配器是否可用 */ + available: boolean + /** 是否正在搜索设备 */ + discovering: boolean + errMsg: string + } + interface GetBluetoothDevicesOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetBluetoothDevicesCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetBluetoothDevicesFailCallback + /** 接口调用成功的回调函数 */ + success?: GetBluetoothDevicesSuccessCallback + } + interface GetBluetoothDevicesSuccessCallbackResult { + /** uuid 对应的的已连接设备列表 */ + devices: BlueToothDevice[] + errMsg: string + } + interface GetCenterLocationOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetCenterLocationCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetCenterLocationFailCallback + /** 接口调用成功的回调函数 */ + success?: GetCenterLocationSuccessCallback + } + interface GetCenterLocationSuccessCallbackResult { + /** 纬度 */ + latitude: number + /** 经度 */ + longitude: number + errMsg: string + } + interface GetClipboardDataOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetClipboardDataCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetClipboardDataFailCallback + /** 接口调用成功的回调函数 */ + success?: GetClipboardDataSuccessCallback + } + interface GetClipboardDataSuccessCallbackOption { + /** 剪贴板的内容 */ + data: string + } + interface GetConnectedBluetoothDevicesOption { + /** 蓝牙设备主 service 的 uuid 列表 */ + services: string[] + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetConnectedBluetoothDevicesCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetConnectedBluetoothDevicesFailCallback + /** 接口调用成功的回调函数 */ + success?: GetConnectedBluetoothDevicesSuccessCallback + } + interface GetConnectedBluetoothDevicesSuccessCallbackResult { + /** 搜索到的设备列表 */ + devices: BluetoothDeviceInfo[] + errMsg: string + } + interface GetConnectedWifiOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetConnectedWifiCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetConnectedWifiFailCallback + /** 接口调用成功的回调函数 */ + success?: GetConnectedWifiSuccessCallback + } + interface GetConnectedWifiSuccessCallbackResult { + /** [WifiInfo](https://developers.weixin.qq.com/miniprogram/dev/api/device/wifi/WifiInfo.html) + * + * Wi-Fi 信息 */ + wifi: WifiInfo + errMsg: string + } + interface GetContentsOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetContentsCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetContentsFailCallback + /** 接口调用成功的回调函数 */ + success?: GetContentsSuccessCallback + } + interface GetContentsSuccessCallbackResult { + /** 表示内容的delta对象 */ + delta: IAnyObject + /** 带标签的HTML内容 */ + html: string + /** 纯文本内容 */ + text: string + errMsg: string + } + interface GetExtConfigOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetExtConfigCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetExtConfigFailCallback + /** 接口调用成功的回调函数 */ + success?: GetExtConfigSuccessCallback + } + interface GetExtConfigSuccessCallbackResult { + /** 第三方平台自定义的数据 */ + extConfig: IAnyObject + errMsg: string + } + interface GetFileInfoFailCallbackResult { + /** 错误信息 + * + * 可选值: + * - 'fail file not exist': 指定的 filePath 找不到文件; */ + errMsg: string + } + interface GetGroupEnterInfoOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetGroupEnterInfoCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetGroupEnterInfoFailCallback + /** 接口调用成功的回调函数 */ + success?: GetGroupEnterInfoSuccessCallback + } + interface GetGroupEnterInfoSuccessCallbackResult { + /** 敏感数据对应的云 ID,开通[云开发](https://developers.weixin.qq.com/miniprogram/dev/wxcloud/basis/getting-started.html)的小程序才会返回,可通过云调用直接获取开放数据,详细见[云调用直接获取开放数据](https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/signature.html#method-cloud) + * + * 最低基础库: `2.7.0` */ + cloudID: string + /** 包括敏感数据在内的完整转发信息的加密数据,详细见[加密数据解密算法](https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/signature.html) */ + encryptedData: string + /** 错误信息 */ + errMsg: string + /** 加密算法的初始向量,详细见[加密数据解密算法](https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/signature.html) */ + iv: string + } + interface GetHCEStateOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetHCEStateCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetHCEStateFailCallback + /** 接口调用成功的回调函数 */ + success?: GetHCEStateSuccessCallback + } + interface GetHistoricalBytesOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetHistoricalBytesCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetHistoricalBytesFailCallback + /** 接口调用成功的回调函数 */ + success?: GetHistoricalBytesSuccessCallback + } + interface GetHistoricalBytesSuccessCallbackResult { + /** 返回历史二进制数据 */ + histBytes: ArrayBuffer + errMsg: string + } + interface GetImageInfoOption { + /** 图片的路径,支持网络路径、本地路径、代码包路径 */ + src: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetImageInfoCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetImageInfoFailCallback + /** 接口调用成功的回调函数 */ + success?: GetImageInfoSuccessCallback + } + interface GetImageInfoSuccessCallbackResult { + /** 图片原始高度,单位px。不考虑旋转。 */ + height: number + /** [拍照时设备方向](http://sylvana.net/jpegcrop/exif_orientation.html) + * + * 可选值: + * - 'up': 默认方向(手机横持拍照),对应 Exif 中的 1。或无 orientation 信息。; + * - 'up-mirrored': 同 up,但镜像翻转,对应 Exif 中的 2; + * - 'down': 旋转180度,对应 Exif 中的 3; + * - 'down-mirrored': 同 down,但镜像翻转,对应 Exif 中的 4; + * - 'left-mirrored': 同 left,但镜像翻转,对应 Exif 中的 5; + * - 'right': 顺时针旋转90度,对应 Exif 中的 6; + * - 'right-mirrored': 同 right,但镜像翻转,对应 Exif 中的 7; + * - 'left': 逆时针旋转90度,对应 Exif 中的 8; + * + * 最低基础库: `1.9.90` */ + orientation: + | 'up' + | 'up-mirrored' + | 'down' + | 'down-mirrored' + | 'left-mirrored' + | 'right' + | 'right-mirrored' + | 'left' + /** 图片的本地路径 */ + path: string + /** 图片格式 + * + * 最低基础库: `1.9.90` */ + type: string + /** 图片原始宽度,单位px。不考虑旋转。 */ + width: number + errMsg: string + } + interface GetLocationOption { + /** 传入 true 会返回高度信息,由于获取高度需要较高精确度,会减慢接口返回速度 + * + * 最低基础库: `1.6.0` */ + altitude?: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetLocationCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetLocationFailCallback + /** 高精度定位超时时间(ms),指定时间内返回最高精度,该值3000ms以上高精度定位才有效果 + * + * 最低基础库: `2.9.0` */ + highAccuracyExpireTime?: number + /** 开启高精度定位 + * + * 最低基础库: `2.9.0` */ + isHighAccuracy?: boolean + /** 接口调用成功的回调函数 */ + success?: GetLocationSuccessCallback + /** wgs84 返回 gps 坐标,gcj02 返回可用于 wx.openLocation 的坐标 */ + type?: string + } + interface GetLocationSuccessCallbackResult { + /** 位置的精确度 */ + accuracy: number + /** 高度,单位 m + * + * 最低基础库: `1.2.0` */ + altitude: number + /** 水平精度,单位 m + * + * 最低基础库: `1.2.0` */ + horizontalAccuracy: number + /** 纬度,范围为 -90~90,负数表示南纬 */ + latitude: number + /** 经度,范围为 -180~180,负数表示西经 */ + longitude: number + /** 速度,单位 m/s */ + speed: number + /** 垂直精度,单位 m(Android 无法获取,返回 0) + * + * 最低基础库: `1.2.0` */ + verticalAccuracy: number + errMsg: string + } + interface GetLogManagerOption { + /** 取值为0/1,取值为0表示是否会把 `App`、`Page` 的生命周期函数和 `wx` 命名空间下的函数调用写入日志,取值为1则不会。默认值是 0 + * + * 最低基础库: `2.3.2` */ + level?: number + } + interface GetMaxTransceiveLengthOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetMaxTransceiveLengthCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetMaxTransceiveLengthFailCallback + /** 接口调用成功的回调函数 */ + success?: GetMaxTransceiveLengthSuccessCallback + } + interface GetMaxTransceiveLengthSuccessCallbackResult { + /** 最大传输长度 */ + length: number + errMsg: string + } + interface GetNetworkTypeOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetNetworkTypeCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetNetworkTypeFailCallback + /** 接口调用成功的回调函数 */ + success?: GetNetworkTypeSuccessCallback + } + interface GetNetworkTypeSuccessCallbackResult { + /** 网络类型 + * + * 可选值: + * - 'wifi': wifi 网络; + * - '2g': 2g 网络; + * - '3g': 3g 网络; + * - '4g': 4g 网络; + * - '5g': 5g 网络; + * - 'unknown': Android 下不常见的网络类型; + * - 'none': 无网络; */ + networkType: 'wifi' | '2g' | '3g' | '4g' | '5g' | 'unknown' | 'none' + errMsg: string + } + interface GetRandomValuesOption { + /** 整数,生成随机数的字节数,最大 1048576 */ + length: number + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetRandomValuesCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetRandomValuesFailCallback + /** 接口调用成功的回调函数 */ + success?: GetRandomValuesSuccessCallback + } + interface GetRandomValuesSuccessCallbackResult { + /** 随机数内容,长度为传入的字节数 */ + randomValues: ArrayBuffer + errMsg: string + } + interface GetRegionOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetRegionCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetRegionFailCallback + /** 接口调用成功的回调函数 */ + success?: GetRegionSuccessCallback + } + interface GetRegionSuccessCallbackResult { + /** 东北角经纬度 */ + northeast: MapPostion + /** 西南角经纬度 */ + southwest: MapPostion + errMsg: string + } + interface GetRotateOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetRotateCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetRotateFailCallback + /** 接口调用成功的回调函数 */ + success?: GetRotateSuccessCallback + } + interface GetRotateSuccessCallbackResult { + /** 旋转角 */ + rotate: number + errMsg: string + } + interface GetSakOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetSakCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetSakFailCallback + /** 接口调用成功的回调函数 */ + success?: GetSakSuccessCallback + } + interface GetSakSuccessCallbackResult { + /** 返回 SAK/SEL_RES 数据 */ + sak: number + errMsg: string + } + interface GetSavedFileInfoOption { + /** 文件路径 (本地路径) */ + filePath: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetSavedFileInfoCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetSavedFileInfoFailCallback + /** 接口调用成功的回调函数 */ + success?: GetSavedFileInfoSuccessCallback + } + interface GetSavedFileInfoSuccessCallbackResult { + /** 文件保存时的时间戳,从1970/01/01 08:00:00 到该时刻的秒数 */ + createTime: number + /** 文件大小,单位 B */ + size: number + errMsg: string + } + interface GetScaleOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetScaleCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetScaleFailCallback + /** 接口调用成功的回调函数 */ + success?: GetScaleSuccessCallback + } + interface GetScaleSuccessCallbackResult { + /** 缩放值 */ + scale: number + errMsg: string + } + interface GetScreenBrightnessOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetScreenBrightnessCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetScreenBrightnessFailCallback + /** 接口调用成功的回调函数 */ + success?: GetScreenBrightnessSuccessCallback + } + interface GetScreenBrightnessSuccessCallbackOption { + /** 屏幕亮度值,范围 0 ~ 1,0 最暗,1 最亮 */ + value: number + } + interface GetSelectedTextRangeOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetSelectedTextRangeCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetSelectedTextRangeFailCallback + /** 接口调用成功的回调函数 */ + success?: GetSelectedTextRangeSuccessCallback + } + interface GetSelectedTextRangeSuccessCallbackResult { + /** 输入框光标结束位置 */ + end: number + /** 输入框光标起始位置 */ + start: number + errMsg: string + } + interface GetSelectionTextOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetSelectionTextCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetSelectionTextFailCallback + /** 接口调用成功的回调函数 */ + success?: GetSelectionTextSuccessCallback + } + interface GetSelectionTextSuccessCallbackResult { + /** 纯文本内容 */ + text: string + errMsg: string + } + interface GetSettingOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetSettingCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetSettingFailCallback + /** 接口调用成功的回调函数 */ + success?: GetSettingSuccessCallback + /** 是否同时获取用户订阅消息的订阅状态,默认不获取。注意:withSubscriptions 只返回用户勾选过订阅面板中的“总是保持以上选择,不再询问”的订阅消息。 + * + * 最低基础库: `2.10.1` */ + withSubscriptions?: boolean + } + interface GetSettingSuccessCallbackResult { + /** [AuthSetting](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/setting/AuthSetting.html) + * + * 用户授权结果 */ + authSetting: AuthSetting + /** [SubscriptionsSetting](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/setting/SubscriptionsSetting.html) + * + * 用户订阅消息设置,接口参数`withSubscriptions`值为`true`时才会返回。 + * + * 最低基础库: `2.10.1` */ + subscriptionsSetting: SubscriptionsSetting + /** [AuthSetting](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/setting/AuthSetting.html) + * + * 在插件中调用时,当前宿主小程序的用户授权结果 */ + miniprogramAuthSetting?: AuthSetting + errMsg: string + } + interface GetShareInfoOption { + /** shareTicket */ + shareTicket: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetShareInfoCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetShareInfoFailCallback + /** 接口调用成功的回调函数 */ + success?: GetShareInfoSuccessCallback + /** 超时时间,单位 ms + * + * 最低基础库: `1.9.90` */ + timeout?: number + } + interface GetSkewOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetSkewCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetSkewFailCallback + /** 接口调用成功的回调函数 */ + success?: GetSkewSuccessCallback + } + interface GetSkewSuccessCallbackResult { + /** 倾斜角 */ + skew: number + errMsg: string + } + interface GetStorageInfoOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetStorageInfoCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetStorageInfoFailCallback + /** 接口调用成功的回调函数 */ + success?: GetStorageInfoSuccessCallback + } + interface GetStorageInfoSuccessCallbackOption { + /** 当前占用的空间大小, 单位 KB */ + currentSize: number + /** 当前 storage 中所有的 key */ + keys: string[] + /** 限制的空间大小,单位 KB */ + limitSize: number + } + interface GetStorageInfoSyncOption { + /** 当前占用的空间大小, 单位 KB */ + currentSize: number + /** 当前 storage 中所有的 key */ + keys: string[] + /** 限制的空间大小,单位 KB */ + limitSize: number + } + interface GetStorageOption { + /** 本地缓存中指定的 key */ + key: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetStorageCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetStorageFailCallback + /** 接口调用成功的回调函数 */ + success?: GetStorageSuccessCallback + } + interface GetStorageSuccessCallbackResult { + /** key对应的内容 */ + data: T + errMsg: string + } + interface GetSystemInfoAsyncOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetSystemInfoAsyncCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetSystemInfoAsyncFailCallback + /** 接口调用成功的回调函数 */ + success?: GetSystemInfoAsyncSuccessCallback + } + interface GetSystemInfoOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetSystemInfoCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetSystemInfoFailCallback + /** 接口调用成功的回调函数 */ + success?: GetSystemInfoSuccessCallback + } + interface GetUserInfoOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetUserInfoCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetUserInfoFailCallback + /** 显示用户信息的语言 + * + * 可选值: + * - 'en': 英文; + * - 'zh_CN': 简体中文; + * - 'zh_TW': 繁体中文; */ + lang?: 'en' | 'zh_CN' | 'zh_TW' + /** 接口调用成功的回调函数 */ + success?: GetUserInfoSuccessCallback + /** 是否带上登录态信息。当 withCredentials 为 true 时,要求此前有调用过 wx.login 且登录态尚未过期,此时返回的数据会包含 encryptedData, iv 等敏感信息;当 withCredentials 为 false 时,不要求有登录态,返回的数据不包含 encryptedData, iv 等敏感信息。 */ + withCredentials?: boolean + } + interface GetUserInfoSuccessCallbackResult { + /** 敏感数据对应的云 ID,开通[云开发](https://developers.weixin.qq.com/miniprogram/dev/wxcloud/basis/getting-started.html)的小程序才会返回,可通过云调用直接获取开放数据,详细见[云调用直接获取开放数据](https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/signature.html#method-cloud) + * + * 最低基础库: `2.7.0` */ + cloudID: string + /** 包括敏感数据在内的完整用户信息的加密数据,详见 [用户数据的签名验证和加解密]((signature#加密数据解密算法)) */ + encryptedData: string + /** 加密算法的初始向量,详见 [用户数据的签名验证和加解密]((signature#加密数据解密算法)) */ + iv: string + /** 不包括敏感信息的原始数据字符串,用于计算签名 */ + rawData: string + /** 使用 sha1( rawData + sessionkey ) 得到字符串,用于校验用户信息,详见 [用户数据的签名验证和加解密](https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/signature.html) */ + signature: string + /** [UserInfo](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/user-info/UserInfo.html) + * + * 用户信息对象,不包含 openid 等敏感信息 */ + userInfo: UserInfo + errMsg: string + } + interface GetUserProfileOption { + /** 声明获取用户个人信息后的用途,不超过30个字符 */ + desc: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetUserProfileCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetUserProfileFailCallback + /** 显示用户信息的语言 + * + * 可选值: + * - 'en': 英文; + * - 'zh_CN': 简体中文; + * - 'zh_TW': 繁体中文; */ + lang?: 'en' | 'zh_CN' | 'zh_TW' + /** 接口调用成功的回调函数 */ + success?: GetUserProfileSuccessCallback + } + interface GetUserProfileSuccessCallbackResult { + /** [UserInfo](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/user-info/UserInfo.html) + * + * 用户信息对象 */ + userInfo: UserInfo + errMsg: string + } + interface GetVideoInfoOption { + /** 视频文件路径,可以是临时文件路径也可以是永久文件路径 */ + src: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetVideoInfoCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetVideoInfoFailCallback + /** 接口调用成功的回调函数 */ + success?: GetVideoInfoSuccessCallback + } + interface GetVideoInfoSuccessCallbackResult { + /** 视频码率,单位 kbps */ + bitrate: number + /** 视频长度 */ + duration: number + /** 视频帧率 */ + fps: number + /** 视频的长,单位 px */ + height: number + /** 画面方向 + * + * 可选值: + * - 'up': 默认; + * - 'down': 180度旋转; + * - 'left': 逆时针旋转90度; + * - 'right': 顺时针旋转90度; + * - 'up-mirrored': 同up,但水平翻转; + * - 'down-mirrored': 同down,但水平翻转; + * - 'left-mirrored': 同left,但垂直翻转; + * - 'right-mirrored': 同right,但垂直翻转; */ + orientation: + | 'up' + | 'down' + | 'left' + | 'right' + | 'up-mirrored' + | 'down-mirrored' + | 'left-mirrored' + | 'right-mirrored' + /** 视频大小,单位 kB */ + size: number + /** 视频格式 */ + type: string + /** 视频的宽,单位 px */ + width: number + errMsg: string + } + interface GetWeRunDataOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetWeRunDataCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetWeRunDataFailCallback + /** 接口调用成功的回调函数 */ + success?: GetWeRunDataSuccessCallback + } + interface GetWeRunDataSuccessCallbackResult { + /** 敏感数据对应的云 ID,开通云开发的小程序才会返回,可通过云调用直接获取开放数据,详细见[云调用直接获取开放数据](https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/signature.html#method-cloud) + * + * 最低基础库: `2.7.0` */ + cloudID: string + /** 包括敏感数据在内的完整用户信息的加密数据,详细见[加密数据解密算法](https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/signature.html)。解密后得到的数据结构见后文 */ + encryptedData: string + /** 加密算法的初始向量,详细见[加密数据解密算法](https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/signature.html) */ + iv: string + errMsg: string + } + interface GetWifiListOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetWifiListCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetWifiListFailCallback + /** 接口调用成功的回调函数 */ + success?: GetWifiListSuccessCallback + } + interface HideHomeButtonOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: HideHomeButtonCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: HideHomeButtonFailCallback + /** 接口调用成功的回调函数 */ + success?: HideHomeButtonSuccessCallback + } + interface HideKeyboardOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: HideKeyboardCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: HideKeyboardFailCallback + /** 接口调用成功的回调函数 */ + success?: HideKeyboardSuccessCallback + } + interface HideLoadingOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: HideLoadingCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: HideLoadingFailCallback + /** 接口调用成功的回调函数 */ + success?: HideLoadingSuccessCallback + } + interface HideNavigationBarLoadingOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: HideNavigationBarLoadingCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: HideNavigationBarLoadingFailCallback + /** 接口调用成功的回调函数 */ + success?: HideNavigationBarLoadingSuccessCallback + } + interface HideShareMenuOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: HideShareMenuCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: HideShareMenuFailCallback + /** 本接口为 Beta 版本,暂只在 Android 平台支持。需要隐藏的转发按钮名称列表,默认['shareAppMessage', 'shareTimeline']。按钮名称合法值包含 "shareAppMessage"、"shareTimeline" 两种 + * + * 最低基础库: `2.11.3` */ + menus?: string[] + /** 接口调用成功的回调函数 */ + success?: HideShareMenuSuccessCallback + } + interface HideTabBarOption { + /** 是否需要动画效果 */ + animation?: boolean + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: HideTabBarCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: HideTabBarFailCallback + /** 接口调用成功的回调函数 */ + success?: HideTabBarSuccessCallback + } + interface HideTabBarRedDotOption { + /** tabBar 的哪一项,从左边算起 */ + index: number + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: HideTabBarRedDotCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: HideTabBarRedDotFailCallback + /** 接口调用成功的回调函数 */ + success?: HideTabBarRedDotSuccessCallback + } + interface HideToastOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: HideToastCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: HideToastFailCallback + /** 接口调用成功的回调函数 */ + success?: HideToastSuccessCallback + } + interface IBeaconInfo { + /** iBeacon 设备的距离 */ + accuracy: number + /** iBeacon 设备的主 id */ + major: string + /** iBeacon 设备的次 id */ + minor: string + /** 表示设备距离的枚举值 */ + proximity: number + /** 表示设备的信号强度 */ + rssi: number + /** iBeacon 设备广播的 uuid */ + uuid: string + } + /** 图片对象 + * + * 最低基础库: `2.7.0` */ + interface Image { + /** 图片的真实高度 */ + height: number + /** 图片加载发生错误后触发的回调函数 */ + onerror: (...args: any[]) => any + /** 图片加载完成后触发的回调函数 */ + onload: (...args: any[]) => any + /** 图片的 URL。v2.11.0 起支持传递 base64 Data URI */ + src: string + /** 图片的真实宽度 */ + width: number + } + /** ImageData 对象 + * + * 最低基础库: `2.9.0` */ + interface ImageData { + /** 一维数组,包含以 RGBA 顺序的数据,数据使用 0 至 255(包含)的整数表示 */ + data: Uint8ClampedArray + /** 使用像素描述 ImageData 的实际高度 */ + height: number + /** 使用像素描述 ImageData 的实际宽度 */ + width: number + } + /** 图片的本地临时文件列表 + * + * 最低基础库: `1.2.0` */ + interface ImageFile { + /** 本地临时文件路径 (本地路径) */ + path: string + /** 本地临时文件大小,单位 B */ + size: number + } + interface IncludePointsOption { + /** 要显示在可视区域内的坐标点列表 */ + points: MapPostion[] + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: IncludePointsCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: IncludePointsFailCallback + /** 坐标点形成的矩形边缘到地图边缘的距离,单位像素。格式为[上,右,下,左],安卓上只能识别数组第一项,上下左右的padding一致。开发者工具暂不支持padding参数。 */ + padding?: number[] + /** 接口调用成功的回调函数 */ + success?: IncludePointsSuccessCallback + } + interface InitMarkerClusterOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: InitMarkerClusterCompleteCallback + /** 启用默认的聚合样式 */ + enableDefaultStyle?: boolean + /** 接口调用失败的回调函数 */ + fail?: InitMarkerClusterFailCallback + /** 聚合算法的可聚合距离,即距离小于该值的点会聚合至一起,以像素为单位 */ + gridSize?: boolean + /** 接口调用成功的回调函数 */ + success?: InitMarkerClusterSuccessCallback + /** 点击已经聚合的标记点时是否实现聚合分离 */ + zoomOnClick?: boolean + } + /** InnerAudioContext 实例,可通过 [wx.createInnerAudioContext](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/wx.createInnerAudioContext.html) 接口获取实例。注意,音频播放过程中,可能被系统中断,可通过 [wx.onAudioInterruptionBegin](https://developers.weixin.qq.com/miniprogram/dev/api/base/app/app-event/wx.onAudioInterruptionBegin.html)、[wx.onAudioInterruptionEnd](https://developers.weixin.qq.com/miniprogram/dev/api/base/app/app-event/wx.onAudioInterruptionEnd.html)事件来处理这种情况。 +* +* **支持格式** +* +* +* | 格式 | iOS | Android | +* | ---- | ---- | ------- | +* | flac | x | √ | +* | m4a | √ | √ | +* | ogg | x | √ | +* | ape | x | √ | +* | amr | x | √ | +* | wma | x | √ | +* | wav | √ | √ | +* | mp3 | √ | √ | +* | mp4 | x | √ | +* | aac | √ | √ | +* | aiff | √ | x | +* | caf | √ | x | +* +* **示例代码** +* +* +* ```js +const innerAudioContext = wx.createInnerAudioContext() +innerAudioContext.autoplay = true +innerAudioContext.src = 'http://ws.stream.qqmusic.qq.com/M500001VfvsJ21xFqb.mp3?guid=ffffffff82def4af4b12b3cd9337d5e7&uin=346897220&vkey=6292F51E1E384E061FF02C31F716658E5C81F5594D561F2E88B854E81CAAB7806D5E4F103E55D33C16F3FAC506D1AB172DE8600B37E43FAD&fromtag=46' +innerAudioContext.onPlay(() => { + console.log('开始播放') +}) +innerAudioContext.onError((res) => { + console.log(res.errMsg) + console.log(res.errCode) +}) +``` */ + interface InnerAudioContext { + /** 是否自动开始播放,默认为 `false` */ + autoplay: boolean + /** 音频缓冲的时间点,仅保证当前播放时间点到此时间点内容已缓冲(只读) */ + buffered: number + /** 当前音频的播放位置(单位 s)。只有在当前有合法的 src 时返回,时间保留小数点后 6 位(只读) */ + currentTime: number + /** 当前音频的长度(单位 s)。只有在当前有合法的 src 时返回(只读) */ + duration: number + /** 是否循环播放,默认为 `false` */ + loop: boolean + /** 是否遵循系统静音开关,默认为 `true`。当此参数为 `false` 时,即使用户打开了静音开关,也能继续发出声音。从 2.3.0 版本开始此参数不生效,使用 [wx.setInnerAudioOption](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/wx.setInnerAudioOption.html) 接口统一设置。 */ + obeyMuteSwitch: boolean + /** 当前是是否暂停或停止状态(只读) */ + paused: boolean + /** 播放速度。范围 0.5-2.0,默认为 1。(Android 需要 6 及以上版本) + * + * 最低基础库: `2.11.0` */ + playbackRate: number + /** 音频资源的地址,用于直接播放。[2.2.3](https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html) 开始支持云文件ID */ + src: string + /** 开始播放的位置(单位:s),默认为 0 */ + startTime: number + /** 音量。范围 0~1。默认为 1 + * + * 最低基础库: `1.9.90` */ + volume: number + } + interface InnerAudioContextOnErrorCallbackResult { + /** + * + * 可选值: + * - 10001: 系统错误; + * - 10002: 网络错误; + * - 10003: 文件错误; + * - 10004: 格式错误; + * - -1: 未知错误; */ + errCode: 10001 | 10002 | 10003 | 10004 | -1 + errMsg: string + } + interface InsertDividerOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: InsertDividerCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: InsertDividerFailCallback + /** 接口调用成功的回调函数 */ + success?: InsertDividerSuccessCallback + } + interface InsertImageOption { + /** 图片地址,仅支持 http(s)、base64、云图片(2.8.0)、临时文件(2.8.3)。 */ + src: string + /** 图像无法显示时的替代文本 */ + alt?: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: InsertImageCompleteCallback + /** data 被序列化为 name=value;name1=value2 的格式挂在属性 data-custom 上 */ + data?: IAnyObject + /** 添加到图片 img 标签上的类名 */ + extClass?: string + /** 接口调用失败的回调函数 */ + fail?: InsertImageFailCallback + /** 图片高度 (pixels/百分比) */ + height?: string + /** 接口调用成功的回调函数 */ + success?: InsertImageSuccessCallback + /** 图片宽度(pixels/百分比) */ + width?: string + } + interface InsertTextOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: InsertTextCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: InsertTextFailCallback + /** 接口调用成功的回调函数 */ + success?: InsertTextSuccessCallback + /** 文本内容 */ + text?: string + } + interface IntersectionObserverObserveCallbackResult { + /** 目标边界 */ + boundingClientRect: BoundingClientRectResult + /** 相交比例 */ + intersectionRatio: number + /** 相交区域的边界 */ + intersectionRect: IntersectionRectResult + /** 参照区域的边界 */ + relativeRect: RelativeRectResult + /** 相交检测时的时间戳 */ + time: number + } + /** 相交区域的边界 */ + interface IntersectionRectResult { + /** 下边界 */ + bottom: number + /** 高度 */ + height: number + /** 左边界 */ + left: number + /** 右边界 */ + right: number + /** 上边界 */ + top: number + /** 宽度 */ + width: number + } + interface InterstitialAdOnErrorCallbackResult { + /** 错误码 + * + * 可选值: + * - 1000: 后端接口调用失败; + * - 1001: 参数错误; + * - 1002: 广告单元无效; + * - 1003: 内部错误; + * - 1004: 无合适的广告; + * - 1005: 广告组件审核中; + * - 1006: 广告组件被驳回; + * - 1007: 广告组件被封禁; + * - 1008: 广告单元已关闭; */ + errCode: 1000 | 1001 | 1002 | 1003 | 1004 | 1005 | 1006 | 1007 | 1008 + /** 错误信息 */ + errMsg: string + } + interface IsConnectedOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: IsConnectedCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: IsConnectedFailCallback + /** 接口调用成功的回调函数 */ + success?: IsConnectedSuccessCallback + } + interface JoinVoIPChatOption { + /** 小游戏内此房间/群聊的 ID。同一时刻传入相同 groupId 的用户会进入到同个实时语音房间。 */ + groupId: string + /** 验证所需的随机字符串 */ + nonceStr: string + /** 签名,用于验证小游戏的身份 */ + signature: string + /** 验证所需的时间戳 */ + timeStamp: number + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: JoinVoIPChatCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: JoinVoIPChatFailCallback + /** 静音设置 */ + muteConfig?: MuteConfig + /** 房间类型 + * + * 可选值: + * - 'voice': 音频房间,用于语音通话; + * - 'video': 视频房间,结合 [voip-room](https://developers.weixin.qq.com/miniprogram/dev/component/voip-room.html) 组件可显示成员画面; */ + roomType?: 'voice' | 'video' + /** 接口调用成功的回调函数 */ + success?: JoinVoIPChatSuccessCallback + } + interface JoinVoIPChatSuccessCallbackResult { + /** 错误码 */ + errCode: number + /** 调用结果 */ + errMsg: string + /** 在此通话中的成员 openId 名单 */ + openIdList: string[] + } + /** 启动参数 */ + interface LaunchOptionsApp { + /** 打开的文件信息数组,只有从聊天素材场景打开(scene为1173)才会携带该参数 */ + forwardMaterials: ForwardMaterials[] + /** 启动小程序的路径 (代码包路径) */ + path: string + /** 启动小程序的 query 参数 */ + query: IAnyObject + /** 来源信息。从另一个小程序、公众号或 App 进入小程序时返回。否则返回 `{}`。(参见后文注意) */ + referrerInfo: ReferrerInfo + /** 启动小程序的[场景值](https://developers.weixin.qq.com/miniprogram/dev/framework/app-service/scene.html) */ + scene: number + /** shareTicket,详见[获取更多转发信息](https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share.html) */ + shareTicket?: string + } + interface LivePlayerContextRequestFullScreenOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: RequestFullScreenCompleteCallback + /** 设置全屏时的方向 + * + * 可选值: + * - 0: 正常竖向; + * - 90: 屏幕逆时针90度; + * - -90: 屏幕顺时针90度; */ + direction?: 0 | 90 | -90 + /** 接口调用失败的回调函数 */ + fail?: RequestFullScreenFailCallback + /** 接口调用成功的回调函数 */ + success?: RequestFullScreenSuccessCallback + } + interface LivePlayerContextSnapshotOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SnapshotCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SnapshotFailCallback + /** 图片的质量,默认原图。有效值为 raw、compressed + * + * 最低基础库: `2.10.0` */ + quality?: string + /** 接口调用成功的回调函数 */ + success?: LivePlayerContextSnapshotSuccessCallback + } + interface LivePlayerContextSnapshotSuccessCallbackResult { + /** 图片的高度 */ + height: string + /** 图片文件的临时路径 (本地路径) */ + tempImagePath: string + /** 图片的宽度 */ + width: string + errMsg: string + } + interface LivePusherContextSnapshotOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SnapshotCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SnapshotFailCallback + /** 图片的质量,默认原图。有效值为 raw、compressed + * + * 最低基础库: `2.10.0` */ + quality?: string + /** 接口调用成功的回调函数 */ + success?: LivePusherContextSnapshotSuccessCallback + } + interface LivePusherContextSnapshotSuccessCallbackResult { + /** 图片的高度 */ + height: string + /** 图片文件的临时路径 */ + tempImagePath: string + /** 图片的宽度 */ + width: string + errMsg: string + } + interface LoadFontFaceCompleteCallbackResult { + /** 加载字体结果 */ + status: string + } + interface LoadFontFaceOption { + /** 定义的字体名称 */ + family: string + /** 字体资源的地址。建议格式为 TTF 和 WOFF,WOFF2 在低版本的iOS上会不兼容。 */ + source: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: LoadFontFaceCompleteCallback + /** 可选的字体描述符 */ + desc?: DescOption + /** 接口调用失败的回调函数 */ + fail?: LoadFontFaceFailCallback + /** 是否全局生效 + * + * 最低基础库: `2.10.0` */ + global?: boolean + /** 字体作用范围,可选值为 webview / native,默认 webview,设置 native 可在 Canvas 2D 下使用 */ + scopes?: any[] + /** 接口调用成功的回调函数 */ + success?: LoadFontFaceSuccessCallback + } + interface LoginOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: LoginCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: LoginFailCallback + /** 接口调用成功的回调函数 */ + success?: LoginSuccessCallback + /** 超时时间,单位ms + * + * 最低基础库: `1.9.90` */ + timeout?: number + } + interface LoginSuccessCallbackResult { + /** 用户登录凭证(有效期五分钟)。开发者需要在开发者服务器后台调用 [auth.code2Session](https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/login/auth.code2Session.html),使用 code 换取 openid 和 session_key 等信息 */ + code: string + errMsg: string + } + interface MakeBluetoothPairOption { + /** 蓝牙设备 id */ + deviceId: string + /** pin 码,Base64 格式。 */ + pin: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: MakeBluetoothPairCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: MakeBluetoothPairFailCallback + /** 接口调用成功的回调函数 */ + success?: MakeBluetoothPairSuccessCallback + /** 超时时间 */ + timeout?: number + } + interface MakePhoneCallOption { + /** 需要拨打的电话号码 */ + phoneNumber: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: MakePhoneCallCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: MakePhoneCallFailCallback + /** 接口调用成功的回调函数 */ + success?: MakePhoneCallSuccessCallback + } + /** 广播的制造商信息, 仅安卓支持 */ + interface ManufacturerData { + /** 制造商ID,0x 开头的十六进制 */ + manufacturerId: string + /** 制造商信息 */ + manufacturerSpecificData?: ArrayBuffer + } + /** 图片覆盖的经纬度范围 */ + interface MapBounds { + /** 东北角经纬度 */ + northeast: MapPostion + /** 西南角经纬度 */ + southwest: MapPostion + } + interface MapPostion { + /** 纬度 */ + latitude: number + /** 经度 */ + longitude: number + } + /** 用来扩展(或收缩)参照节点布局区域的边界 */ + interface Margins { + /** 节点布局区域的下边界 */ + bottom?: number + /** 节点布局区域的左边界 */ + left?: number + /** 节点布局区域的右边界 */ + right?: number + /** 节点布局区域的上边界 */ + top?: number + } + /** MediaAudioPlayer 实例,可通过 [wx.createMediaAudioPlayer](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/wx.createMediaAudioPlayer.html) 接口获取实例。 */ + interface MediaAudioPlayer { + /** 音量。范围 0~1。默认为 1 */ + volume: number + } + /** 本地临时文件列表 */ + interface MediaFile { + /** 视频的时间长度 */ + duration: number + /** 视频的高度 */ + height: number + /** 本地临时文件大小,单位 B */ + size: number + /** 本地临时文件路径 (本地路径) */ + tempFilePath: string + /** 视频缩略图临时文件路径 */ + thumbTempFilePath: string + /** 视频的宽度 */ + width: number + } + interface MediaQueryObserverObserveCallbackResult { + /** 页面的当前状态是否满足所指定的 media query */ + matches: boolean + } + /** 需要预览的资源列表 */ + interface MediaSource { + /** 图片或视频的地址 */ + url: string + /** 视频的封面图片 */ + poster?: string + /** 资源的类型,默认为图片 + * + * 可选值: + * - 'image': 图片; + * - 'video': 视频; */ + type?: 'image' | 'video' + } + /** 可通过 [MediaContainer.extractDataSource](https://developers.weixin.qq.com/miniprogram/dev/api/media/video-processing/MediaContainer.extractDataSource.html) 返回。 + * + * [MediaTrack](https://developers.weixin.qq.com/miniprogram/dev/api/media/video-processing/MediaTrack.html) 音频或视频轨道,可以对轨道进行一些操作 + * + * 最低基础库: `2.9.0` */ + interface MediaTrack { + /** 轨道长度,只读 */ + duration: number + /** 轨道类型,只读 + * + * 可选值: + * - 'audio': 音频轨道; + * - 'video': 视频轨道; */ + kind: 'audio' | 'video' + /** 音量,音频轨道下有效,可写 */ + volume: number + } + /** 小程序帐号信息 */ + interface MiniProgram { + /** 小程序 appId */ + appId: string + /** 小程序版本 + * + * 可选值: + * - 'develop': 开发版; + * - 'trial': 体验版; + * - 'release': 正式版; + * + * 最低基础库: `2.10.0` */ + envVersion: 'develop' | 'trial' | 'release' + /** 线上小程序版本号 + * + * 最低基础库: `2.10.2` */ + version: string + } + interface MkdirFailCallbackResult { + /** 错误信息 + * + * 可选值: + * - 'fail no such file or directory ${dirPath}': 上级目录不存在; + * - 'fail permission denied, open ${dirPath}': 指定的 filePath 路径没有写权限; + * - 'fail file already exists ${dirPath}': 有同名文件或目录; + * - 'fail sdcard not mounted': Android sdcard 挂载失败; */ + errMsg: string + } + interface MkdirOption { + /** 创建的目录路径 (本地路径) */ + dirPath: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: MkdirCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: MkdirFailCallback + /** 是否在递归创建该目录的上级目录后再创建该目录。如果对应的上级目录已经存在,则不创建该上级目录。如 dirPath 为 a/b/c/d 且 recursive 为 true,将创建 a 目录,再在 a 目录下创建 b 目录,以此类推直至创建 a/b/c 目录下的 d 目录。 + * + * 最低基础库: `2.3.0` */ + recursive?: boolean + /** 接口调用成功的回调函数 */ + success?: MkdirSuccessCallback + } + interface MoveAlongOption { + /** 平滑移动的时间 */ + duration: number + /** 指定 marker */ + markerId: number + /** 移动路径的坐标串,坐标点格式 `{longitude, latitude}` */ + path: any[] + /** 根据路径方向自动改变 marker 的旋转角度 */ + autoRotate?: boolean + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: MoveAlongCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: MoveAlongFailCallback + /** 接口调用成功的回调函数 */ + success?: MoveAlongSuccessCallback + } + interface MoveToLocationOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: MoveToLocationCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: MoveToLocationFailCallback + /** 纬度 + * + * 最低基础库: `2.8.0` */ + latitude?: number + /** 经度 + * + * 最低基础库: `2.8.0` */ + longitude?: number + /** 接口调用成功的回调函数 */ + success?: MoveToLocationSuccessCallback + } + /** 静音设置 */ + interface MuteConfig { + /** 是否静音耳机 */ + muteEarphone?: boolean + /** 是否静音麦克风 */ + muteMicrophone?: boolean + } + interface MuteOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: MuteCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: MuteFailCallback + /** 接口调用成功的回调函数 */ + success?: MuteSuccessCallback + } + /** + * + * 最低基础库: `2.11.2` */ + interface NFCAdapter { + /** 标签类型枚举 */ + tech: TechType + } + interface NavigateBackMiniProgramOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: NavigateBackMiniProgramCompleteCallback + /** 需要返回给上一个小程序的数据,上一个小程序可在 `App.onShow` 中获取到这份数据。 [详情](https://developers.weixin.qq.com/miniprogram/dev/reference/api/App.html)。 */ + extraData?: IAnyObject + /** 接口调用失败的回调函数 */ + fail?: NavigateBackMiniProgramFailCallback + /** 接口调用成功的回调函数 */ + success?: NavigateBackMiniProgramSuccessCallback + } + interface NavigateBackOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: NavigateBackCompleteCallback + /** 返回的页面数,如果 delta 大于现有页面数,则返回到首页。 */ + delta?: number + /** 接口调用失败的回调函数 */ + fail?: NavigateBackFailCallback + /** 接口调用成功的回调函数 */ + success?: NavigateBackSuccessCallback + } + interface NavigateToMiniProgramOption { + /** 要打开的小程序 appId */ + appId: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: NavigateToMiniProgramCompleteCallback + /** 要打开的小程序版本。仅在当前小程序为开发版或体验版时此参数有效。如果当前小程序是正式版,则打开的小程序必定是正式版。 + * + * 可选值: + * - 'develop': 开发版; + * - 'trial': 体验版; + * - 'release': 正式版; */ + envVersion?: 'develop' | 'trial' | 'release' + /** 需要传递给目标小程序的数据,目标小程序可在 `App.onLaunch`,`App.onShow` 中获取到这份数据。如果跳转的是小游戏,可以在 [wx.onShow](#)、[wx.getLaunchOptionsSync](https://developers.weixin.qq.com/miniprogram/dev/api/base/app/life-cycle/wx.getLaunchOptionsSync.html) 中可以获取到这份数据数据。 */ + extraData?: IAnyObject + /** 接口调用失败的回调函数 */ + fail?: NavigateToMiniProgramFailCallback + /** 打开的页面路径,如果为空则打开首页。path 中 ? 后面的部分会成为 query,在小程序的 `App.onLaunch`、`App.onShow` 和 `Page.onLoad` 的回调函数或小游戏的 [wx.onShow](#) 回调函数、[wx.getLaunchOptionsSync](https://developers.weixin.qq.com/miniprogram/dev/api/base/app/life-cycle/wx.getLaunchOptionsSync.html) 中可以获取到 query 数据。对于小游戏,可以只传入 query 部分,来实现传参效果,如:传入 "?foo=bar"。 */ + path?: string + /** 接口调用成功的回调函数 */ + success?: NavigateToMiniProgramSuccessCallback + } + interface NavigateToOption { + /** 需要跳转的应用内非 tabBar 的页面的路径 (代码包路径), 路径后可以带参数。参数与路径之间使用 `?` 分隔,参数键与参数值用 `=` 相连,不同参数用 `&` 分隔;如 'path?key=value&key2=value2' */ + url: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: NavigateToCompleteCallback + /** 页面间通信接口,用于监听被打开页面发送到当前页面的数据。基础库 2.7.3 开始支持。 */ + events?: IAnyObject + /** 接口调用失败的回调函数 */ + fail?: NavigateToFailCallback + /** 接口调用成功的回调函数 */ + success?: NavigateToSuccessCallback + } + interface NavigateToSuccessCallbackResult { + /** [EventChannel](https://developers.weixin.qq.com/miniprogram/dev/api/route/EventChannel.html) + * + * 和被打开页面进行通信 */ + eventChannel: EventChannel + errMsg: string + } + interface NdefCloseOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: NdefCloseCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: NdefCloseFailCallback + /** 接口调用成功的回调函数 */ + success?: NdefCloseSuccessCallback + } + interface NodeCallbackResult { + /** 节点对应的 Node 实例 */ + node: IAnyObject + } + interface NotifyBLECharacteristicValueChangeOption { + /** 蓝牙特征值的 uuid */ + characteristicId: string + /** 蓝牙设备 id */ + deviceId: string + /** 蓝牙特征值对应服务的 uuid */ + serviceId: string + /** 是否启用 notify */ + state: boolean + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: NotifyBLECharacteristicValueChangeCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: NotifyBLECharacteristicValueChangeFailCallback + /** 接口调用成功的回调函数 */ + success?: NotifyBLECharacteristicValueChangeSuccessCallback + } + /** media query 描述符 */ + interface ObserveDescriptor { + /** 页面高度( px 为单位) */ + height: number + /** 页面最大高度( px 为单位) */ + maxHeight: number + /** 页面最大宽度( px 为单位) */ + maxWidth: number + /** 页面最小高度( px 为单位) */ + minHeight: number + /** 页面最小宽度( px 为单位) */ + minWidth: number + /** 屏幕方向( `landscape` 或 `portrait` ) */ + orientation: string + /** 页面宽度( px 为单位) */ + width: number + } + interface OnAccelerometerChangeCallbackResult { + /** X 轴 */ + x: number + /** Y 轴 */ + y: number + /** Z 轴 */ + z: number + } + interface OnAppShowCallbackResult { + /** 打开的文件信息数组,只有从聊天素材场景打开(scene为1173)才会携带该参数 */ + forwardMaterials: ForwardMaterials[] + /** 小程序切前台的路径 (代码包路径) */ + path: string + /** 小程序切前台的 query 参数 */ + query: IAnyObject + /** 来源信息。从另一个小程序、公众号或 App 进入小程序时返回。否则返回 `{}`。(参见后文注意) */ + referrerInfo: ReferrerInfo + /** 小程序切前台的[场景值](https://developers.weixin.qq.com/miniprogram/dev/framework/app-service/scene.html) */ + scene: number + /** shareTicket,详见[获取更多转发信息](https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share.html) */ + shareTicket?: string + } + interface OnBLECharacteristicValueChangeCallbackResult { + /** 蓝牙特征值的 uuid */ + characteristicId: string + /** 蓝牙设备 id */ + deviceId: string + /** 蓝牙特征值对应服务的 uuid */ + serviceId: string + /** 特征值最新的值 */ + value: ArrayBuffer + } + interface OnBLEConnectionStateChangeCallbackResult { + /** 是否处于已连接状态 */ + connected: boolean + /** 蓝牙设备ID */ + deviceId: string + } + interface OnBLEPeripheralConnectionStateChangedCallbackResult { + /** 连接目前状态 */ + connected: boolean + /** 连接状态变化的设备 id */ + deviceId: string + /** server 的 uuid */ + serverId: string + } + interface OnBackgroundFetchDataCallbackResult { + /** 缓存数据类别 (periodic) */ + fetchType: string + /** 缓存数据 */ + fetchedData: string + /** 客户端拿到缓存数据的时间戳 */ + timeStamp: number + } + interface OnBeaconServiceChangeCallbackResult { + /** 服务目前是否可用 */ + available: boolean + /** 目前是否处于搜索状态 */ + discovering: boolean + } + interface OnBeaconUpdateCallbackResult { + /** 当前搜寻到的所有 iBeacon 设备列表 */ + beacons: IBeaconInfo[] + } + interface OnBluetoothAdapterStateChangeCallbackResult { + /** 蓝牙适配器是否可用 */ + available: boolean + /** 蓝牙适配器是否处于搜索状态 */ + discovering: boolean + } + interface OnBluetoothDeviceFoundCallbackResult { + /** 新搜索到的设备列表 */ + devices: BlueToothDevice[] + } + interface OnCameraFrameCallbackResult { + /** 图像像素点数据,一维数组,每四项表示一个像素点的 rgba */ + data: ArrayBuffer + /** 图像数据矩形的高度 */ + height: number + /** 图像数据矩形的宽度 */ + width: number + } + interface OnCharacteristicReadRequestCallbackResult { + /** 唯一标识码,调用 writeCharacteristicValue 时使用 */ + callbackId: number + /** characteristic对应的uuid */ + characteristicId: string + /** service对应的uuid */ + serviceId: string + } + interface OnCharacteristicSubscribedCallbackResult { + /** characteristic对应的uuid */ + characteristicId: string + /** service对应的uuid */ + serviceId: string + } + interface OnCharacteristicWriteRequestCallbackResult { + /** 唯一标识码,调用 writeCharacteristicValue 时使用 */ + callbackId: number + /** characteristic对应的uuid */ + characteristicId: string + /** service对应的uuid */ + serviceId: string + /** 请求写入的特征值数据 */ + value: ArrayBuffer + } + interface OnCheckForUpdateCallbackResult { + /** 是否有新版本 */ + hasUpdate: boolean + } + interface OnCompassChangeCallbackResult { + /** 精度 + * + * 最低基础库: `2.4.0` */ + accuracy: number | string + /** 面对的方向度数 */ + direction: number + } + interface OnCopyUrlCallbackResult { + /** 用短链打开小程序时当前页面携带的查询字符串。小程序中使用时,应在进入页面时调用 `wx.onCopyUrl` 自定义 `query`,退出页面时调用 `wx.offCopyUrl`,防止影响其它页面。 */ + query: string + } + interface OnDeviceMotionChangeCallbackResult { + /** 当 手机坐标 X/Y 和 地球 X/Y 重合时,绕着 Z 轴转动的夹角为 alpha,范围值为 [0, 2*PI)。逆时针转动为正。 */ + alpha: number + /** 当手机坐标 Y/Z 和地球 Y/Z 重合时,绕着 X 轴转动的夹角为 beta。范围值为 [-1*PI, PI) 。顶部朝着地球表面转动为正。也有可能朝着用户为正。 */ + beta: number + /** 当手机 X/Z 和地球 X/Z 重合时,绕着 Y 轴转动的夹角为 gamma。范围值为 [-1*PI/2, PI/2)。右边朝着地球表面转动为正。 */ + gamma: number + } + interface OnDiscoveredCallbackResult { + /** NdefMessage 数组,消息格式为 {id: ArrayBuffer, type: ArrayBuffer, payload: ArrayBuffer} */ + messages: any[] + /** tech 数组,用于匹配NFC卡片具体可以使用什么标准(NfcA等实例)处理 */ + techs: any[] + } + interface OnFrameRecordedCallbackResult { + /** 录音分片数据 */ + frameBuffer: ArrayBuffer + /** 当前帧是否正常录音结束前的最后一帧 */ + isLastFrame: boolean + } + interface OnGetWifiListCallbackResult { + /** Wi-Fi 列表数据 */ + wifiList: WifiInfo[] + } + interface OnGyroscopeChangeCallbackResult { + /** x 轴的角速度 */ + x: number + /** y 轴的角速度 */ + y: number + /** z 轴的角速度 */ + z: number + } + interface OnHCEMessageCallbackResult { + /** `messageType=1` 时 ,客户端接收到 NFC 设备的指令 */ + data: ArrayBuffer + /** 消息类型 + * + * 可选值: + * - 1: HCE APDU Command类型,小程序需对此指令进行处理,并调用 sendHCEMessage 接口返回处理指令; + * - 2: 设备离场事件类型; */ + messageType: 1 | 2 + /** `messageType=2` 时,原因 */ + reason: number + } + interface OnHeadersReceivedCallbackResult { + /** 开发者服务器返回的 HTTP Response Header */ + header: IAnyObject + } + interface OnKeyboardHeightChangeCallbackResult { + /** 键盘高度 */ + height: number + } + interface OnLocalServiceFoundCallbackResult { + /** 服务的 ip 地址 */ + ip: string + /** 服务的端口 */ + port: number + /** 服务的名称 */ + serviceName: string + /** 服务的类型 */ + serviceType: string + } + interface OnLocalServiceLostCallbackResult { + /** 服务的名称 */ + serviceName: string + /** 服务的类型 */ + serviceType: string + } + interface OnLocationChangeCallbackResult { + /** 位置的精确度 */ + accuracy: number + /** 高度,单位 m + * + * 最低基础库: `1.2.0` */ + altitude: number + /** 水平精度,单位 m + * + * 最低基础库: `1.2.0` */ + horizontalAccuracy: number + /** 纬度,范围为 -90~90,负数表示南纬 */ + latitude: number + /** 经度,范围为 -180~180,负数表示西经 */ + longitude: number + /** 速度,单位 m/s */ + speed: number + /** 垂直精度,单位 m(Android 无法获取,返回 0) + * + * 最低基础库: `1.2.0` */ + verticalAccuracy: number + } + interface OnMemoryWarningCallbackResult { + /** 内存告警等级,只有 Android 才有,对应系统宏定义 + * + * 可选值: + * - 5: TRIM_MEMORY_RUNNING_MODERATE; + * - 10: TRIM_MEMORY_RUNNING_LOW; + * - 15: TRIM_MEMORY_RUNNING_CRITICAL; */ + level: 5 | 10 | 15 + } + interface OnNetworkStatusChangeCallbackResult { + /** 当前是否有网络连接 */ + isConnected: boolean + /** 网络类型 + * + * 可选值: + * - 'wifi': wifi 网络; + * - '2g': 2g 网络; + * - '3g': 3g 网络; + * - '4g': 4g 网络; + * - 'unknown': Android 下不常见的网络类型; + * - 'none': 无网络; */ + networkType: 'wifi' | '2g' | '3g' | '4g' | 'unknown' | 'none' + } + interface OnOpenCallbackResult { + /** 连接成功的 HTTP 响应 Header + * + * 最低基础库: `2.0.0` */ + header: IAnyObject + /** 网络请求过程中一些调试信息 + * + * 最低基础库: `2.10.4` */ + profile: SocketProfile + } + interface OnPageNotFoundCallbackResult { + /** 是否本次启动的首个页面(例如从分享等入口进来,首个页面是开发者配置的分享页面) */ + isEntryPage: boolean + /** 不存在页面的路径 (代码包路径) */ + path: string + /** 打开不存在页面的 query 参数 */ + query: IAnyObject + } + interface OnSocketOpenCallbackResult { + /** 连接成功的 HTTP 响应 Header + * + * 最低基础库: `2.0.0` */ + header: IAnyObject + } + interface OnStopCallbackResult { + /** 录音总时长,单位:ms */ + duration: number + /** 录音文件大小,单位:Byte */ + fileSize: number + /** 录音文件的临时路径 (本地路径) */ + tempFilePath: string + } + interface OnThemeChangeCallbackResult { + /** 系统当前的主题,取值为`light`或`dark` + * + * 可选值: + * - 'dark': 深色主题; + * - 'light': 浅色主题; */ + theme: 'dark' | 'light' + } + interface OnUnhandledRejectionCallbackResult { + /** 被拒绝的 Promise 对象 */ + promise: Promise + /** 拒绝原因,一般是一个 Error 对象 */ + reason: string + } + interface OnVoIPChatInterruptedCallbackResult { + /** 错误码 */ + errCode: number + /** 调用结果(错误原因) */ + errMsg: string + } + interface OnVoIPChatMembersChangedCallbackResult { + /** 错误码 */ + errCode: number + /** 调用结果 */ + errMsg: string + /** 还在实时语音通话中的成员 openId 名单 */ + openIdList: string[] + } + interface OnVoIPChatSpeakersChangedCallbackResult { + /** 错误码 */ + errCode: number + /** 调用结果(错误原因) */ + errMsg: string + /** 还在实时语音通话中的成员 openId 名单 */ + openIdList: string[] + } + interface OnVoIPVideoMembersChangedCallbackResult { + /** 错误码 */ + errCode: number + /** 调用结果 */ + errMsg: string + /** 开启视频的成员名单 */ + openIdList: string[] + } + interface OnWifiConnectedCallbackResult { + /** [WifiInfo](https://developers.weixin.qq.com/miniprogram/dev/api/device/wifi/WifiInfo.html) + * + * Wi-Fi 信息 */ + wifi: WifiInfo + } + interface OnWindowResizeCallbackResult { + size: Size + } + interface OpenBluetoothAdapterOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: OpenBluetoothAdapterCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: OpenBluetoothAdapterFailCallback + /** 蓝牙模式,可作为主/从设备,仅 iOS 需要。 + * + * 可选值: + * - 'central': 主机模式; + * - 'peripheral': 从机模式; + * + * 最低基础库: `2.10.0` */ + mode?: 'central' | 'peripheral' + /** 接口调用成功的回调函数 */ + success?: OpenBluetoothAdapterSuccessCallback + } + interface OpenCardOption { + /** 需要打开的卡券列表 */ + cardList: OpenCardRequestInfo[] + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: OpenCardCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: OpenCardFailCallback + /** 接口调用成功的回调函数 */ + success?: OpenCardSuccessCallback + } + /** 需要打开的卡券列表 */ + interface OpenCardRequestInfo { + /** 卡券 ID */ + cardId: string + /** 由 [wx.addCard](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/card/wx.addCard.html) 的返回对象中的加密 code 通过解密后得到,解密请参照:[code 解码接口](https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1499332673_Unm7V) */ + code: string + } + interface OpenDocumentOption { + /** 文件路径 (本地路径) ,可通过 downloadFile 获得 */ + filePath: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: OpenDocumentCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: OpenDocumentFailCallback + /** 文件类型,指定文件类型打开文件 + * + * 可选值: + * - 'doc': doc 格式; + * - 'docx': docx 格式; + * - 'xls': xls 格式; + * - 'xlsx': xlsx 格式; + * - 'ppt': ppt 格式; + * - 'pptx': pptx 格式; + * - 'pdf': pdf 格式; + * + * 最低基础库: `1.4.0` */ + fileType?: 'doc' | 'docx' | 'xls' | 'xlsx' | 'ppt' | 'pptx' | 'pdf' + /** 是否显示右上角菜单 + * + * 最低基础库: `2.11.0` */ + showMenu?: boolean + /** 接口调用成功的回调函数 */ + success?: OpenDocumentSuccessCallback + } + interface OpenLocationOption { + /** 纬度,范围为-90~90,负数表示南纬。使用 gcj02 国测局坐标系 */ + latitude: number + /** 经度,范围为-180~180,负数表示西经。使用 gcj02 国测局坐标系 */ + longitude: number + /** 地址的详细说明 */ + address?: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: OpenLocationCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: OpenLocationFailCallback + /** 位置名 */ + name?: string + /** 缩放比例,范围5~18 */ + scale?: number + /** 接口调用成功的回调函数 */ + success?: OpenLocationSuccessCallback + } + interface OpenMapAppOption { + /** 目的地名称 */ + destination: string + /** 目的地纬度 */ + latitude: number + /** 目的地经度 */ + longitude: number + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: OpenMapAppCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: OpenMapAppFailCallback + /** 接口调用成功的回调函数 */ + success?: OpenMapAppSuccessCallback + } + interface OpenSettingOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: OpenSettingCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: OpenSettingFailCallback + /** 接口调用成功的回调函数 */ + success?: OpenSettingSuccessCallback + /** 是否同时获取用户订阅消息的订阅状态,默认不获取。注意:withSubscriptions 只返回用户勾选过订阅面板中的“总是保持以上选择,不再询问”的订阅消息。 + * + * 最低基础库: `2.10.3` */ + withSubscriptions?: boolean + } + interface OpenSettingSuccessCallbackResult { + /** [AuthSetting](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/setting/AuthSetting.html) + * + * 用户授权结果 */ + authSetting: AuthSetting + /** [SubscriptionsSetting](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/setting/SubscriptionsSetting.html) + * + * 用户订阅消息设置,接口参数`withSubscriptions`值为`true`时才会返回。 + * + * 最低基础库: `2.10.3` */ + subscriptionsSetting: SubscriptionsSetting + errMsg: string + } + interface OpenVideoEditorOption { + /** 视频源的路径,只支持本地路径 */ + filePath: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: OpenVideoEditorCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: OpenVideoEditorFailCallback + /** 接口调用成功的回调函数 */ + success?: OpenVideoEditorSuccessCallback + } + interface OpenVideoEditorSuccessCallbackResult { + /** 剪辑后生成的视频文件的时长,单位毫秒(ms) */ + duration: number + /** 剪辑后生成的视频文件大小,单位字节数(byte) */ + size: number + /** 编辑后生成的视频文件的临时路径 */ + tempFilePath: string + /** 编辑后生成的缩略图文件的临时路径 */ + tempThumbPath: string + errMsg: string + } + interface PageScrollToOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: PageScrollToCompleteCallback + /** 滚动动画的时长,单位 ms */ + duration?: number + /** 接口调用失败的回调函数 */ + fail?: PageScrollToFailCallback + /** 滚动到页面的目标位置,单位 px */ + scrollTop?: number + /** 选择器 + * + * 最低基础库: `2.7.3` */ + selector?: string + /** 接口调用成功的回调函数 */ + success?: PageScrollToSuccessCallback + } + /** Canvas 2D API 的接口 Path2D 用来声明路径,此路径稍后会被CanvasRenderingContext2D 对象使用。CanvasRenderingContext2D 接口的 路径方法 也存在于 Path2D 这个接口中,允许你在 canvas 中根据需要创建可以保留并重用的路径。 + * + * 最低基础库: `2.11.0` */ + interface Path2D {} + interface PauseBGMOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: PauseBGMCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: PauseBGMFailCallback + /** 接口调用成功的回调函数 */ + success?: PauseBGMSuccessCallback + } + interface PauseBackgroundAudioOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: PauseBackgroundAudioCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: PauseBackgroundAudioFailCallback + /** 接口调用成功的回调函数 */ + success?: PauseBackgroundAudioSuccessCallback + } + interface PauseOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: PauseCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: PauseFailCallback + /** 接口调用成功的回调函数 */ + success?: PauseSuccessCallback + } + interface PauseVoiceOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: PauseVoiceCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: PauseVoiceFailCallback + /** 接口调用成功的回调函数 */ + success?: PauseVoiceSuccessCallback + } + /** PerformanceObserver 对象, 用于监听性能相关事件 + * + * 最低基础库: `2.11.0` */ + interface PerformanceObserver { + /** 获取当前支持的所有性能指标类型 */ + supportedEntryTypes: any[] + } + interface PlayBGMOption { + /** 加入背景混音的资源地址 */ + url: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: PlayBGMCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: PlayBGMFailCallback + /** 接口调用成功的回调函数 */ + success?: PlayBGMSuccessCallback + } + interface PlayBackgroundAudioOption { + /** 音乐链接,目前支持的格式有 m4a, aac, mp3, wav */ + dataUrl: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: PlayBackgroundAudioCompleteCallback + /** 封面URL */ + coverImgUrl?: string + /** 接口调用失败的回调函数 */ + fail?: PlayBackgroundAudioFailCallback + /** 接口调用成功的回调函数 */ + success?: PlayBackgroundAudioSuccessCallback + /** 音乐标题 */ + title?: string + } + interface PlayOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: PlayCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: PlayFailCallback + /** 接口调用成功的回调函数 */ + success?: PlaySuccessCallback + } + interface PlayVoiceOption { + /** 需要播放的语音文件的文件路径 (本地路径) */ + filePath: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: PlayVoiceCompleteCallback + /** 指定播放时长,到达指定的播放时长后会自动停止播放,单位:秒 + * + * 最低基础库: `1.6.0` */ + duration?: number + /** 接口调用失败的回调函数 */ + fail?: PlayVoiceFailCallback + /** 接口调用成功的回调函数 */ + success?: PlayVoiceSuccessCallback + } + /** 插件帐号信息(仅在插件中调用时包含这一项) */ + interface Plugin { + /** 插件 appId */ + appId: string + /** 插件版本号 */ + version: string + } + interface PreviewImageOption { + /** 需要预览的图片链接列表。[2.2.3](https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html) 起支持云文件ID。 */ + urls: string[] + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: PreviewImageCompleteCallback + /** 当前显示图片的链接 */ + current?: string + /** 接口调用失败的回调函数 */ + fail?: PreviewImageFailCallback + /** 是否显示长按菜单 + * + * 最低基础库: `2.13.0` */ + showmenu?: boolean + /** 接口调用成功的回调函数 */ + success?: PreviewImageSuccessCallback + } + interface PreviewMediaOption { + /** 需要预览的资源列表 */ + sources: MediaSource[] + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: PreviewMediaCompleteCallback + /** 当前显示的资源序号 */ + current?: number + /** 接口调用失败的回调函数 */ + fail?: PreviewMediaFailCallback + /** 是否显示长按菜单 + * + * 最低基础库: `2.13.0` */ + showmenu?: boolean + /** 接口调用成功的回调函数 */ + success?: PreviewMediaSuccessCallback + } + interface ReLaunchOption { + /** 需要跳转的应用内页面路径 (代码包路径),路径后可以带参数。参数与路径之间使用?分隔,参数键与参数值用=相连,不同参数用&分隔;如 'path?key=value&key2=value2' */ + url: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ReLaunchCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ReLaunchFailCallback + /** 接口调用成功的回调函数 */ + success?: ReLaunchSuccessCallback + } + interface ReadBLECharacteristicValueOption { + /** 蓝牙特征值的 uuid */ + characteristicId: string + /** 蓝牙设备 id */ + deviceId: string + /** 蓝牙特征值对应服务的 uuid */ + serviceId: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ReadBLECharacteristicValueCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ReadBLECharacteristicValueFailCallback + /** 接口调用成功的回调函数 */ + success?: ReadBLECharacteristicValueSuccessCallback + } + interface ReadFileFailCallbackResult { + /** 错误信息 + * + * 可选值: + * - 'fail no such file or directory, open ${filePath}': 指定的 filePath 所在目录不存在; + * - 'fail permission denied, open ${dirPath}': 指定的 filePath 路径没有读权限; + * - 'fail sdcard not mounted': Android sdcard 挂载失败; */ + errMsg: string + } + interface ReadFileOption { + /** 要读取的文件的路径 (本地路径) */ + filePath: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ReadFileCompleteCallback + /** 指定读取文件的字符编码,如果不传 encoding,则以 ArrayBuffer 格式读取文件的二进制内容 + * + * 可选值: + * - 'ascii': ; + * - 'base64': ; + * - 'binary': ; + * - 'hex': ; + * - 'ucs2': 以小端序读取; + * - 'ucs-2': 以小端序读取; + * - 'utf16le': 以小端序读取; + * - 'utf-16le': 以小端序读取; + * - 'utf-8': ; + * - 'utf8': ; + * - 'latin1': ; */ + encoding?: + | 'ascii' + | 'base64' + | 'binary' + | 'hex' + | 'ucs2' + | 'ucs-2' + | 'utf16le' + | 'utf-16le' + | 'utf-8' + | 'utf8' + | 'latin1' + /** 接口调用失败的回调函数 */ + fail?: ReadFileFailCallback + /** 指定文件的长度,如果不指定,则读到文件末尾。有效范围:[1, fileLength]。单位:byte + * + * 最低基础库: `2.10.0` */ + length?: number + /** 从文件指定位置开始读,如果不指定,则从文件头开始读。读取的范围应该是左闭右开区间 [position, position+length)。有效范围:[0, fileLength - 1]。单位:byte + * + * 最低基础库: `2.10.0` */ + position?: number + /** 接口调用成功的回调函数 */ + success?: ReadFileSuccessCallback + } + interface ReadFileSuccessCallbackResult { + /** 文件内容 */ + data: string | ArrayBuffer + errMsg: string + } + interface ReaddirFailCallbackResult { + /** 错误信息 + * + * 可选值: + * - 'fail no such file or directory ${dirPath}': 目录不存在; + * - 'fail not a directory ${dirPath}': dirPath 不是目录; + * - 'fail permission denied, open ${dirPath}': 指定的 filePath 路径没有读权限; + * - 'fail sdcard not mounted': Android sdcard 挂载失败; */ + errMsg: string + } + interface ReaddirOption { + /** 要读取的目录路径 (本地路径) */ + dirPath: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ReaddirCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ReaddirFailCallback + /** 接口调用成功的回调函数 */ + success?: ReaddirSuccessCallback + } + interface ReaddirSuccessCallbackResult { + /** 指定目录下的文件名数组。 */ + files: string[] + errMsg: string + } + interface RecorderManagerStartOption { + /** 指定录音的音频输入源,可通过 [wx.getAvailableAudioSources()](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/wx.getAvailableAudioSources.html) 获取当前可用的音频源 + * + * 可选值: + * - 'auto': 自动设置,默认使用手机麦克风,插上耳麦后自动切换使用耳机麦克风,所有平台适用; + * - 'buildInMic': 手机麦克风,仅限 iOS; + * - 'headsetMic': 有线耳机麦克风,仅限 iOS; + * - 'mic': 麦克风(没插耳麦时是手机麦克风,插耳麦时是耳机麦克风),仅限 Android; + * - 'camcorder': 同 mic,适用于录制音视频内容,仅限 Android; + * - 'voice_communication': 同 mic,适用于实时沟通,仅限 Android; + * - 'voice_recognition': 同 mic,适用于语音识别,仅限 Android; + * + * 最低基础库: `2.1.0` */ + audioSource?: + | 'auto' + | 'buildInMic' + | 'headsetMic' + | 'mic' + | 'camcorder' + | 'voice_communication' + | 'voice_recognition' + /** 录音的时长,单位 ms,最大值 600000(10 分钟) */ + duration?: number + /** 编码码率,有效值见下表格 */ + encodeBitRate?: number + /** 音频格式 + * + * 可选值: + * - 'mp3': mp3 格式; + * - 'aac': aac 格式; + * - 'wav': wav 格式; + * - 'PCM': pcm 格式; */ + format?: 'mp3' | 'aac' | 'wav' | 'PCM' + /** 指定帧大小,单位 KB。传入 frameSize 后,每录制指定帧大小的内容后,会回调录制的文件内容,不指定则不会回调。暂仅支持 mp3 格式。 */ + frameSize?: number + /** 录音通道数 + * + * 可选值: + * - 1: 1 个通道; + * - 2: 2 个通道; */ + numberOfChannels?: 1 | 2 + /** 采样率 + * + * 可选值: + * - 8000: 8000 采样率; + * - 11025: 11025 采样率; + * - 12000: 12000 采样率; + * - 16000: 16000 采样率; + * - 22050: 22050 采样率; + * - 24000: 24000 采样率; + * - 32000: 32000 采样率; + * - 44100: 44100 采样率; + * - 48000: 48000 采样率; */ + sampleRate?: + | 8000 + | 11025 + | 12000 + | 16000 + | 22050 + | 24000 + | 32000 + | 44100 + | 48000 + } + /** 菜单按钮的布局位置信息 */ + interface Rect { + /** 下边界坐标,单位:px */ + bottom: number + /** 高度,单位:px */ + height: number + /** 左边界坐标,单位:px */ + left: number + /** 右边界坐标,单位:px */ + right: number + /** 上边界坐标,单位:px */ + top: number + /** 宽度,单位:px */ + width: number + } + interface RedirectToOption { + /** 需要跳转的应用内非 tabBar 的页面的路径 (代码包路径), 路径后可以带参数。参数与路径之间使用 `?` 分隔,参数键与参数值用 `=` 相连,不同参数用 `&` 分隔;如 'path?key=value&key2=value2' */ + url: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: RedirectToCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: RedirectToFailCallback + /** 接口调用成功的回调函数 */ + success?: RedirectToSuccessCallback + } + interface RedoOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: RedoCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: RedoFailCallback + /** 接口调用成功的回调函数 */ + success?: RedoSuccessCallback + } + /** 来源信息。从另一个小程序、公众号或 App 进入小程序时返回。否则返回 `{}`。(参见后文注意) */ + interface ReferrerInfo { + /** 来源小程序、公众号或 App 的 appId */ + appId: string + /** 来源小程序传过来的数据,scene=1037或1038时支持 */ + extraData: IAnyObject + } + /** 参照区域的边界 */ + interface RelativeRectResult { + /** 下边界 */ + bottom: number + /** 左边界 */ + left: number + /** 右边界 */ + right: number + /** 上边界 */ + top: number + } + /** 消息来源的结构化信息 */ + interface RemoteInfo { + /** 发送消息的 socket 的地址 */ + address: string + /** 使用的协议族,为 IPv4 或者 IPv6 */ + family: string + /** 端口号 */ + port: number + /** message 的大小,单位:字节 */ + size: number + } + interface RemoveCustomLayerOption { + /** 个性化图层id */ + layerId: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: RemoveCustomLayerCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: RemoveCustomLayerFailCallback + /** 接口调用成功的回调函数 */ + success?: RemoveCustomLayerSuccessCallback + } + interface RemoveFormatOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: RemoveFormatCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: RemoveFormatFailCallback + /** 接口调用成功的回调函数 */ + success?: RemoveFormatSuccessCallback + } + interface RemoveGroundOverlayOption { + /** 图片图层 id */ + id: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: RemoveGroundOverlayCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: RemoveGroundOverlayFailCallback + /** 接口调用成功的回调函数 */ + success?: RemoveGroundOverlaySuccessCallback + } + interface RemoveMarkersOption { + /** marker 的 id 集合。 */ + markerIds: any[] + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: RemoveMarkersCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: RemoveMarkersFailCallback + /** 接口调用成功的回调函数 */ + success?: RemoveMarkersSuccessCallback + } + interface RemoveSavedFileFailCallbackResult { + /** 错误信息 + * + * 可选值: + * - 'fail file not exist': 指定的 tempFilePath 找不到文件; */ + errMsg: string + } + interface RemoveServiceOption { + /** service 的 uuid */ + serviceId: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: RemoveServiceCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: RemoveServiceFailCallback + /** 接口调用成功的回调函数 */ + success?: RemoveServiceSuccessCallback + } + interface RemoveStorageOption { + /** 本地缓存中指定的 key */ + key: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: RemoveStorageCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: RemoveStorageFailCallback + /** 接口调用成功的回调函数 */ + success?: RemoveStorageSuccessCallback + } + interface RemoveTabBarBadgeOption { + /** tabBar 的哪一项,从左边算起 */ + index: number + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: RemoveTabBarBadgeCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: RemoveTabBarBadgeFailCallback + /** 接口调用成功的回调函数 */ + success?: RemoveTabBarBadgeSuccessCallback + } + interface RenameFailCallbackResult { + /** 错误信息 + * + * 可选值: + * - 'fail permission denied, rename ${oldPath} -> ${newPath}': 指定源文件或目标文件没有写权限; + * - 'fail no such file or directory, rename ${oldPath} -> ${newPath}': 源文件不存在,或目标文件路径的上层目录不存在; */ + errMsg: string + } + interface RenameOption { + /** 新文件路径,支持本地路径 */ + newPath: string + /** 源文件路径,支持本地路径 */ + oldPath: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: RenameCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: RenameFailCallback + /** 接口调用成功的回调函数 */ + success?: RenameSuccessCallback + } + /** Canvas 绘图上下文。 + * + * **** + * + * - 通过 Canvas.getContext('2d') 接口可以获取 CanvasRenderingContext2D 对象,实现了 [HTML Canvas 2D Context](https://www.w3.org/TR/2dcontext/) 定义的属性、方法。 + * - 通过 Canvas.getContext('webgl') 或 OffscreenCanvas.getContext('webgl') 接口可以获取 WebGLRenderingContext 对象,实现了 [WebGL 1.0](https://www.khronos.org/registry/webgl/specs/latest/1.0/) 定义的所有属性、方法、常量。 + * - CanvasRenderingContext2D 的 drawImage 方法 2.10.0 起支持传入通过 [SelectorQuery](https://developers.weixin.qq.com/miniprogram/dev/api/wxml/SelectorQuery.html) 获取的 video 对象 + * + * **示例代码** + * + * + * + * video 画到 2D Canvas 示例 + * [在微信开发者工具中查看示例](https://developers.weixin.qq.com/s/tJTak7mU7sfX) */ + interface RenderingContext {} + interface RequestOption< + T extends string | IAnyObject | ArrayBuffer = + | string + | IAnyObject + | ArrayBuffer + > { + /** 开发者服务器接口地址 */ + url: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: RequestCompleteCallback + /** 请求的参数 */ + data?: string | IAnyObject | ArrayBuffer + /** 返回的数据格式 + * + * 可选值: + * - 'json': 返回的数据为 JSON,返回后会对返回的数据进行一次 JSON.parse; + * - '其他': 不对返回的内容进行 JSON.parse; */ + dataType?: 'json' | '其他' + /** 开启 cache + * + * 最低基础库: `2.10.4` */ + enableCache?: boolean + /** 开启 http2 + * + * 最低基础库: `2.10.4` */ + enableHttp2?: boolean + /** 开启 quic + * + * 最低基础库: `2.10.4` */ + enableQuic?: boolean + /** 接口调用失败的回调函数 */ + fail?: RequestFailCallback + /** 设置请求的 header,header 中不能设置 Referer。 + * + * `content-type` 默认为 `application/json` */ + header?: IAnyObject + /** HTTP 请求方法 + * + * 可选值: + * - 'OPTIONS': HTTP 请求 OPTIONS; + * - 'GET': HTTP 请求 GET; + * - 'HEAD': HTTP 请求 HEAD; + * - 'POST': HTTP 请求 POST; + * - 'PUT': HTTP 请求 PUT; + * - 'DELETE': HTTP 请求 DELETE; + * - 'TRACE': HTTP 请求 TRACE; + * - 'CONNECT': HTTP 请求 CONNECT; */ + method?: + | 'OPTIONS' + | 'GET' + | 'HEAD' + | 'POST' + | 'PUT' + | 'DELETE' + | 'TRACE' + | 'CONNECT' + /** 响应的数据类型 + * + * 可选值: + * - 'text': 响应的数据为文本; + * - 'arraybuffer': 响应的数据为 ArrayBuffer; + * + * 最低基础库: `1.7.0` */ + responseType?: 'text' | 'arraybuffer' + /** 接口调用成功的回调函数 */ + success?: RequestSuccessCallback + /** 超时时间,单位为毫秒 + * + * 最低基础库: `2.10.0` */ + timeout?: number + } + interface RequestPaymentOption { + /** 随机字符串,长度为32个字符以下 */ + nonceStr: string + /** 统一下单接口返回的 prepay_id 参数值,提交格式如:prepay_id=*** */ + package: string + /** 签名,具体见微信支付文档 */ + paySign: string + /** 时间戳,从 1970 年 1 月 1 日 00:00:00 至今的秒数,即当前的时间 */ + timeStamp: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: RequestPaymentCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: RequestPaymentFailCallback + /** 签名算法,应与后台下单时的值一致 + * + * 可选值: + * - 'MD5': 仅在 v2 版本接口适用; + * - 'HMAC-SHA256': 仅在 v2 版本接口适用; + * - 'RSA': 仅在 v3 版本接口适用; */ + signType?: 'MD5' | 'HMAC-SHA256' | 'RSA' + /** 接口调用成功的回调函数 */ + success?: RequestPaymentSuccessCallback + } + interface RequestPictureInPictureOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: RequestPictureInPictureCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: RequestPictureInPictureFailCallback + /** 接口调用成功的回调函数 */ + success?: RequestPictureInPictureSuccessCallback + } + /** 网络请求过程中一些调试信息 + * + * 最低基础库: `2.10.4` */ + interface RequestProfile { + /** SSL建立完成的时间,如果不是安全连接,则值为 0 */ + SSLconnectionEnd: number + /** SSL建立连接的时间,如果不是安全连接,则值为 0 */ + SSLconnectionStart: number + /** HTTP(TCP) 完成建立连接的时间(完成握手),如果是持久连接,则与 fetchStart 值相等。注意如果在传输层发生了错误且重新建立连接,则这里显示的是新建立的连接完成的时间。注意这里握手结束,包括安全连接建立完成、SOCKS 授权通过 */ + connectEnd: number + /** HTTP(TCP) 开始建立连接的时间,如果是持久连接,则与 fetchStart 值相等。注意如果在传输层发生了错误且重新建立连接,则这里显示的是新建立的连接开始的时间 */ + connectStart: number + /** DNS 域名查询完成的时间,如果使用了本地缓存(即无 DNS 查询)或持久连接,则与 fetchStart 值相等 */ + domainLookupEnd: number + /** DNS 域名查询开始的时间,如果使用了本地缓存(即无 DNS 查询)或持久连接,则与 fetchStart 值相等 */ + domainLookupStart: number + /** 评估当前网络下载的kbps */ + downstreamThroughputKbpsEstimate: number + /** 评估的网络状态 slow 2g/2g/3g/4g */ + estimate_nettype: string + /** 组件准备好使用 HTTP 请求抓取资源的时间,这发生在检查本地缓存之前 */ + fetchStart: number + /** 协议层根据多个请求评估当前网络的 rtt(仅供参考) */ + httpRttEstimate: number + /** 当前请求的IP */ + peerIP: string + /** 当前请求的端口 */ + port: number + /** 收到字节数 */ + receivedBytedCount: number + /** 最后一个 HTTP 重定向完成时的时间。有跳转且是同域名内部的重定向才算,否则值为 0 */ + redirectEnd: number + /** 第一个 HTTP 重定向发生时的时间。有跳转且是同域名内的重定向才算,否则值为 0 */ + redirectStart: number + /** HTTP请求读取真实文档结束的时间 */ + requestEnd: number + /** HTTP请求读取真实文档开始的时间(完成建立连接),包括从本地读取缓存。连接错误重连时,这里显示的也是新建立连接的时间 */ + requestStart: number + /** HTTP 响应全部接收完成的时间(获取到最后一个字节),包括从本地读取缓存 */ + responseEnd: number + /** HTTP 开始接收响应的时间(获取到第一个字节),包括从本地读取缓存 */ + responseStart: number + /** 当次请求连接过程中实时 rtt */ + rtt: number + /** 发送的字节数 */ + sendBytesCount: number + /** 是否复用连接 */ + socketReused: boolean + /** 当前网络的实际下载kbps */ + throughputKbps: number + /** 传输层根据多个请求评估的当前网络的 rtt(仅供参考) */ + transportRttEstimate: number + } + interface RequestSubscribeMessageFailCallbackResult { + /** 接口调用失败错误码 */ + errCode: number + /** 接口调用失败错误信息 */ + errMsg: string + } + interface RequestSubscribeMessageOption { + /** 需要订阅的消息模板的id的集合,一次调用最多可订阅3条消息(注意:iOS客户端7.0.6版本、Android客户端7.0.7版本之后的一次性订阅/长期订阅才支持多个模板消息,iOS客户端7.0.5版本、Android客户端7.0.6版本之前的一次订阅只支持一个模板消息)消息模板id在[微信公众平台(mp.weixin.qq.com)-功能-订阅消息]中配置。每个tmplId对应的模板标题需要不相同,否则会被过滤。 */ + tmplIds: any[] + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: RequestSubscribeMessageCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: RequestSubscribeMessageFailCallback + /** 接口调用成功的回调函数 */ + success?: RequestSubscribeMessageSuccessCallback + } + interface RequestSubscribeMessageSuccessCallbackResult { + /** [TEMPLATE_ID]是动态的键,即模板id,值包括'accept'、'reject'、'ban'、'filter'。'accept'表示用户同意订阅该条id对应的模板消息,'reject'表示用户拒绝订阅该条id对应的模板消息,'ban'表示已被后台封禁,'filter'表示该模板因为模板标题同名被后台过滤。例如 { errMsg: "requestSubscribeMessage:ok", zun-LzcQyW-edafCVvzPkK4de2Rllr1fFpw2A_x0oXE: "accept"} 表示用户同意订阅zun-LzcQyW-edafCVvzPkK4de2Rllr1fFpw2A_x0oXE这条消息 */ + [TEMPLATE_ID: string]: string + /** 接口调用成功时errMsg值为'requestSubscribeMessage:ok' */ + errMsg: string + } + interface RequestSuccessCallbackResult< + T extends string | IAnyObject | ArrayBuffer = + | string + | IAnyObject + | ArrayBuffer + > { + /** 开发者服务器返回的 cookies,格式为字符串数组 + * + * 最低基础库: `2.10.0` */ + cookies: string[] + /** 开发者服务器返回的数据 */ + data: T + /** 开发者服务器返回的 HTTP Response Header + * + * 最低基础库: `1.2.0` */ + header: IAnyObject + /** 网络请求过程中一些调试信息 + * + * 最低基础库: `2.10.4` */ + profile: RequestProfile + /** 开发者服务器返回的 HTTP 状态码 */ + statusCode: number + errMsg: string + } + interface ResumeBGMOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ResumeBGMCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ResumeBGMFailCallback + /** 接口调用成功的回调函数 */ + success?: ResumeBGMSuccessCallback + } + interface ResumeOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ResumeCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ResumeFailCallback + /** 接口调用成功的回调函数 */ + success?: ResumeSuccessCallback + } + interface RewardedVideoAdOnCloseCallbackResult { + /** 视频是否是在用户完整观看的情况下被关闭的 + * + * 最低基础库: `2.1.0` */ + isEnded: boolean + } + interface RewardedVideoAdOnErrorCallbackResult { + /** 错误码 + * + * 可选值: + * - 1000: 后端接口调用失败; + * - 1001: 参数错误; + * - 1002: 广告单元无效; + * - 1003: 内部错误; + * - 1004: 无合适的广告; + * - 1005: 广告组件审核中; + * - 1006: 广告组件被驳回; + * - 1007: 广告组件被封禁; + * - 1008: 广告单元已关闭; + * + * 最低基础库: `2.2.2` */ + errCode: 1000 | 1001 | 1002 | 1003 | 1004 | 1005 | 1006 | 1007 | 1008 + /** 错误信息 */ + errMsg: string + } + interface RmdirFailCallbackResult { + /** 错误信息 + * + * 可选值: + * - 'fail no such file or directory ${dirPath}': 目录不存在; + * - 'fail directory not empty': 目录不为空; + * - 'fail permission denied, open ${dirPath}': 指定的 dirPath 路径没有写权限; + * - 'fail sdcard not mounted': Android sdcard 挂载失败; */ + errMsg: string + } + interface RmdirOption { + /** 要删除的目录路径 (本地路径) */ + dirPath: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: RmdirCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: RmdirFailCallback + /** 是否递归删除目录。如果为 true,则删除该目录和该目录下的所有子目录以及文件。 + * + * 最低基础库: `2.3.0` */ + recursive?: boolean + /** 接口调用成功的回调函数 */ + success?: RmdirSuccessCallback + } + /** 在竖屏正方向下的安全区域 + * + * 最低基础库: `2.7.0` */ + interface SafeArea { + /** 安全区域右下角纵坐标 */ + bottom: number + /** 安全区域的高度,单位逻辑像素 */ + height: number + /** 安全区域左上角横坐标 */ + left: number + /** 安全区域右下角横坐标 */ + right: number + /** 安全区域左上角纵坐标 */ + top: number + /** 安全区域的宽度,单位逻辑像素 */ + width: number + } + interface SaveFileFailCallbackResult { + /** 错误信息 + * + * 可选值: + * - 'fail tempFilePath file not exist': 指定的 tempFilePath 找不到文件; + * - 'fail permission denied, open "${filePath}"': 指定的 filePath 路径没有写权限; + * - 'fail no such file or directory "${dirPath}"': 上级目录不存在; + * - 'fail the maximum size of the file storage limit is exceeded': 存储空间不足; + * - 'fail sdcard not mounted': Android sdcard 挂载失败; */ + errMsg: string + } + interface SaveFileSuccessCallbackResult { + /** 存储后的文件路径 (本地路径) */ + savedFilePath: string + errMsg: string + } + interface SaveFileToDiskOption { + /** 待保存文件路径 */ + filePath: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SaveFileToDiskCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SaveFileToDiskFailCallback + /** 接口调用成功的回调函数 */ + success?: SaveFileToDiskSuccessCallback + } + interface SaveImageToPhotosAlbumOption { + /** 图片文件路径,可以是临时文件路径或永久文件路径 (本地路径) ,不支持网络路径 */ + filePath: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SaveImageToPhotosAlbumCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SaveImageToPhotosAlbumFailCallback + /** 接口调用成功的回调函数 */ + success?: SaveImageToPhotosAlbumSuccessCallback + } + interface SaveVideoToPhotosAlbumOption { + /** 视频文件路径,可以是临时文件路径也可以是永久文件路径 (本地路径) */ + filePath: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SaveVideoToPhotosAlbumCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SaveVideoToPhotosAlbumFailCallback + /** 接口调用成功的回调函数 */ + success?: SaveVideoToPhotosAlbumSuccessCallback + } + interface ScanCodeOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ScanCodeCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ScanCodeFailCallback + /** 是否只能从相机扫码,不允许从相册选择图片 + * + * 最低基础库: `1.2.0` */ + onlyFromCamera?: boolean + /** 扫码类型 + * + * 可选值: + * - 'barCode': 一维码; + * - 'qrCode': 二维码; + * - 'datamatrix': Data Matrix 码; + * - 'pdf417': PDF417 条码; + * + * 最低基础库: `1.7.0` */ + scanType?: Array<'barCode' | 'qrCode' | 'datamatrix' | 'pdf417'> + /** 接口调用成功的回调函数 */ + success?: ScanCodeSuccessCallback + } + interface ScanCodeSuccessCallbackResult { + /** 所扫码的字符集 */ + charSet: string + /** 当所扫的码为当前小程序二维码时,会返回此字段,内容为二维码携带的 path */ + path: string + /** 原始数据,base64编码 */ + rawData: string + /** 所扫码的内容 */ + result: string + /** 所扫码的类型 + * + * 可选值: + * - 'QR_CODE': 二维码; + * - 'AZTEC': 一维码; + * - 'CODABAR': 一维码; + * - 'CODE_39': 一维码; + * - 'CODE_93': 一维码; + * - 'CODE_128': 一维码; + * - 'DATA_MATRIX': 二维码; + * - 'EAN_8': 一维码; + * - 'EAN_13': 一维码; + * - 'ITF': 一维码; + * - 'MAXICODE': 一维码; + * - 'PDF_417': 二维码; + * - 'RSS_14': 一维码; + * - 'RSS_EXPANDED': 一维码; + * - 'UPC_A': 一维码; + * - 'UPC_E': 一维码; + * - 'UPC_EAN_EXTENSION': 一维码; + * - 'WX_CODE': 二维码; + * - 'CODE_25': 一维码; */ + scanType: + | 'QR_CODE' + | 'AZTEC' + | 'CODABAR' + | 'CODE_39' + | 'CODE_93' + | 'CODE_128' + | 'DATA_MATRIX' + | 'EAN_8' + | 'EAN_13' + | 'ITF' + | 'MAXICODE' + | 'PDF_417' + | 'RSS_14' + | 'RSS_EXPANDED' + | 'UPC_A' + | 'UPC_E' + | 'UPC_EAN_EXTENSION' + | 'WX_CODE' + | 'CODE_25' + errMsg: string + } + interface ScrollOffsetCallbackResult { + /** 节点的 dataset */ + dataset: IAnyObject + /** 节点的 ID */ + id: string + /** 节点的水平滚动位置 */ + scrollLeft: number + /** 节点的竖直滚动位置 */ + scrollTop: number + } + interface ScrollToOption { + /** 是否启用滚动动画 */ + animated?: boolean + /** 滚动动画时长 */ + duration?: number + /** 左边界距离 */ + left?: number + /** 顶部距离 */ + top?: number + /** 初始速度 */ + velocity?: number + } + /** 增强 ScrollView 实例 + * + * 最低基础库: `2.14.4` */ + interface ScrollViewContext { + /** 设置滚动边界弹性 (仅在 iOS 下生效) */ + bounces: boolean + /** 取消滚动惯性 (仅在 iOS 下生效) */ + decelerationDisabled: boolean + /** 设置滚动减速速率 */ + fastDeceleration: boolean + /** 分页滑动开关 */ + pagingEnabled: boolean + /** 滚动开关 */ + scrollEnabled: boolean + /** 设置是否显示滚动条 */ + showScrollbar: boolean + } + interface SeekBackgroundAudioOption { + /** 音乐位置,单位:秒 */ + position: number + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SeekBackgroundAudioCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SeekBackgroundAudioFailCallback + /** 接口调用成功的回调函数 */ + success?: SeekBackgroundAudioSuccessCallback + } + interface SendHCEMessageOption { + /** 二进制数据 */ + data: ArrayBuffer + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SendHCEMessageCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SendHCEMessageFailCallback + /** 接口调用成功的回调函数 */ + success?: SendHCEMessageSuccessCallback + } + interface SendMessageOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SendMessageCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SendMessageFailCallback + /** 接口调用成功的回调函数 */ + success?: SendMessageSuccessCallback + } + interface SendSocketMessageOption { + /** 需要发送的内容 */ + data: string | ArrayBuffer + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SendSocketMessageCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SendSocketMessageFailCallback + /** 接口调用成功的回调函数 */ + success?: SendSocketMessageSuccessCallback + } + interface SetBGMVolumeOption { + /** 音量大小,范围是 0-1 */ + volume: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SetBGMVolumeCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SetBGMVolumeFailCallback + /** 接口调用成功的回调函数 */ + success?: SetBGMVolumeSuccessCallback + } + interface SetBLEMTUOption { + /** 用于区分设备的 id */ + deviceId: string + /** 最大传输单元(22,512) 区间内,单位 bytes */ + mtu: number + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SetBLEMTUCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SetBLEMTUFailCallback + /** 接口调用成功的回调函数 */ + success?: SetBLEMTUSuccessCallback + } + interface SetBackgroundColorOption { + /** 窗口的背景色,必须为十六进制颜色值 */ + backgroundColor?: string + /** 底部窗口的背景色,必须为十六进制颜色值,仅 iOS 支持 */ + backgroundColorBottom?: string + /** 顶部窗口的背景色,必须为十六进制颜色值,仅 iOS 支持 */ + backgroundColorTop?: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SetBackgroundColorCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SetBackgroundColorFailCallback + /** 接口调用成功的回调函数 */ + success?: SetBackgroundColorSuccessCallback + } + interface SetBackgroundFetchTokenOption { + /** 自定义的登录态 */ + token: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SetBackgroundFetchTokenCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SetBackgroundFetchTokenFailCallback + /** 接口调用成功的回调函数 */ + success?: SetBackgroundFetchTokenSuccessCallback + } + interface SetBackgroundTextStyleOption { + /** 下拉背景字体、loading 图的样式。 + * + * 可选值: + * - 'dark': dark 样式; + * - 'light': light 样式; */ + textStyle: 'dark' | 'light' + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SetBackgroundTextStyleCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SetBackgroundTextStyleFailCallback + /** 接口调用成功的回调函数 */ + success?: SetBackgroundTextStyleSuccessCallback + } + interface SetCenterOffsetOption { + /** 偏移量,两位数组 */ + offset: number[] + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SetCenterOffsetCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SetCenterOffsetFailCallback + /** 接口调用成功的回调函数 */ + success?: SetCenterOffsetSuccessCallback + } + interface SetClipboardDataOption { + /** 剪贴板的内容 */ + data: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SetClipboardDataCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SetClipboardDataFailCallback + /** 接口调用成功的回调函数 */ + success?: SetClipboardDataSuccessCallback + } + interface SetContentsOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SetContentsCompleteCallback + /** 表示内容的delta对象 */ + delta?: IAnyObject + /** 接口调用失败的回调函数 */ + fail?: SetContentsFailCallback + /** 带标签的HTML内容 */ + html?: string + /** 接口调用成功的回调函数 */ + success?: SetContentsSuccessCallback + } + interface SetEnableDebugOption { + /** 是否打开调试 */ + enableDebug: boolean + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SetEnableDebugCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SetEnableDebugFailCallback + /** 接口调用成功的回调函数 */ + success?: SetEnableDebugSuccessCallback + } + interface SetInnerAudioOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SetInnerAudioOptionCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SetInnerAudioOptionFailCallback + /** 是否与其他音频混播,设置为 true 之后,不会终止其他应用或微信内的音乐 */ + mixWithOther?: boolean + /** (仅在 iOS 生效)是否遵循静音开关,设置为 false 之后,即使是在静音模式下,也能播放声音 */ + obeyMuteSwitch?: boolean + /** true 代表用扬声器播放,false 代表听筒播放,默认值为 true。 */ + speakerOn?: boolean + /** 接口调用成功的回调函数 */ + success?: SetInnerAudioOptionSuccessCallback + } + interface SetKeepScreenOnOption { + /** 是否保持屏幕常亮 */ + keepScreenOn: boolean + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SetKeepScreenOnCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SetKeepScreenOnFailCallback + /** 接口调用成功的回调函数 */ + success?: SetKeepScreenOnSuccessCallback + } + interface SetMICVolumeOption { + /** 音量大小,范围是 0.0-1.0 */ + volume: number + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SetMICVolumeCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SetMICVolumeFailCallback + /** 接口调用成功的回调函数 */ + success?: SetMICVolumeSuccessCallback + } + interface SetNavigationBarColorOption { + /** 背景颜色值,有效值为十六进制颜色 */ + backgroundColor: string + /** 前景颜色值,包括按钮、标题、状态栏的颜色,仅支持 #ffffff 和 #000000 */ + frontColor: string + /** 动画效果 */ + animation?: AnimationOption + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SetNavigationBarColorCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SetNavigationBarColorFailCallback + /** 接口调用成功的回调函数 */ + success?: SetNavigationBarColorSuccessCallback + } + interface SetNavigationBarTitleOption { + /** 页面标题 */ + title: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SetNavigationBarTitleCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SetNavigationBarTitleFailCallback + /** 接口调用成功的回调函数 */ + success?: SetNavigationBarTitleSuccessCallback + } + interface SetScreenBrightnessOption { + /** 屏幕亮度值,范围 0 ~ 1。0 最暗,1 最亮 */ + value: number + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SetScreenBrightnessCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SetScreenBrightnessFailCallback + /** 接口调用成功的回调函数 */ + success?: SetScreenBrightnessSuccessCallback + } + interface SetStorageOption { + /** 需要存储的内容。只支持原生类型、Date、及能够通过`JSON.stringify`序列化的对象。 */ + data: T + /** 本地缓存中指定的 key */ + key: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SetStorageCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SetStorageFailCallback + /** 接口调用成功的回调函数 */ + success?: SetStorageSuccessCallback + } + interface SetTabBarBadgeOption { + /** tabBar 的哪一项,从左边算起 */ + index: number + /** 显示的文本,超过 4 个字符则显示成 ... */ + text: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SetTabBarBadgeCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SetTabBarBadgeFailCallback + /** 接口调用成功的回调函数 */ + success?: SetTabBarBadgeSuccessCallback + } + interface SetTabBarItemOption { + /** tabBar 的哪一项,从左边算起 */ + index: number + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SetTabBarItemCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SetTabBarItemFailCallback + /** 图片路径,icon 大小限制为 40kb,建议尺寸为 81px * 81px,当 postion 为 top 时,此参数无效 */ + iconPath?: string + /** 选中时的图片路径,icon 大小限制为 40kb,建议尺寸为 81px * 81px ,当 postion 为 top 时,此参数无效 */ + selectedIconPath?: string + /** 接口调用成功的回调函数 */ + success?: SetTabBarItemSuccessCallback + /** tab 上的按钮文字 */ + text?: string + } + interface SetTabBarStyleOption { + /** tab 的背景色,HexColor */ + backgroundColor?: string + /** tabBar上边框的颜色, 仅支持 black/white */ + borderStyle?: string + /** tab 上的文字默认颜色,HexColor */ + color?: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SetTabBarStyleCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SetTabBarStyleFailCallback + /** tab 上的文字选中时的颜色,HexColor */ + selectedColor?: string + /** 接口调用成功的回调函数 */ + success?: SetTabBarStyleSuccessCallback + } + interface SetTimeoutOption { + /** 设置超时时间 (ms) */ + timeout: number + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SetTimeoutCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SetTimeoutFailCallback + /** 接口调用成功的回调函数 */ + success?: SetTimeoutSuccessCallback + } + interface SetTopBarTextOption { + /** 置顶栏文字 */ + text: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SetTopBarTextCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SetTopBarTextFailCallback + /** 接口调用成功的回调函数 */ + success?: SetTopBarTextSuccessCallback + } + interface SetWifiListOption { + /** 提供预设的 Wi-Fi 信息列表 */ + wifiList: WifiData[] + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SetWifiListCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SetWifiListFailCallback + /** 接口调用成功的回调函数 */ + success?: SetWifiListSuccessCallback + } + interface SetWindowSizeOption { + /** 窗口高度,以像素为单位 */ + height: number + /** 窗口宽度,以像素为单位 */ + width: number + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SetWindowSizeCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SetWindowSizeFailCallback + /** 接口调用成功的回调函数 */ + success?: SetWindowSizeSuccessCallback + } + interface SetZoomOption { + /** 缩放级别,范围[1, maxZoom]。zoom 可取小数,精确到小数后一位。maxZoom 可在 bindinitdone 返回值中获取。 */ + zoom: number + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SetZoomCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SetZoomFailCallback + /** 接口调用成功的回调函数 */ + success?: SetZoomSuccessCallback + } + interface SetZoomSuccessCallbackResult { + /** 实际设置的缩放级别。由于系统限制,某些机型可能无法设置成指定值,会改用最接近的可设值。 */ + zoom: number + errMsg: string + } + interface ShowActionSheetOption { + /** 按钮的文字数组,数组长度最大为 6 */ + itemList: string[] + /** 警示文案 + * + * 最低基础库: `2.14.0` */ + alertText?: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ShowActionSheetCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ShowActionSheetFailCallback + /** 按钮的文字颜色 */ + itemColor?: string + /** 接口调用成功的回调函数 */ + success?: ShowActionSheetSuccessCallback + } + interface ShowActionSheetSuccessCallbackResult { + /** 用户点击的按钮序号,从上到下的顺序,从0开始 */ + tapIndex: number + errMsg: string + } + interface ShowLoadingOption { + /** 提示的内容 */ + title: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ShowLoadingCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ShowLoadingFailCallback + /** 是否显示透明蒙层,防止触摸穿透 */ + mask?: boolean + /** 接口调用成功的回调函数 */ + success?: ShowLoadingSuccessCallback + } + interface ShowModalOption { + /** 取消按钮的文字颜色,必须是 16 进制格式的颜色字符串 */ + cancelColor?: string + /** 取消按钮的文字,最多 4 个字符 */ + cancelText?: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ShowModalCompleteCallback + /** 确认按钮的文字颜色,必须是 16 进制格式的颜色字符串 */ + confirmColor?: string + /** 确认按钮的文字,最多 4 个字符 */ + confirmText?: string + /** 提示的内容,editable 为 true 时,会输入框默认文本 */ + content?: string + /** 是否显示输入框 + * + * 最低基础库: `2.15.0` */ + editable?: boolean + /** 接口调用失败的回调函数 */ + fail?: ShowModalFailCallback + /** 输入框提示文本 + * + * 最低基础库: `2.15.0` */ + placeholderText?: string + /** 是否显示取消按钮 */ + showCancel?: boolean + /** 接口调用成功的回调函数 */ + success?: ShowModalSuccessCallback + /** 提示的标题 */ + title?: string + } + interface ShowModalSuccessCallbackResult { + /** 为 true 时,表示用户点击了取消(用于 Android 系统区分点击蒙层关闭还是点击取消按钮关闭) + * + * 最低基础库: `1.1.0` */ + cancel: boolean + /** 为 true 时,表示用户点击了确定按钮 */ + confirm: boolean + /** editable 为 true 时,用户输入的文本 */ + content: string + errMsg: string + } + interface ShowNavigationBarLoadingOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ShowNavigationBarLoadingCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ShowNavigationBarLoadingFailCallback + /** 接口调用成功的回调函数 */ + success?: ShowNavigationBarLoadingSuccessCallback + } + interface ShowRedPackageOption { + /** 封面地址 */ + url: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ShowRedPackageCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ShowRedPackageFailCallback + /** 接口调用成功的回调函数 */ + success?: ShowRedPackageSuccessCallback + } + interface ShowShareImageMenuOption { + /** 要分享的图片地址,必须为本地路径或临时路径 */ + path: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ShowShareImageMenuCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ShowShareImageMenuFailCallback + /** 接口调用成功的回调函数 */ + success?: ShowShareImageMenuSuccessCallback + } + interface ShowShareMenuOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ShowShareMenuCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ShowShareMenuFailCallback + /** 本接口为 Beta 版本,暂只在 Android 平台支持。需要显示的转发按钮名称列表,默认['shareAppMessage']。按钮名称合法值包含 "shareAppMessage"、"shareTimeline" 两种 + * + * 最低基础库: `2.11.3` */ + menus?: string[] + /** 接口调用成功的回调函数 */ + success?: ShowShareMenuSuccessCallback + /** 是否使用带 shareTicket 的转发[详情](https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share.html) */ + withShareTicket?: boolean + } + interface ShowTabBarOption { + /** 是否需要动画效果 */ + animation?: boolean + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ShowTabBarCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ShowTabBarFailCallback + /** 接口调用成功的回调函数 */ + success?: ShowTabBarSuccessCallback + } + interface ShowTabBarRedDotOption { + /** tabBar 的哪一项,从左边算起 */ + index: number + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ShowTabBarRedDotCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ShowTabBarRedDotFailCallback + /** 接口调用成功的回调函数 */ + success?: ShowTabBarRedDotSuccessCallback + } + interface ShowToastOption { + /** 提示的内容 */ + title: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ShowToastCompleteCallback + /** 提示的延迟时间 */ + duration?: number + /** 接口调用失败的回调函数 */ + fail?: ShowToastFailCallback + /** 图标 + * + * 可选值: + * - 'success': 显示成功图标,此时 title 文本最多显示 7 个汉字长度; + * - 'error': 显示失败图标,此时 title 文本最多显示 7 个汉字长度; + * - 'loading': 显示加载图标,此时 title 文本最多显示 7 个汉字长度; + * - 'none': 不显示图标,此时 title 文本最多可显示两行,[1.9.0](https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html)及以上版本支持; */ + icon?: 'success' | 'error' | 'loading' | 'none' + /** 自定义图标的本地路径,image 的优先级高于 icon + * + * 最低基础库: `1.1.0` */ + image?: string + /** 是否显示透明蒙层,防止触摸穿透 */ + mask?: boolean + /** 接口调用成功的回调函数 */ + success?: ShowToastSuccessCallback + } + interface Size { + /** 变化后的窗口高度,单位 px */ + windowHeight: number + /** 变化后的窗口宽度,单位 px */ + windowWidth: number + } + /** 网络请求过程中一些调试信息 + * + * 最低基础库: `2.10.4` */ + interface SocketProfile { + /** 完成建立连接的时间(完成握手),如果是持久连接,则与 fetchStart 值相等。注意如果在传输层发生了错误且重新建立连接,则这里显示的是新建立的连接完成的时间。注意这里握手结束,包括安全连接建立完成、SOCKS 授权通过 */ + connectEnd: number + /** 开始建立连接的时间,如果是持久连接,则与 fetchStart 值相等。注意如果在传输层发生了错误且重新建立连接,则这里显示的是新建立的连接开始的时间 */ + connectStart: number + /** 上层请求到返回的耗时 */ + cost: number + /** DNS 域名查询完成的时间,如果使用了本地缓存(即无 DNS 查询)或持久连接,则与 fetchStart 值相等 */ + domainLookupEnd: number + /** DNS 域名查询开始的时间,如果使用了本地缓存(即无 DNS 查询)或持久连接,则与 fetchStart 值相等 */ + domainLookupStart: number + /** 组件准备好使用 SOCKET 建立请求的时间,这发生在检查本地缓存之前 */ + fetchStart: number + /** 握手耗时 */ + handshakeCost: number + /** 单次连接的耗时,包括 connect ,tls */ + rtt: number + } + interface SocketTaskCloseOption { + /** 一个数字值表示关闭连接的状态号,表示连接被关闭的原因。 */ + code?: number + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SocketTaskCloseCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SocketTaskCloseFailCallback + /** 一个可读的字符串,表示连接被关闭的原因。这个字符串必须是不长于 123 字节的 UTF-8 文本(不是字符)。 */ + reason?: string + /** 接口调用成功的回调函数 */ + success?: SocketTaskCloseSuccessCallback + } + interface SocketTaskOnCloseCallbackResult { + /** 一个数字值表示关闭连接的状态号,表示连接被关闭的原因。 */ + code: number + /** 一个可读的字符串,表示连接被关闭的原因。 */ + reason: string + } + interface SocketTaskOnMessageCallbackResult { + /** 服务器返回的消息 */ + data: string | ArrayBuffer + } + interface SocketTaskSendOption { + /** 需要发送的内容 */ + data: string | ArrayBuffer + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SendCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SendFailCallback + /** 接口调用成功的回调函数 */ + success?: SendSuccessCallback + } + interface StartAccelerometerOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StartAccelerometerCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StartAccelerometerFailCallback + /** 监听加速度数据回调函数的执行频率 + * + * 可选值: + * - 'game': 适用于更新游戏的回调频率,在 20ms/次 左右; + * - 'ui': 适用于更新 UI 的回调频率,在 60ms/次 左右; + * - 'normal': 普通的回调频率,在 200ms/次 左右; + * + * 最低基础库: `2.1.0` */ + interval?: 'game' | 'ui' | 'normal' + /** 接口调用成功的回调函数 */ + success?: StartAccelerometerSuccessCallback + } + interface StartAdvertisingObject { + /** 广播自定义参数 */ + advertiseRequest: AdvertiseReqObj + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StartAdvertisingCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StartAdvertisingFailCallback + /** 广播功率 + * + * 可选值: + * - 'low': 功率低; + * - 'medium': 功率适中; + * - 'high': 功率高; */ + powerLevel?: 'low' | 'medium' | 'high' + /** 接口调用成功的回调函数 */ + success?: StartAdvertisingSuccessCallback + } + interface StartBeaconDiscoveryOption { + /** iBeacon 设备广播的 uuid 列表 */ + uuids: string[] + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StartBeaconDiscoveryCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StartBeaconDiscoveryFailCallback + /** 是否校验蓝牙开关,仅在 iOS 下有效 */ + ignoreBluetoothAvailable?: boolean + /** 接口调用成功的回调函数 */ + success?: StartBeaconDiscoverySuccessCallback + } + interface StartBluetoothDevicesDiscoveryOption { + /** 是否允许重复上报同一设备。如果允许重复上报,则 [wx.onBlueToothDeviceFound](#) 方法会多次上报同一设备,但是 RSSI 值会有不同。 */ + allowDuplicatesKey?: boolean + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StartBluetoothDevicesDiscoveryCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StartBluetoothDevicesDiscoveryFailCallback + /** 上报设备的间隔。0 表示找到新设备立即上报,其他数值根据传入的间隔上报。 */ + interval?: number + /** 扫描模式,越高扫描越快,也越耗电, 仅安卓 7.0.12 及以上支持。 + * + * 可选值: + * - 'low': 低; + * - 'medium': 中; + * - 'high': 高; */ + powerLevel?: 'low' | 'medium' | 'high' + /** 要搜索的蓝牙设备主 service 的 uuid 列表。某些蓝牙设备会广播自己的主 service 的 uuid。如果设置此参数,则只搜索广播包有对应 uuid 的主服务的蓝牙设备。建议主要通过该参数过滤掉周边不需要处理的其他蓝牙设备。 */ + services?: string[] + /** 接口调用成功的回调函数 */ + success?: StartBluetoothDevicesDiscoverySuccessCallback + } + interface StartCompassOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StartCompassCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StartCompassFailCallback + /** 接口调用成功的回调函数 */ + success?: StartCompassSuccessCallback + } + interface StartDeviceMotionListeningOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StartDeviceMotionListeningCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StartDeviceMotionListeningFailCallback + /** 监听设备方向的变化回调函数的执行频率 + * + * 可选值: + * - 'game': 适用于更新游戏的回调频率,在 20ms/次 左右; + * - 'ui': 适用于更新 UI 的回调频率,在 60ms/次 左右; + * - 'normal': 普通的回调频率,在 200ms/次 左右; */ + interval?: 'game' | 'ui' | 'normal' + /** 接口调用成功的回调函数 */ + success?: StartDeviceMotionListeningSuccessCallback + } + interface StartDiscoveryOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StartDiscoveryCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StartDiscoveryFailCallback + /** 接口调用成功的回调函数 */ + success?: StartDiscoverySuccessCallback + } + interface StartGyroscopeOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StartGyroscopeCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StartGyroscopeFailCallback + /** 监听陀螺仪数据回调函数的执行频率 + * + * 可选值: + * - 'game': 适用于更新游戏的回调频率,在 20ms/次 左右; + * - 'ui': 适用于更新 UI 的回调频率,在 60ms/次 左右; + * - 'normal': 普通的回调频率,在 200ms/次 左右; */ + interval?: 'game' | 'ui' | 'normal' + /** 接口调用成功的回调函数 */ + success?: StartGyroscopeSuccessCallback + } + interface StartHCEOption { + /** 需要注册到系统的 AID 列表 */ + aid_list: string[] + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StartHCECompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StartHCEFailCallback + /** 接口调用成功的回调函数 */ + success?: StartHCESuccessCallback + } + interface StartLocalServiceDiscoveryFailCallbackResult { + /** 错误信息 + * + * 可选值: + * - 'invalid param': serviceType 为空; + * - 'scan task already exist': 在当前 startLocalServiceDiscovery 发起的搜索未停止的情况下,再次调用 startLocalServiceDiscovery; */ + errMsg: string + } + interface StartLocalServiceDiscoveryOption { + /** 要搜索的服务类型 */ + serviceType: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StartLocalServiceDiscoveryCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StartLocalServiceDiscoveryFailCallback + /** 接口调用成功的回调函数 */ + success?: StartLocalServiceDiscoverySuccessCallback + } + interface StartLocationUpdateBackgroundOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StartLocationUpdateBackgroundCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StartLocationUpdateBackgroundFailCallback + /** 接口调用成功的回调函数 */ + success?: StartLocationUpdateBackgroundSuccessCallback + } + interface StartLocationUpdateOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StartLocationUpdateCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StartLocationUpdateFailCallback + /** 接口调用成功的回调函数 */ + success?: StartLocationUpdateSuccessCallback + } + interface StartPreviewOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StartPreviewCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StartPreviewFailCallback + /** 接口调用成功的回调函数 */ + success?: StartPreviewSuccessCallback + } + interface StartPullDownRefreshOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StartPullDownRefreshCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StartPullDownRefreshFailCallback + /** 接口调用成功的回调函数 */ + success?: StartPullDownRefreshSuccessCallback + } + interface StartRecordSuccessCallbackResult { + /** 录音文件的临时路径 (本地路径) */ + tempFilePath: string + errMsg: string + } + interface StartRecordTimeoutCallbackResult { + /** 封面图片文件的临时路径 (本地路径) */ + tempThumbPath: string + /** 视频的文件的临时路径 (本地路径) */ + tempVideoPath: string + } + interface StartSoterAuthenticationOption { + /** 挑战因子。挑战因子为调用者为此次生物鉴权准备的用于签名的字符串关键识别信息,将作为 `resultJSON` 的一部分,供调用者识别本次请求。例如:如果场景为请求用户对某订单进行授权确认,则可以将订单号填入此参数。 */ + challenge: string + /** 请求使用的可接受的生物认证方式 + * + * 可选值: + * - 'fingerPrint': 指纹识别; + * - 'facial': 人脸识别; + * - 'speech': 声纹识别(暂未支持); */ + requestAuthModes: Array<'fingerPrint' | 'facial' | 'speech'> + /** 验证描述,即识别过程中显示在界面上的对话框提示内容 */ + authContent?: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StartSoterAuthenticationCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StartSoterAuthenticationFailCallback + /** 接口调用成功的回调函数 */ + success?: StartSoterAuthenticationSuccessCallback + } + interface StartSoterAuthenticationSuccessCallbackResult { + /** 生物认证方式 */ + authMode: string + /** 错误码 */ + errCode: number + /** 错误信息 */ + errMsg: string + /** 在设备安全区域(TEE)内获得的本机安全信息(如TEE名称版本号等以及防重放参数)以及本次认证信息(仅Android支持,本次认证的指纹ID)。具体说明见下文 */ + resultJSON: string + /** 用SOTER安全密钥对 `resultJSON` 的签名(SHA256 with RSA/PSS, saltlen=20) */ + resultJSONSignature: string + } + interface StartWifiOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StartWifiCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StartWifiFailCallback + /** 接口调用成功的回调函数 */ + success?: StartWifiSuccessCallback + } + interface StatFailCallbackResult { + /** 错误信息 + * + * 可选值: + * - 'fail permission denied, open ${path}': 指定的 path 路径没有读权限; + * - 'fail no such file or directory ${path}': 文件不存在; + * - 'fail sdcard not mounted': Android sdcard 挂载失败; */ + errMsg: string + } + interface StatOption { + /** 文件/目录路径 (本地路径) */ + path: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StatCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StatFailCallback + /** 是否递归获取目录下的每个文件的 Stats 信息 + * + * 最低基础库: `2.3.0` */ + recursive?: boolean + /** 接口调用成功的回调函数 */ + success?: StatSuccessCallback + } + interface StatSuccessCallbackResult { + /** [Stats](https://developers.weixin.qq.com/miniprogram/dev/api/file/Stats.html)|Object + * + * 当 recursive 为 false 时,res.stats 是一个 Stats 对象。当 recursive 为 true 且 path 是一个目录的路径时,res.stats 是一个 Object,key 以 path 为根路径的相对路径,value 是该路径对应的 Stats 对象。 */ + stats: Stats | IAnyObject + errMsg: string + } + /** 描述文件状态的对象 */ + interface Stats { + /** 文件最近一次被存取或被执行的时间,UNIX 时间戳,对应 POSIX stat.st_atime */ + lastAccessedTime: number + /** 文件最后一次被修改的时间,UNIX 时间戳,对应 POSIX stat.st_mtime */ + lastModifiedTime: number + /** 文件的类型和存取的权限,对应 POSIX stat.st_mode */ + mode: string + /** 文件大小,单位:B,对应 POSIX stat.st_size */ + size: number + } + interface StepOption { + /** 动画延迟时间,单位 ms */ + delay?: number + /** 动画持续时间,单位 ms */ + duration?: number + /** 动画的效果 + * + * 可选值: + * - 'linear': 动画从头到尾的速度是相同的; + * - 'ease': 动画以低速开始,然后加快,在结束前变慢; + * - 'ease-in': 动画以低速开始; + * - 'ease-in-out': 动画以低速开始和结束; + * - 'ease-out': 动画以低速结束; + * - 'step-start': 动画第一帧就跳至结束状态直到结束; + * - 'step-end': 动画一直保持开始状态,最后一帧跳到结束状态; */ + timingFunction?: + | 'linear' + | 'ease' + | 'ease-in' + | 'ease-in-out' + | 'ease-out' + | 'step-start' + | 'step-end' + transformOrigin?: string + } + interface StopAccelerometerOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StopAccelerometerCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StopAccelerometerFailCallback + /** 接口调用成功的回调函数 */ + success?: StopAccelerometerSuccessCallback + } + interface StopAdvertisingOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StopAdvertisingCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StopAdvertisingFailCallback + /** 接口调用成功的回调函数 */ + success?: StopAdvertisingSuccessCallback + } + interface StopBGMOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StopBGMCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StopBGMFailCallback + /** 接口调用成功的回调函数 */ + success?: StopBGMSuccessCallback + } + interface StopBackgroundAudioOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StopBackgroundAudioCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StopBackgroundAudioFailCallback + /** 接口调用成功的回调函数 */ + success?: StopBackgroundAudioSuccessCallback + } + interface StopBeaconDiscoveryOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StopBeaconDiscoveryCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StopBeaconDiscoveryFailCallback + /** 接口调用成功的回调函数 */ + success?: StopBeaconDiscoverySuccessCallback + } + interface StopBluetoothDevicesDiscoveryOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StopBluetoothDevicesDiscoveryCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StopBluetoothDevicesDiscoveryFailCallback + /** 接口调用成功的回调函数 */ + success?: StopBluetoothDevicesDiscoverySuccessCallback + } + interface StopCompassOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StopCompassCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StopCompassFailCallback + /** 接口调用成功的回调函数 */ + success?: StopCompassSuccessCallback + } + interface StopDeviceMotionListeningOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StopDeviceMotionListeningCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StopDeviceMotionListeningFailCallback + /** 接口调用成功的回调函数 */ + success?: StopDeviceMotionListeningSuccessCallback + } + interface StopDiscoveryOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StopDiscoveryCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StopDiscoveryFailCallback + /** 接口调用成功的回调函数 */ + success?: StopDiscoverySuccessCallback + } + interface StopGyroscopeOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StopGyroscopeCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StopGyroscopeFailCallback + /** 接口调用成功的回调函数 */ + success?: StopGyroscopeSuccessCallback + } + interface StopHCEOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StopHCECompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StopHCEFailCallback + /** 接口调用成功的回调函数 */ + success?: StopHCESuccessCallback + } + interface StopLocalServiceDiscoveryFailCallbackResult { + /** 错误信息 + * + * 可选值: + * - 'task not found': 在当前没有处在搜索服务中的情况下调用 stopLocalServiceDiscovery; */ + errMsg: string + } + interface StopLocalServiceDiscoveryOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StopLocalServiceDiscoveryCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StopLocalServiceDiscoveryFailCallback + /** 接口调用成功的回调函数 */ + success?: StopLocalServiceDiscoverySuccessCallback + } + interface StopLocationUpdateOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StopLocationUpdateCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StopLocationUpdateFailCallback + /** 接口调用成功的回调函数 */ + success?: StopLocationUpdateSuccessCallback + } + interface StopOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StopCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StopFailCallback + /** 接口调用成功的回调函数 */ + success?: StopSuccessCallback + } + interface StopPreviewOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StopPreviewCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StopPreviewFailCallback + /** 接口调用成功的回调函数 */ + success?: StopPreviewSuccessCallback + } + interface StopPullDownRefreshOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StopPullDownRefreshCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StopPullDownRefreshFailCallback + /** 接口调用成功的回调函数 */ + success?: StopPullDownRefreshSuccessCallback + } + interface StopRecordSuccessCallbackResult { + /** 封面图片文件的临时路径 (本地路径) */ + tempThumbPath: string + /** 视频的文件的临时路径 (本地路径) */ + tempVideoPath: string + errMsg: string + } + interface StopVoiceOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StopVoiceCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StopVoiceFailCallback + /** 接口调用成功的回调函数 */ + success?: StopVoiceSuccessCallback + } + interface StopWifiOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StopWifiCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StopWifiFailCallback + /** 接口调用成功的回调函数 */ + success?: StopWifiSuccessCallback + } + interface SubscribeVoIPVideoMembersOption { + /** 订阅的成员列表 */ + openIdList: string[] + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SubscribeVoIPVideoMembersCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SubscribeVoIPVideoMembersFailCallback + /** 接口调用成功的回调函数 */ + success?: SubscribeVoIPVideoMembersSuccessCallback + } + /** 订阅消息设置 +* +* **示例代码** +* +* +* ```javascript +wx.getSetting({ + withSubscriptions: true, + success (res) { + console.log(res.authSetting) + // res.authSetting = { + // "scope.userInfo": true, + // "scope.userLocation": true + // } + console.log(res.subscriptionsSetting) + // res.subscriptionsSetting = { + // mainSwitch: true, // 订阅消息总开关 + // itemSettings: { // 每一项开关 + // SYS_MSG_TYPE_INTERACTIVE: 'accept', // 小游戏系统订阅消息 + // SYS_MSG_TYPE_RANK: 'accept' + // zun-LzcQyW-edafCVvzPkK4de2Rllr1fFpw2A_x0oXE: 'reject', // 普通一次性订阅消息 + // ke_OZC_66gZxALLcsuI7ilCJSP2OJ2vWo2ooUPpkWrw: 'ban', + // } + // } + } +}) +``` */ + interface SubscriptionsSetting { + /** 订阅消息总开关,true为开启,false为关闭 */ + mainSwitch: boolean + /** 每一项订阅消息的订阅状态。itemSettings对象的键为**一次性订阅消息的模板id**或**系统订阅消息的类型**,值为'accept'、'reject'、'ban'中的其中一种。'accept'表示用户同意订阅这条消息,'reject'表示用户拒绝订阅这条消息,'ban'表示已被后台封禁。一次性订阅消息使用方法详见 [wx.requestSubscribeMessage](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/subscribe-message/wx.requestSubscribeMessage.html),永久订阅消息(仅小游戏可用)使用方法详见[wx.requestSubscribeSystemMessage](/minigame/dev/api/open-api/subscribe-message/wx.requestSubscribeSystemMessage.html) + * ## 注意事项 + * - itemSettings 只返回用户勾选过订阅面板中的“总是保持以上选择,不再询问”的订阅消息。 */ + itemSettings?: IAnyObject + } + interface SwitchCameraOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SwitchCameraCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SwitchCameraFailCallback + /** 接口调用成功的回调函数 */ + success?: SwitchCameraSuccessCallback + } + interface SwitchTabOption { + /** 需要跳转的 tabBar 页面的路径 (代码包路径)(需在 app.json 的 [tabBar](https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/app.html#tabbar) 字段定义的页面),路径后不能带参数。 */ + url: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SwitchTabCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: SwitchTabFailCallback + /** 接口调用成功的回调函数 */ + success?: SwitchTabSuccessCallback + } + interface SystemInfo { + /** 客户端基础库版本 + * + * 最低基础库: `1.1.0` */ + SDKVersion: string + /** 允许微信使用相册的开关(仅 iOS 有效) + * + * 最低基础库: `2.6.0` */ + albumAuthorized: boolean + /** 设备性能等级(仅 Android)。取值为:-2 或 0(该设备无法运行小游戏),-1(性能未知),>=1(设备性能值,该值越高,设备性能越好,目前最高不到50) + * + * 最低基础库: `1.8.0` */ + benchmarkLevel: number + /** 蓝牙的系统开关 + * + * 最低基础库: `2.6.0` */ + bluetoothEnabled: boolean + /** 设备品牌 + * + * 最低基础库: `1.5.0` */ + brand: string + /** 允许微信使用摄像头的开关 + * + * 最低基础库: `2.6.0` */ + cameraAuthorized: boolean + /** 设备方向 + * + * 可选值: + * - 'portrait': 竖屏; + * - 'landscape': 横屏; */ + deviceOrientation: 'portrait' | 'landscape' + /** 是否已打开调试。可通过右上角菜单或 [wx.setEnableDebug](https://developers.weixin.qq.com/miniprogram/dev/api/base/debug/wx.setEnableDebug.html) 打开调试。 + * + * 最低基础库: `2.15.0` */ + enableDebug: boolean + /** 用户字体大小(单位px)。以微信客户端「我-设置-通用-字体大小」中的设置为准 + * + * 最低基础库: `1.5.0` */ + fontSizeSetting: number + /** 微信设置的语言 */ + language: string + /** 允许微信使用定位的开关 + * + * 最低基础库: `2.6.0` */ + locationAuthorized: boolean + /** 地理位置的系统开关 + * + * 最低基础库: `2.6.0` */ + locationEnabled: boolean + /** `true` 表示模糊定位,`false` 表示精确定位,仅 iOS 支持 */ + locationReducedAccuracy: boolean + /** 允许微信使用麦克风的开关 + * + * 最低基础库: `2.6.0` */ + microphoneAuthorized: boolean + /** 设备型号。新机型刚推出一段时间会显示unknown,微信会尽快进行适配。 */ + model: string + /** 允许微信通知带有提醒的开关(仅 iOS 有效) + * + * 最低基础库: `2.6.0` */ + notificationAlertAuthorized: boolean + /** 允许微信通知的开关 + * + * 最低基础库: `2.6.0` */ + notificationAuthorized: boolean + /** 允许微信通知带有标记的开关(仅 iOS 有效) + * + * 最低基础库: `2.6.0` */ + notificationBadgeAuthorized: boolean + /** 允许微信通知带有声音的开关(仅 iOS 有效) + * + * 最低基础库: `2.6.0` */ + notificationSoundAuthorized: boolean + /** 设备像素比 */ + pixelRatio: number + /** 客户端平台 */ + platform: string + /** 在竖屏正方向下的安全区域 + * + * 最低基础库: `2.7.0` */ + safeArea: SafeArea + /** 屏幕高度,单位px + * + * 最低基础库: `1.1.0` */ + screenHeight: number + /** 屏幕宽度,单位px + * + * 最低基础库: `1.1.0` */ + screenWidth: number + /** 状态栏的高度,单位px + * + * 最低基础库: `1.9.0` */ + statusBarHeight: number + /** 操作系统及版本 */ + system: string + /** 微信版本号 */ + version: string + /** Wi-Fi 的系统开关 + * + * 最低基础库: `2.6.0` */ + wifiEnabled: boolean + /** 可使用窗口高度,单位px */ + windowHeight: number + /** 可使用窗口宽度,单位px */ + windowWidth: number + /** 系统当前主题,取值为`light`或`dark`,全局配置`"darkmode":true`时才能获取,否则为 undefined (不支持小游戏) + * + * 可选值: + * - 'dark': 深色主题; + * - 'light': 浅色主题; + * + * 最低基础库: `2.11.0` */ + theme?: 'dark' | 'light' + } + interface TakePhotoOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: TakePhotoCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: TakePhotoFailCallback + /** 成像质量 + * + * 可选值: + * - 'high': 高质量; + * - 'normal': 普通质量; + * - 'low': 低质量; */ + quality?: 'high' | 'normal' | 'low' + /** 接口调用成功的回调函数 */ + success?: TakePhotoSuccessCallback + } + interface TakePhotoSuccessCallbackResult { + /** 照片文件的临时路径 (本地路径),安卓是jpg图片格式,ios是png */ + tempImagePath: string + errMsg: string + } + /** 标签类型枚举 */ + interface TechType { + /** 对应IsoDep实例,实例支持ISO-DEP (ISO 14443-4)标准的读写 */ + isoDep: string + /** 对应MifareClassic实例,实例支持MIFARE Classic标签的读写 */ + mifareClassic: string + /** 对应MifareUltralight实例,实例支持MIFARE Ultralight标签的读写 */ + mifareUltralight: string + /** 对应Ndef实例,实例支持对NDEF格式的NFC标签上的NDEF数据的读写 */ + ndef: string + /** 对应NfcA实例,实例支持NFC-A (ISO 14443-3A)标准的读写 */ + nfcA: string + /** 对应NfcB实例,实例支持NFC-B (ISO 14443-3B)标准的读写 */ + nfcB: string + /** 对应NfcF实例,实例支持NFC-F (JIS 6319-4)标准的读写 */ + nfcF: string + /** 对应NfcV实例,实例支持NFC-V (ISO 15693)标准的读写 */ + nfcV: string + } + interface TextMetrics { + /** 文本的宽度 */ + width: number + } + interface ToScreenLocationOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ToScreenLocationCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ToScreenLocationFailCallback + /** 接口调用成功的回调函数 */ + success?: ToScreenLocationSuccessCallback + } + interface ToScreenLocationSuccessCallbackResult { + /** x 坐标值 */ + x: number + /** y 坐标值 */ + y: number + errMsg: string + } + interface ToggleTorchOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: ToggleTorchCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: ToggleTorchFailCallback + /** 接口调用成功的回调函数 */ + success?: ToggleTorchSuccessCallback + } + interface TransceiveOption { + /** 需要传递的二进制数据 */ + data: ArrayBuffer + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: TransceiveCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: TransceiveFailCallback + /** 接口调用成功的回调函数 */ + success?: TransceiveSuccessCallback + } + interface TransceiveSuccessCallbackResult { + data: ArrayBuffer + errMsg: string + } + interface TranslateMarkerOption { + /** 移动过程中是否自动旋转 marker */ + autoRotate: boolean + /** 指定 marker 移动到的目标点 */ + destination: DestinationOption + /** 指定 marker */ + markerId: number + /** marker 的旋转角度 */ + rotate: number + /** 动画结束回调函数 */ + animationEnd?: (...args: any[]) => any + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: TranslateMarkerCompleteCallback + /** 动画持续时长,平移与旋转分别计算 */ + duration?: number + /** 接口调用失败的回调函数 */ + fail?: TranslateMarkerFailCallback + /** 平移和旋转同时进行 + * + * 最低基础库: `2.13.0` */ + moveWithRotate?: boolean + /** 接口调用成功的回调函数 */ + success?: TranslateMarkerSuccessCallback + } + interface UDPSocketOnErrorCallbackResult { + /** 错误信息 */ + errMsg: string + } + interface UDPSocketOnMessageCallbackResult { + /** 收到的消息 */ + message: ArrayBuffer + /** 消息来源的结构化信息 */ + remoteInfo: RemoteInfo + } + interface UDPSocketSendOption { + /** 要发消息的地址。在基础库 2.9.3 及之前版本可以是一个和本机同网段的 IP 地址,也可以是在安全域名列表内的域名地址;在基础库 2.9.4 及之后版本,可以是任意 IP 和域名 */ + address: string + /** 要发送的数据 */ + message: string | ArrayBuffer + /** 要发送消息的端口号 */ + port: number + /** 发送数据的长度,仅当 message 为 ArrayBuffer 类型时有效 */ + length?: number + /** 发送数据的偏移量,仅当 message 为 ArrayBuffer 类型时有效 */ + offset?: number + } + interface UndoOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: UndoCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: UndoFailCallback + /** 接口调用成功的回调函数 */ + success?: UndoSuccessCallback + } + interface UnlinkFailCallbackResult { + /** 错误信息 + * + * 可选值: + * - 'fail permission denied, open ${path}': 指定的 path 路径没有读权限; + * - 'fail no such file or directory ${path}': 文件不存在; + * - 'fail operation not permitted, unlink ${filePath}': 传入的 filePath 是一个目录; + * - 'fail sdcard not mounted': Android sdcard 挂载失败; */ + errMsg: string + } + interface UnlinkOption { + /** 要删除的文件路径 (本地路径) */ + filePath: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: UnlinkCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: UnlinkFailCallback + /** 接口调用成功的回调函数 */ + success?: UnlinkSuccessCallback + } + interface UnzipFailCallbackResult { + /** 错误信息 + * + * 可选值: + * - 'fail permission denied, unzip ${zipFilePath} -> ${destPath}': 指定目标文件路径没有写权限; + * - 'fail no such file or directory, unzip ${zipFilePath} -> "${destPath}': 源文件不存在,或目标文件路径的上层目录不存在; */ + errMsg: string + } + interface UnzipOption { + /** 目标目录路径, 支持本地路径 */ + targetPath: string + /** 源文件路径,支持本地路径, 只可以是 zip 压缩文件 */ + zipFilePath: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: UnzipCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: UnzipFailCallback + /** 接口调用成功的回调函数 */ + success?: UnzipSuccessCallback + } + /** 参数列表 */ + interface UpdatableMessageFrontEndParameter { + /** 参数名 */ + name: string + /** 参数值 */ + value: string + } + /** 动态消息的模板信息 + * + * 最低基础库: `2.4.0` */ + interface UpdatableMessageFrontEndTemplateInfo { + /** 参数列表 */ + parameterList: UpdatableMessageFrontEndParameter[] + } + interface UpdateGroundOverlayOption { + /** 图片覆盖的经纬度范围 */ + bounds: MapBounds + /** 图片图层 id */ + id: string + /** 图片路径,支持网络图片、临时路径、代码包路径 */ + src: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: UpdateGroundOverlayCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: UpdateGroundOverlayFailCallback + /** 图层透明度 */ + opacity?: number + /** 接口调用成功的回调函数 */ + success?: UpdateGroundOverlaySuccessCallback + /** 是否可见 */ + visible?: boolean + /** 图层绘制顺序 */ + zIndex?: number + } + interface UpdateShareMenuOption { + /** 动态消息的 activityId。通过 [updatableMessage.createActivityId](https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/updatable-message/updatableMessage.createActivityId.html) 接口获取 + * + * 最低基础库: `2.4.0` */ + activityId?: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: UpdateShareMenuCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: UpdateShareMenuFailCallback + /** 是否是私密消息。详见 [小程序私密消息](https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share/private-message.html) + * + * 最低基础库: `2.13.0` */ + isPrivateMessage?: boolean + /** 是否是动态消息,详见[动态消息](https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share/updatable-message.html) + * + * 最低基础库: `2.4.0` */ + isUpdatableMessage?: boolean + /** 接口调用成功的回调函数 */ + success?: UpdateShareMenuSuccessCallback + /** 动态消息的模板信息 + * + * 最低基础库: `2.4.0` */ + templateInfo?: UpdatableMessageFrontEndTemplateInfo + /** 群待办消息的id,通过toDoActivityId可以把多个群待办消息聚合为同一个。通过 [updatableMessage.createActivityId](https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/updatable-message/updatableMessage.createActivityId.html) 接口获取。详见[群待办消息](https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share.html) + * + * 最低基础库: `2.11.0` */ + toDoActivityId?: string + /** 是否使用带 shareTicket 的转发[详情](https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share.html) */ + withShareTicket?: boolean + } + interface UpdateVoIPChatMuteConfigOption { + /** 静音设置 */ + muteConfig: MuteConfig + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: UpdateVoIPChatMuteConfigCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: UpdateVoIPChatMuteConfigFailCallback + /** 接口调用成功的回调函数 */ + success?: UpdateVoIPChatMuteConfigSuccessCallback + } + interface UpdateWeChatAppOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: UpdateWeChatAppCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: UpdateWeChatAppFailCallback + /** 接口调用成功的回调函数 */ + success?: UpdateWeChatAppSuccessCallback + } + interface UploadFileOption { + /** 要上传文件资源的路径 (本地路径) */ + filePath: string + /** 文件对应的 key,开发者在服务端可以通过这个 key 获取文件的二进制内容 */ + name: string + /** 开发者服务器地址 */ + url: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: UploadFileCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: UploadFileFailCallback + /** HTTP 请求中其他额外的 form data */ + formData?: IAnyObject + /** HTTP 请求 Header,Header 中不能设置 Referer */ + header?: IAnyObject + /** 接口调用成功的回调函数 */ + success?: UploadFileSuccessCallback + /** 超时时间,单位为毫秒 + * + * 最低基础库: `2.10.0` */ + timeout?: number + } + interface UploadFileSuccessCallbackResult { + /** 开发者服务器返回的数据 */ + data: string + /** 开发者服务器返回的 HTTP 状态码 */ + statusCode: number + errMsg: string + } + interface UploadTaskOnProgressUpdateCallbackResult { + /** 上传进度百分比 */ + progress: number + /** 预期需要上传的数据总长度,单位 Bytes */ + totalBytesExpectedToSend: number + /** 已经上传的数据长度,单位 Bytes */ + totalBytesSent: number + } + /** 用户信息 */ + interface UserInfo { + /** 用户头像图片的 URL。URL 最后一个数值代表正方形头像大小(有 0、46、64、96、132 数值可选,0 代表 640x640 的正方形头像,46 表示 46x46 的正方形头像,剩余数值以此类推。默认132),用户没有头像时该项为空。若用户更换头像,原有头像 URL 将失效。 */ + avatarUrl: string + /** 用户所在城市 */ + city: string + /** 用户所在国家 */ + country: string + /** 用户性别 + * + * 可选值: + * - 0: 未知; + * - 1: 男性; + * - 2: 女性; */ + gender: 0 | 1 | 2 + /** 显示 country,province,city 所用的语言 + * + * 可选值: + * - 'en': 英文; + * - 'zh_CN': 简体中文; + * - 'zh_TW': 繁体中文; */ + language: 'en' | 'zh_CN' | 'zh_TW' + /** 用户昵称 */ + nickName: string + /** 用户所在省份 */ + province: string + } + interface VibrateLongOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: VibrateLongCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: VibrateLongFailCallback + /** 接口调用成功的回调函数 */ + success?: VibrateLongSuccessCallback + } + interface VibrateShortOption { + /** 震动强度类型,有效值为:heavy、medium、light + * + * 最低基础库: `2.13.0` */ + type: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: VibrateShortCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: VibrateShortFailCallback + /** 接口调用成功的回调函数 */ + success?: VibrateShortSuccessCallback + } + interface VideoContextRequestFullScreenOption { + /** 设置全屏时视频的方向,不指定则根据宽高比自动判断。 + * + * 可选值: + * - 0: 正常竖向; + * - 90: 屏幕逆时针90度; + * - -90: 屏幕顺时针90度; + * + * 最低基础库: `1.7.0` */ + direction?: 0 | 90 | -90 + } + interface VideoDecoderStartOption { + /** 需要解码的视频源文件。基础库 2.13.0 以下的版本只支持本地路径。 2.13.0 开始支持 http:// 和 https:// 协议的远程路径。 */ + source: string + /** 解码模式。0:按 pts 解码;1:以最快速度解码 */ + mode?: number + } + /** 提供预设的 Wi-Fi 信息列表 */ + interface WifiData { + /** Wi-Fi 的 BSSID */ + BSSID?: string + /** Wi-Fi 的 SSID */ + SSID?: string + /** Wi-Fi 设备密码 */ + password?: string + } + /** Wifi 信息 */ + interface WifiInfo { + /** Wi-Fi 的 BSSID */ + BSSID: string + /** Wi-Fi 的 SSID */ + SSID: string + /** Wi-Fi 频段单位 MHz + * + * 最低基础库: `2.12.0` */ + frequency: number + /** Wi-Fi 是否安全 */ + secure: boolean + /** Wi-Fi 信号强度 */ + signalStrength: number + } + interface WorkerOnMessageCallbackResult { + /** 主线程/Worker 线程向当前线程发送的消息 */ + message: IAnyObject + } + interface WriteBLECharacteristicValueOption { + /** 蓝牙特征值的 uuid */ + characteristicId: string + /** 蓝牙设备 id */ + deviceId: string + /** 蓝牙特征值对应服务的 uuid */ + serviceId: string + /** 蓝牙设备特征值对应的二进制值 */ + value: ArrayBuffer + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: WriteBLECharacteristicValueCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: WriteBLECharacteristicValueFailCallback + /** 接口调用成功的回调函数 */ + success?: WriteBLECharacteristicValueSuccessCallback + } + interface WriteCharacteristicValueObject { + /** characteristic对应的uuid */ + characteristicId: string + /** 是否需要通知主机value已更新 */ + needNotify: boolean + /** service 的 uuid */ + serviceId: string + /** 特征值对应的二进制值 */ + value: ArrayBuffer + /** 可选,处理回包时使用 */ + callbackId?: number + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: WriteCharacteristicValueCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: WriteCharacteristicValueFailCallback + /** 接口调用成功的回调函数 */ + success?: WriteCharacteristicValueSuccessCallback + } + interface WriteFileFailCallbackResult { + /** 错误信息 + * + * 可选值: + * - 'fail no such file or directory, open ${filePath}': 指定的 filePath 所在目录不存在; + * - 'fail permission denied, open ${dirPath}': 指定的 filePath 路径没有写权限; + * - 'fail the maximum size of the file storage limit is exceeded': 存储空间不足; + * - 'fail sdcard not mounted': Android sdcard 挂载失败; */ + errMsg: string + } + interface WriteFileOption { + /** 要写入的文本或二进制数据 */ + data: string | ArrayBuffer + /** 要写入的文件路径 (本地路径) */ + filePath: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: WriteFileCompleteCallback + /** 指定写入文件的字符编码 + * + * 可选值: + * - 'ascii': ; + * - 'base64': ; + * - 'binary': ; + * - 'hex': ; + * - 'ucs2': 以小端序读取; + * - 'ucs-2': 以小端序读取; + * - 'utf16le': 以小端序读取; + * - 'utf-16le': 以小端序读取; + * - 'utf-8': ; + * - 'utf8': ; + * - 'latin1': ; */ + encoding?: + | 'ascii' + | 'base64' + | 'binary' + | 'hex' + | 'ucs2' + | 'ucs-2' + | 'utf16le' + | 'utf-16le' + | 'utf-8' + | 'utf8' + | 'latin1' + /** 接口调用失败的回调函数 */ + fail?: WriteFileFailCallback + /** 接口调用成功的回调函数 */ + success?: WriteFileSuccessCallback + } + interface WriteNdefMessageOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: WriteNdefMessageCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: WriteNdefMessageFailCallback + /** 二进制对象数组, 需要指明 id, type 以及 payload (均为 ArrayBuffer 类型) */ + records?: any[] + /** 接口调用成功的回调函数 */ + success?: WriteNdefMessageSuccessCallback + /** text 数组 */ + texts?: any[] + /** uri 数组 */ + uris?: any[] + } + interface WxGetFileInfoOption { + /** 本地文件路径 (本地路径) */ + filePath: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetFileInfoCompleteCallback + /** 计算文件摘要的算法 + * + * 可选值: + * - 'md5': md5 算法; + * - 'sha1': sha1 算法; */ + digestAlgorithm?: 'md5' | 'sha1' + /** 接口调用失败的回调函数 */ + fail?: WxGetFileInfoFailCallback + /** 接口调用成功的回调函数 */ + success?: WxGetFileInfoSuccessCallback + } + interface WxGetFileInfoSuccessCallbackResult { + /** 按照传入的 digestAlgorithm 计算得出的的文件摘要 */ + digest: string + /** 文件大小,以字节为单位 */ + size: number + errMsg: string + } + interface WxGetSavedFileListOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: GetSavedFileListCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: GetSavedFileListFailCallback + /** 接口调用成功的回调函数 */ + success?: WxGetSavedFileListSuccessCallback + } + interface WxGetSavedFileListSuccessCallbackResult { + /** 文件数组,每一项是一个 FileItem */ + fileList: FileItem[] + errMsg: string + } + interface WxRemoveSavedFileOption { + /** 需要删除的文件路径 (本地路径) */ + filePath: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: RemoveSavedFileCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: WxRemoveSavedFileFailCallback + /** 接口调用成功的回调函数 */ + success?: RemoveSavedFileSuccessCallback + } + interface WxSaveFileOption { + /** 需要保存的文件的临时路径 (本地路径) */ + tempFilePath: string + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: SaveFileCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: WxSaveFileFailCallback + /** 接口调用成功的回调函数 */ + success?: SaveFileSuccessCallback + } + interface WxStartRecordOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StartRecordCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StartRecordFailCallback + /** 接口调用成功的回调函数 */ + success?: WxStartRecordSuccessCallback + } + interface WxStopRecordOption { + /** 接口调用结束的回调函数(调用成功、失败都会执行) */ + complete?: StopRecordCompleteCallback + /** 接口调用失败的回调函数 */ + fail?: StopRecordFailCallback + /** 接口调用成功的回调函数 */ + success?: WxStopRecordSuccessCallback + } + interface Animation { + /** [Object Animation.export()](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.export.html) + * + * 导出动画队列。**export 方法每次调用后会清掉之前的动画操作。** */ + export(): AnimationExportResult + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.backgroundColor(string value)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.backgroundColor.html) + * + * 设置背景色 */ + backgroundColor( + /** 颜色值 */ + value: string + ): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.bottom(number|string value)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.bottom.html) + * + * 设置 bottom 值 */ + bottom( + /** 长度值,如果传入 number 则默认使用 px,可传入其他自定义单位的长度值 */ + value: number | string + ): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.height(number|string value)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.height.html) + * + * 设置高度 */ + height( + /** 长度值,如果传入 number 则默认使用 px,可传入其他自定义单位的长度值 */ + value: number | string + ): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.left(number|string value)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.left.html) + * + * 设置 left 值 */ + left( + /** 长度值,如果传入 number 则默认使用 px,可传入其他自定义单位的长度值 */ + value: number | string + ): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.matrix()](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.matrix.html) + * + * 同 [transform-function matrix](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-function/matrix) */ + matrix(): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.matrix3d()](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.matrix3d.html) + * + * 同 [transform-function matrix3d](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-function/matrix3d) */ + matrix3d(): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.opacity(number value)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.opacity.html) + * + * 设置透明度 */ + opacity( + /** 透明度,范围 0-1 */ + value: number + ): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.right(number|string value)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.right.html) + * + * 设置 right 值 */ + right( + /** 长度值,如果传入 number 则默认使用 px,可传入其他自定义单位的长度值 */ + value: number | string + ): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.rotate(number angle)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.rotate.html) + * + * 从原点顺时针旋转一个角度 */ + rotate( + /** 旋转的角度。范围 [-180, 180] */ + angle: number + ): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.rotate3d(number x, number y, number z, number angle)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.rotate3d.html) + * + * 从 固定 轴顺时针旋转一个角度 */ + rotate3d( + /** 旋转轴的 x 坐标 */ + x: number, + /** 旋转轴的 y 坐标 */ + y: number, + /** 旋转轴的 z 坐标 */ + z: number, + /** 旋转的角度。范围 [-180, 180] */ + angle: number + ): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.rotateX(number angle)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.rotateX.html) + * + * 从 X 轴顺时针旋转一个角度 */ + rotateX( + /** 旋转的角度。范围 [-180, 180] */ + angle: number + ): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.rotateY(number angle)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.rotateY.html) + * + * 从 Y 轴顺时针旋转一个角度 */ + rotateY( + /** 旋转的角度。范围 [-180, 180] */ + angle: number + ): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.rotateZ(number angle)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.rotateZ.html) + * + * 从 Z 轴顺时针旋转一个角度 */ + rotateZ( + /** 旋转的角度。范围 [-180, 180] */ + angle: number + ): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.scale(number sx, number sy)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.scale.html) + * + * 缩放 */ + scale( + /** 当仅有 sx 参数时,表示在 X 轴、Y 轴同时缩放sx倍数 */ + sx: number, + /** 在 Y 轴缩放 sy 倍数 */ + sy?: number + ): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.scale3d(number sx, number sy, number sz)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.scale3d.html) + * + * 缩放 */ + scale3d( + /** x 轴的缩放倍数 */ + sx: number, + /** y 轴的缩放倍数 */ + sy: number, + /** z 轴的缩放倍数 */ + sz: number + ): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.scaleX(number scale)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.scaleX.html) + * + * 缩放 X 轴 */ + scaleX( + /** X 轴的缩放倍数 */ + scale: number + ): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.scaleY(number scale)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.scaleY.html) + * + * 缩放 Y 轴 */ + scaleY( + /** Y 轴的缩放倍数 */ + scale: number + ): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.scaleZ(number scale)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.scaleZ.html) + * + * 缩放 Z 轴 */ + scaleZ( + /** Z 轴的缩放倍数 */ + scale: number + ): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.skew(number ax, number ay)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.skew.html) + * + * 对 X、Y 轴坐标进行倾斜 */ + skew( + /** 对 X 轴坐标倾斜的角度,范围 [-180, 180] */ + ax: number, + /** 对 Y 轴坐标倾斜的角度,范围 [-180, 180] */ + ay: number + ): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.skewX(number angle)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.skewX.html) + * + * 对 X 轴坐标进行倾斜 */ + skewX( + /** 倾斜的角度,范围 [-180, 180] */ + angle: number + ): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.skewY(number angle)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.skewY.html) + * + * 对 Y 轴坐标进行倾斜 */ + skewY( + /** 倾斜的角度,范围 [-180, 180] */ + angle: number + ): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.step(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.step.html) + * + * 表示一组动画完成。可以在一组动画中调用任意多个动画方法,一组动画中的所有动画会同时开始,一组动画完成后才会进行下一组动画。 */ + step(option?: StepOption): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.top(number|string value)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.top.html) + * + * 设置 top 值 */ + top( + /** 长度值,如果传入 number 则默认使用 px,可传入其他自定义单位的长度值 */ + value: number | string + ): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.translate(number tx, number ty)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.translate.html) + * + * 平移变换 */ + translate( + /** 当仅有该参数时表示在 X 轴偏移 tx,单位 px */ + tx?: number, + /** 在 Y 轴平移的距离,单位为 px */ + ty?: number + ): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.translate3d(number tx, number ty, number tz)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.translate3d.html) + * + * 对 xyz 坐标进行平移变换 */ + translate3d( + /** 在 X 轴平移的距离,单位为 px */ + tx?: number, + /** 在 Y 轴平移的距离,单位为 px */ + ty?: number, + /** 在 Z 轴平移的距离,单位为 px */ + tz?: number + ): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.translateX(number translation)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.translateX.html) + * + * 对 X 轴平移 */ + translateX( + /** 在 X 轴平移的距离,单位为 px */ + translation: number + ): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.translateY(number translation)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.translateY.html) + * + * 对 Y 轴平移 */ + translateY( + /** 在 Y 轴平移的距离,单位为 px */ + translation: number + ): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.translateZ(number translation)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.translateZ.html) + * + * 对 Z 轴平移 */ + translateZ( + /** 在 Z 轴平移的距离,单位为 px */ + translation: number + ): Animation + /** [[Animation](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.html) Animation.width(number|string value)](https://developers.weixin.qq.com/miniprogram/dev/api/ui/animation/Animation.width.html) + * + * 设置宽度 */ + width( + /** 长度值,如果传入 number 则默认使用 px,可传入其他自定义单位的长度值 */ + value: number | string + ): Animation + } + interface AudioContext { + /** [AudioContext.pause()](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/AudioContext.pause.html) + * + * 暂停音频。 */ + pause(): void + /** [AudioContext.play()](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/AudioContext.play.html) + * + * 播放音频。 */ + play(): void + /** [AudioContext.seek(number position)](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/AudioContext.seek.html) + * + * 跳转到指定位置。 */ + seek( + /** 跳转位置,单位 s */ + position: number + ): void + /** [AudioContext.setSrc(string src)](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/AudioContext.setSrc.html) + * + * 设置音频地址 */ + setSrc( + /** 音频地址 */ + src: string + ): void + } + interface BLEPeripheralServer { + /** [BLEPeripheralServer.addService(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth-peripheral/BLEPeripheralServer.addService.html) + * + * 添加服务。 + * + * 最低基础库: `2.10.3` */ + addService(option: AddServiceOption): void + /** [BLEPeripheralServer.close(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth-peripheral/BLEPeripheralServer.close.html) + * + * 关闭当前服务端。 + * + * 最低基础库: `2.10.3` */ + close(option?: BLEPeripheralServerCloseOption): void + /** [BLEPeripheralServer.offCharacteristicReadRequest(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth-peripheral/BLEPeripheralServer.offCharacteristicReadRequest.html) + * + * 取消监听已连接的设备请求读当前外围设备的特征值事件 + * + * 最低基础库: `2.10.3` */ + offCharacteristicReadRequest( + /** 已连接的设备请求读当前外围设备的特征值事件的回调函数 */ + callback?: OffCharacteristicReadRequestCallback + ): void + /** [BLEPeripheralServer.offCharacteristicSubscribed(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth-peripheral/BLEPeripheralServer.offCharacteristicSubscribed.html) + * + * 取消监听特征值订阅事件 + * + * 最低基础库: `2.13.0` */ + offCharacteristicSubscribed( + /** 特征值订阅事件的回调函数 */ + callback?: OffCharacteristicSubscribedCallback + ): void + /** [BLEPeripheralServer.offCharacteristicUnsubscribed(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth-peripheral/BLEPeripheralServer.offCharacteristicUnsubscribed.html) + * + * 取消监听取消特征值订阅事件 + * + * 最低基础库: `2.13.0` */ + offCharacteristicUnsubscribed( + /** 取消特征值订阅事件的回调函数 */ + callback?: OffCharacteristicUnsubscribedCallback + ): void + /** [BLEPeripheralServer.offCharacteristicWriteRequest(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth-peripheral/BLEPeripheralServer.offCharacteristicWriteRequest.html) + * + * 取消监听已连接的设备请求写当前外围设备的特征值事件 + * + * 最低基础库: `2.10.3` */ + offCharacteristicWriteRequest( + /** 已连接的设备请求写当前外围设备的特征值事件的回调函数 */ + callback?: OffCharacteristicWriteRequestCallback + ): void + /** [BLEPeripheralServer.onCharacteristicReadRequest(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth-peripheral/BLEPeripheralServer.onCharacteristicReadRequest.html) + * + * 监听已连接的设备请求读当前外围设备的特征值事件。收到该消息后需要立刻调用 `writeCharacteristicValue` 写回数据,否则主机不会收到响应。 + * + * 最低基础库: `2.10.3` */ + onCharacteristicReadRequest( + /** 已连接的设备请求读当前外围设备的特征值事件的回调函数 */ + callback: OnCharacteristicReadRequestCallback + ): void + /** [BLEPeripheralServer.onCharacteristicSubscribed(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth-peripheral/BLEPeripheralServer.onCharacteristicSubscribed.html) + * + * 监听特征值订阅事件,仅 iOS 支持。 + * + * 最低基础库: `2.13.0` */ + onCharacteristicSubscribed( + /** 特征值订阅事件的回调函数 */ + callback: OnCharacteristicSubscribedCallback + ): void + /** [BLEPeripheralServer.onCharacteristicUnsubscribed(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth-peripheral/BLEPeripheralServer.onCharacteristicUnsubscribed.html) + * + * 监听取消特征值订阅事件,仅 iOS 支持。 + * + * 最低基础库: `2.13.0` */ + onCharacteristicUnsubscribed( + /** 取消特征值订阅事件的回调函数 */ + callback: OnCharacteristicUnsubscribedCallback + ): void + /** [BLEPeripheralServer.onCharacteristicWriteRequest(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth-peripheral/BLEPeripheralServer.onCharacteristicWriteRequest.html) + * + * 监听已连接的设备请求写当前外围设备的特征值事件。收到该消息后需要立刻调用 `writeCharacteristicValue` 写回数据,否则主机不会收到响应。 + * + * 最低基础库: `2.10.3` */ + onCharacteristicWriteRequest( + /** 已连接的设备请求写当前外围设备的特征值事件的回调函数 */ + callback: OnCharacteristicWriteRequestCallback + ): void + /** [BLEPeripheralServer.removeService(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth-peripheral/BLEPeripheralServer.removeService.html) + * + * 移除服务。 + * + * 最低基础库: `2.10.3` */ + removeService(option: RemoveServiceOption): void + /** [BLEPeripheralServer.startAdvertising(Object Object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth-peripheral/BLEPeripheralServer.startAdvertising.html) + * + * 开始广播本地创建的外围设备。 + * + * 最低基础库: `2.10.3` */ + startAdvertising(Object: StartAdvertisingObject): void + /** [BLEPeripheralServer.stopAdvertising(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth-peripheral/BLEPeripheralServer.stopAdvertising.html) + * + * 停止广播。 + * + * 最低基础库: `2.10.3` */ + stopAdvertising(option?: StopAdvertisingOption): void + /** [BLEPeripheralServer.writeCharacteristicValue(Object Object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/bluetooth-peripheral/BLEPeripheralServer.writeCharacteristicValue.html) + * + * 往指定特征值写入数据,并通知已连接的主机,从机的特征值已发生变化,该接口会处理是走回包还是走订阅。 + * + * 最低基础库: `2.10.3` */ + writeCharacteristicValue(Object: WriteCharacteristicValueObject): void + } + interface BackgroundAudioError { + /** 错误信息 + * + * | 错误码 | 错误信息 | 说明 | + * | - | - | - | + * | 10001 | | 系统错误 | + * | 10002 | | 网络错误 | + * | 10003 | | 文件错误,请检查是否responseheader是否缺少Content-Length | + * | 10004 | | 格式错误 | + * | -1 | | 未知错误 | */ errMsg: string + /** 错误码 + * + * | 错误码 | 错误信息 | 说明 | + * | - | - | - | + * | 10001 | | 系统错误 | + * | 10002 | | 网络错误 | + * | 10003 | | 文件错误,请检查是否responseheader是否缺少Content-Length | + * | 10004 | | 格式错误 | + * | -1 | | 未知错误 | */ errCode: number + } + interface BackgroundAudioManager { + /** [BackgroundAudioManager.onCanplay(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/background-audio/BackgroundAudioManager.onCanplay.html) + * + * 监听背景音频进入可播放状态事件。 但不保证后面可以流畅播放 */ + onCanplay( + /** 背景音频进入可播放状态事件的回调函数 */ + callback: OnCanplayCallback + ): void + /** [BackgroundAudioManager.onEnded(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/background-audio/BackgroundAudioManager.onEnded.html) + * + * 监听背景音频自然播放结束事件 */ + onEnded( + /** 背景音频自然播放结束事件的回调函数 */ + callback: OnEndedCallback + ): void + /** [BackgroundAudioManager.onError(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/background-audio/BackgroundAudioManager.onError.html) + * + * 监听背景音频播放错误事件 */ + onError( + /** 背景音频播放错误事件的回调函数 */ + callback: BackgroundAudioManagerOnErrorCallback + ): void + /** [BackgroundAudioManager.onNext(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/background-audio/BackgroundAudioManager.onNext.html) + * + * 监听用户在系统音乐播放面板点击下一曲事件(仅iOS) */ + onNext( + /** 用户在系统音乐播放面板点击下一曲事件的回调函数 */ + callback: OnNextCallback + ): void + /** [BackgroundAudioManager.onPause(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/background-audio/BackgroundAudioManager.onPause.html) + * + * 监听背景音频暂停事件 */ + onPause( + /** 背景音频暂停事件的回调函数 */ + callback: OnPauseCallback + ): void + /** [BackgroundAudioManager.onPlay(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/background-audio/BackgroundAudioManager.onPlay.html) + * + * 监听背景音频播放事件 */ + onPlay( + /** 背景音频播放事件的回调函数 */ + callback: OnPlayCallback + ): void + /** [BackgroundAudioManager.onPrev(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/background-audio/BackgroundAudioManager.onPrev.html) + * + * 监听用户在系统音乐播放面板点击上一曲事件(仅iOS) */ + onPrev( + /** 用户在系统音乐播放面板点击上一曲事件的回调函数 */ + callback: OnPrevCallback + ): void + /** [BackgroundAudioManager.onSeeked(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/background-audio/BackgroundAudioManager.onSeeked.html) + * + * 监听背景音频完成跳转操作事件 */ + onSeeked( + /** 背景音频完成跳转操作事件的回调函数 */ + callback: OnSeekedCallback + ): void + /** [BackgroundAudioManager.onSeeking(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/background-audio/BackgroundAudioManager.onSeeking.html) + * + * 监听背景音频开始跳转操作事件 */ + onSeeking( + /** 背景音频开始跳转操作事件的回调函数 */ + callback: OnSeekingCallback + ): void + /** [BackgroundAudioManager.onStop(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/background-audio/BackgroundAudioManager.onStop.html) + * + * 监听背景音频停止事件 */ + onStop( + /** 背景音频停止事件的回调函数 */ + callback: InnerAudioContextOnStopCallback + ): void + /** [BackgroundAudioManager.onTimeUpdate(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/background-audio/BackgroundAudioManager.onTimeUpdate.html) + * + * 监听背景音频播放进度更新事件,只有小程序在前台时会回调。 */ + onTimeUpdate( + /** 背景音频播放进度更新事件的回调函数 */ + callback: OnTimeUpdateCallback + ): void + /** [BackgroundAudioManager.onWaiting(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/background-audio/BackgroundAudioManager.onWaiting.html) + * + * 监听音频加载中事件。当音频因为数据不足,需要停下来加载时会触发 */ + onWaiting( + /** 音频加载中事件的回调函数 */ + callback: OnWaitingCallback + ): void + /** [BackgroundAudioManager.pause()](https://developers.weixin.qq.com/miniprogram/dev/api/media/background-audio/BackgroundAudioManager.pause.html) + * + * 暂停音乐 */ + pause(): void + /** [BackgroundAudioManager.play()](https://developers.weixin.qq.com/miniprogram/dev/api/media/background-audio/BackgroundAudioManager.play.html) + * + * 播放音乐 */ + play(): void + /** [BackgroundAudioManager.seek(number currentTime)](https://developers.weixin.qq.com/miniprogram/dev/api/media/background-audio/BackgroundAudioManager.seek.html) + * + * 跳转到指定位置 */ + seek( + /** 跳转的位置,单位 s。精确到小数点后 3 位,即支持 ms 级别精确度 */ + currentTime: number + ): void + /** [BackgroundAudioManager.stop()](https://developers.weixin.qq.com/miniprogram/dev/api/media/background-audio/BackgroundAudioManager.stop.html) + * + * 停止音乐 */ + stop(): void + } + interface BluetoothError { + /** 错误信息 + * + * | 错误码 | 错误信息 | 说明 | + * | - | - | - | + * | 0 | ok | 正常 | + * | -1 | already connet | 已连接 | + * | 10000 | not init | 未初始化蓝牙适配器 | + * | 10001 | not available | 当前蓝牙适配器不可用 | + * | 10002 | no device | 没有找到指定设备 | + * | 10003 | connection fail | 连接失败 | + * | 10004 | no service | 没有找到指定服务 | + * | 10005 | no characteristic | 没有找到指定特征值 | + * | 10006 | no connection | 当前连接已断开 | + * | 10007 | property not support | 当前特征值不支持此操作 | + * | 10008 | system error | 其余所有系统上报的异常 | + * | 10009 | system not support | Android 系统特有,系统版本低于 4.3 不支持 BLE | + * | 10012 | operate time out | 连接超时 | + * | 10013 | invalid_data | 连接 deviceId 为空或者是格式不正确 | */ errMsg: string + /** 错误码 + * + * | 错误码 | 错误信息 | 说明 | + * | - | - | - | + * | 0 | ok | 正常 | + * | -1 | already connet | 已连接 | + * | 10000 | not init | 未初始化蓝牙适配器 | + * | 10001 | not available | 当前蓝牙适配器不可用 | + * | 10002 | no device | 没有找到指定设备 | + * | 10003 | connection fail | 连接失败 | + * | 10004 | no service | 没有找到指定服务 | + * | 10005 | no characteristic | 没有找到指定特征值 | + * | 10006 | no connection | 当前连接已断开 | + * | 10007 | property not support | 当前特征值不支持此操作 | + * | 10008 | system error | 其余所有系统上报的异常 | + * | 10009 | system not support | Android 系统特有,系统版本低于 4.3 不支持 BLE | + * | 10012 | operate time out | 连接超时 | + * | 10013 | invalid_data | 连接 deviceId 为空或者是格式不正确 | */ errCode: number + } + interface CameraContext { + /** [CameraContext.setZoom(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/camera/CameraContext.setZoom.html) + * + * 设置缩放级别 + * + * 最低基础库: `2.10.0` */ + setZoom(option: SetZoomOption): void + /** [CameraContext.startRecord(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/camera/CameraContext.startRecord.html) + * + * 开始录像 */ + startRecord(option: CameraContextStartRecordOption): void + /** [CameraContext.stopRecord(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/camera/CameraContext.stopRecord.html) + * + * 结束录像 */ + stopRecord(option: CameraContextStopRecordOption): void + /** [CameraContext.takePhoto(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/camera/CameraContext.takePhoto.html) + * + * 拍摄照片 */ + takePhoto(option: TakePhotoOption): void + /** [[CameraFrameListener](https://developers.weixin.qq.com/miniprogram/dev/api/media/camera/CameraFrameListener.html) CameraContext.onCameraFrame(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/camera/CameraContext.onCameraFrame.html) +* +* 获取 Camera 实时帧数据 +* +* **** +* +* 注: 使用该接口需同时在 [camera](https://developers.weixin.qq.com/miniprogram/dev/component/camera.html) 组件属性中指定 frame-size。 +* +* **示例代码** +* +* +* ```js +const context = wx.createCameraContext() +const listener = context.onCameraFrame((frame) => { + console.log(frame.data instanceof ArrayBuffer, frame.width, frame.height) +}) +listener.start() +``` +* +* 最低基础库: `2.7.0` */ + onCameraFrame( + /** 回调函数 */ + callback: OnCameraFrameCallback + ): CameraFrameListener + } + interface CameraFrameListener { + /** [CameraFrameListener.start(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/camera/CameraFrameListener.start.html) + * + * 开始监听帧数据 */ + start(option?: CameraFrameListenerStartOption): void + /** [CameraFrameListener.stop(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/camera/CameraFrameListener.stop.html) + * + * 停止监听帧数据 */ + stop(option?: StopOption): void + } + interface Canvas { + /** [Canvas.cancelAnimationFrame(number requestID)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/Canvas.cancelAnimationFrame.html) + * + * 取消由 requestAnimationFrame 添加到计划中的动画帧请求。支持在 2D Canvas 和 WebGL Canvas 下使用, 但不支持混用 2D 和 WebGL 的方法。 + * + * 最低基础库: `2.7.0` */ + cancelAnimationFrame(requestID: number): void + /** [[ImageData](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/ImageData.html) Canvas.createImageData()](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/Canvas.createImageData.html) + * + * 创建一个 ImageData 对象。仅支持在 2D Canvas 中使用。 + * + * 最低基础库: `2.9.0` */ + createImageData(): ImageData + /** [[Image](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/Image.html) Canvas.createImage()](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/Canvas.createImage.html) + * + * 创建一个图片对象。 支持在 2D Canvas 和 WebGL Canvas 下使用, 但不支持混用 2D 和 WebGL 的方法。 + * + * 最低基础库: `2.7.0` */ + createImage(): Image + /** [[Path2D](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/Path2D.html) Canvas.createPath2D([Path2D](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/Path2D.html) path)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/Canvas.createPath2D.html) + * + * 创建 Path2D 对象 + * + * 最低基础库: `2.11.0` */ + createPath2D( + /** [Path2D](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/Path2D.html) + * + * */ + path: Path2D + ): Path2D + /** [[RenderingContext](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/RenderingContext.html) Canvas.getContext(string contextType)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/Canvas.getContext.html) + * + * 该方法返回 Canvas 的绘图上下文 + * + * **** + * + * 支持获取 2D 和 WebGL 绘图上下文 + * + * 最低基础库: `2.7.0` */ + getContext(contextType: string): any + /** [number Canvas.requestAnimationFrame(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/Canvas.requestAnimationFrame.html) + * + * 在下次进行重绘时执行。 支持在 2D Canvas 和 WebGL Canvas 下使用, 但不支持混用 2D 和 WebGL 的方法。 + * + * 最低基础库: `2.7.0` */ + requestAnimationFrame( + /** 执行的 callback */ + callback: (...args: any[]) => any + ): number + /** [string Canvas.toDataURL(string type, number encoderOptions)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/Canvas.toDataURL.html) + * + * 返回一个包含图片展示的 data URI 。可以使用 type 参数其类型,默认为 PNG 格式。 + * + * 最低基础库: `2.11.0` */ + toDataURL( + /** 图片格式,默认为 image/png */ + type: string, + /** 在指定图片格式为 image/jpeg 或 image/webp的情况下,可以从 0 到 1 的区间内选择图片的质量。如果超出取值范围,将会使用默认值 0.92。其他参数会被忽略。 */ + encoderOptions: number + ): string + } + interface CanvasContext { + /** [CanvasContext.arc(number x, number y, number r, number sAngle, number eAngle, boolean counterclockwise)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.arc.html) +* +* 创建一条弧线。 +* +* - 创建一个圆可以指定起始弧度为 0,终止弧度为 2 * Math.PI。 +* - 用 `stroke` 或者 `fill` 方法来在 `canvas` 中画弧线。 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') + +// Draw coordinates +ctx.arc(100, 75, 50, 0, 2 * Math.PI) +ctx.setFillStyle('#EEEEEE') +ctx.fill() + +ctx.beginPath() +ctx.moveTo(40, 75) +ctx.lineTo(160, 75) +ctx.moveTo(100, 15) +ctx.lineTo(100, 135) +ctx.setStrokeStyle('#AAAAAA') +ctx.stroke() + +ctx.setFontSize(12) +ctx.setFillStyle('black') +ctx.fillText('0', 165, 78) +ctx.fillText('0.5*PI', 83, 145) +ctx.fillText('1*PI', 15, 78) +ctx.fillText('1.5*PI', 83, 10) + +// Draw points +ctx.beginPath() +ctx.arc(100, 75, 2, 0, 2 * Math.PI) +ctx.setFillStyle('lightgreen') +ctx.fill() + +ctx.beginPath() +ctx.arc(100, 25, 2, 0, 2 * Math.PI) +ctx.setFillStyle('blue') +ctx.fill() + +ctx.beginPath() +ctx.arc(150, 75, 2, 0, 2 * Math.PI) +ctx.setFillStyle('red') +ctx.fill() + +// Draw arc +ctx.beginPath() +ctx.arc(100, 75, 50, 0, 1.5 * Math.PI) +ctx.setStrokeStyle('#333333') +ctx.stroke() + +ctx.draw() +``` +* +* ![](@program/dev/image/canvas/arc.png) +* +* 针对 arc(100, 75, 50, 0, 1.5 * Math.PI)的三个关键坐标如下: +* +* - 绿色: 圆心 (100, 75) +* - 红色: 起始弧度 (0) +* - 蓝色: 终止弧度 (1.5 * Math.PI) */ + arc( + /** 圆心的 x 坐标 */ + x: number, + /** 圆心的 y 坐标 */ + y: number, + /** 圆的半径 */ + r: number, + /** 起始弧度,单位弧度(在3点钟方向) */ + sAngle: number, + /** 终止弧度 */ + eAngle: number, + /** 弧度的方向是否是逆时针 */ + counterclockwise?: boolean + ): void + /** [CanvasContext.arcTo(number x1, number y1, number x2, number y2, number radius)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.arcTo.html) + * + * 根据控制点和半径绘制圆弧路径。 + * + * 最低基础库: `1.9.90` */ + arcTo( + /** 第一个控制点的 x 轴坐标 */ + x1: number, + /** 第一个控制点的 y 轴坐标 */ + y1: number, + /** 第二个控制点的 x 轴坐标 */ + x2: number, + /** 第二个控制点的 y 轴坐标 */ + y2: number, + /** 圆弧的半径 */ + radius: number + ): void + /** [CanvasContext.beginPath()](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.beginPath.html) +* +* 开始创建一个路径。需要调用 `fill` 或者 `stroke` 才会使用路径进行填充或描边 +* +* - 在最开始的时候相当于调用了一次 `beginPath`。 +* - 同一个路径内的多次 `setFillStyle`、`setStrokeStyle`、`setLineWidth`等设置,以最后一次设置为准。 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') +// begin path +ctx.rect(10, 10, 100, 30) +ctx.setFillStyle('yellow') +ctx.fill() + +// begin another path +ctx.beginPath() +ctx.rect(10, 40, 100, 30) + +// only fill this rect, not in current path +ctx.setFillStyle('blue') +ctx.fillRect(10, 70, 100, 30) + +ctx.rect(10, 100, 100, 30) + +// it will fill current path +ctx.setFillStyle('red') +ctx.fill() +ctx.draw() +``` +* +* ![](@program/dev/image/canvas/fill-path.png) */ + beginPath(): void + /** [CanvasContext.bezierCurveTo(number cp1x, number cp1y, number cp2x, number cp2y, number x, number y)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.bezierCurveTo.html) +* +* 创建三次方贝塞尔曲线路径。曲线的起始点为路径中前一个点。 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') + +// Draw points +ctx.beginPath() +ctx.arc(20, 20, 2, 0, 2 * Math.PI) +ctx.setFillStyle('red') +ctx.fill() + +ctx.beginPath() +ctx.arc(200, 20, 2, 0, 2 * Math.PI) +ctx.setFillStyle('lightgreen') +ctx.fill() + +ctx.beginPath() +ctx.arc(20, 100, 2, 0, 2 * Math.PI) +ctx.arc(200, 100, 2, 0, 2 * Math.PI) +ctx.setFillStyle('blue') +ctx.fill() + +ctx.setFillStyle('black') +ctx.setFontSize(12) + +// Draw guides +ctx.beginPath() +ctx.moveTo(20, 20) +ctx.lineTo(20, 100) +ctx.lineTo(150, 75) + +ctx.moveTo(200, 20) +ctx.lineTo(200, 100) +ctx.lineTo(70, 75) +ctx.setStrokeStyle('#AAAAAA') +ctx.stroke() + +// Draw quadratic curve +ctx.beginPath() +ctx.moveTo(20, 20) +ctx.bezierCurveTo(20, 100, 200, 100, 200, 20) +ctx.setStrokeStyle('black') +ctx.stroke() + +ctx.draw() +``` +* +* ![](@program/dev/image/canvas/bezier-curve.png) +* +* 针对 moveTo(20, 20) bezierCurveTo(20, 100, 200, 100, 200, 20) 的三个关键坐标如下: +* +* - 红色:起始点(20, 20) +* - 蓝色:两个控制点(20, 100) (200, 100) +* - 绿色:终止点(200, 20) */ + bezierCurveTo( + /** 第一个贝塞尔控制点的 x 坐标 */ + cp1x: number, + /** 第一个贝塞尔控制点的 y 坐标 */ + cp1y: number, + /** 第二个贝塞尔控制点的 x 坐标 */ + cp2x: number, + /** 第二个贝塞尔控制点的 y 坐标 */ + cp2y: number, + /** 结束点的 x 坐标 */ + x: number, + /** 结束点的 y 坐标 */ + y: number + ): void + /** [CanvasContext.clearRect(number x, number y, number width, number height)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.clearRect.html) +* +* 清除画布上在该矩形区域内的内容 +* +* **示例代码** +* +* +* clearRect 并非画一个白色的矩形在地址区域,而是清空,为了有直观感受,对 canvas 加了一层背景色。 +* ```html +* +* ``` +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') +ctx.setFillStyle('red') +ctx.fillRect(0, 0, 150, 200) +ctx.setFillStyle('blue') +ctx.fillRect(150, 0, 150, 200) +ctx.clearRect(10, 10, 150, 75) +ctx.draw() +``` +* ![](@program/dev/image/canvas/clear-rect.png) */ + clearRect( + /** 矩形路径左上角的横坐标 */ + x: number, + /** 矩形路径左上角的纵坐标 */ + y: number, + /** 矩形路径的宽度 */ + width: number, + /** 矩形路径的高度 */ + height: number + ): void + /** [CanvasContext.clip()](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.clip.html) +* +* 从原始画布中剪切任意形状和尺寸。一旦剪切了某个区域,则所有之后的绘图都会被限制在被剪切的区域内(不能访问画布上的其他区域)。可以在使用 `clip` 方法前通过使用 `save` 方法对当前画布区域进行保存,并在以后的任意时间通过`restore`方法对其进行恢复。 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') + +wx.downloadFile({ + url: 'http://is5.mzstatic.com/image/thumb/Purple128/v4/75/3b/90/753b907c-b7fb-5877-215a-759bd73691a4/source/50x50bb.jpg', + success: function(res) { + ctx.save() + ctx.beginPath() + ctx.arc(50, 50, 25, 0, 2*Math.PI) + ctx.clip() + ctx.drawImage(res.tempFilePath, 25, 25) + ctx.restore() + ctx.draw() + } +}) +``` +* ![](@program/dev/image/canvas/clip.png) +* +* 最低基础库: `1.6.0` */ + clip(): void + /** [CanvasContext.closePath()](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.closePath.html) +* +* 关闭一个路径。会连接起点和终点。如果关闭路径后没有调用 `fill` 或者 `stroke` 并开启了新的路径,那之前的路径将不会被渲染。 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') +ctx.moveTo(10, 10) +ctx.lineTo(100, 10) +ctx.lineTo(100, 100) +ctx.closePath() +ctx.stroke() +ctx.draw() +``` +* ![](@program/dev/image/canvas/close-line.png) +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') +// begin path +ctx.rect(10, 10, 100, 30) +ctx.closePath() + +// begin another path +ctx.beginPath() +ctx.rect(10, 40, 100, 30) + +// only fill this rect, not in current path +ctx.setFillStyle('blue') +ctx.fillRect(10, 70, 100, 30) + +ctx.rect(10, 100, 100, 30) + +// it will fill current path +ctx.setFillStyle('red') +ctx.fill() +ctx.draw() +``` +* +* ![](@program/dev/image/canvas/close-path.png) */ + closePath(): void + /** [CanvasContext.createPattern(string image, string repetition)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.createPattern.html) + * + * 对指定的图像创建模式的方法,可在指定的方向上重复元图像 + * + * 最低基础库: `1.9.90` */ + createPattern( + /** 重复的图像源,支持代码包路径和本地临时路径 (本地路径) */ + image: string, + /** 如何重复图像 + * + * 参数 repetition 可选值: + * - 'repeat': 水平竖直方向都重复; + * - 'repeat-x': 水平方向重复; + * - 'repeat-y': 竖直方向重复; + * - 'no-repeat': 不重复; */ + repetition: 'repeat' | 'repeat-x' | 'repeat-y' | 'no-repeat' + ): void + /** [CanvasContext.draw(boolean reserve, function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.draw.html) +* +* 将之前在绘图上下文中的描述(路径、变形、样式)画到 canvas 中。 +* +* **示例代码** +* +* +* 第二次 draw() reserve 为 true。所以保留了上一次的绘制结果,在上下文设置的 fillStyle 'red' 也变成了默认的 'black'。 +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') + +ctx.setFillStyle('red') +ctx.fillRect(10, 10, 150, 100) +ctx.draw() +ctx.fillRect(50, 50, 150, 100) +ctx.draw(true) +``` +* ![](@program/dev/image/canvas/reserve.png) +* +* **示例代码** +* +* +* 第二次 draw() reserve 为 false。所以没有保留了上一次的绘制结果和在上下文设置的 fillStyle 'red'。 +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') + +ctx.setFillStyle('red') +ctx.fillRect(10, 10, 150, 100) +ctx.draw() +ctx.fillRect(50, 50, 150, 100) +ctx.draw() +``` +* ![](@program/dev/image/canvas/un-reserve.png) */ + draw( + /** 本次绘制是否接着上一次绘制。即 reserve 参数为 false,则在本次调用绘制之前 native 层会先清空画布再继续绘制;若 reserve 参数为 true,则保留当前画布上的内容,本次调用 drawCanvas 绘制的内容覆盖在上面,默认 false。 */ + reserve?: boolean, + /** 绘制完成后执行的回调函数 */ + callback?: (...args: any[]) => any + ): void + /** [CanvasContext.drawImage(string imageResource, number sx, number sy, number sWidth, number sHeight, number dx, number dy, number dWidth, number dHeight)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.drawImage.html) +* +* 绘制图像到画布 +* +* **示例代码** +* +* +* +* 有三个版本的写法: +* +* - drawImage(imageResource, dx, dy) +* - drawImage(imageResource, dx, dy, dWidth, dHeight) +* - drawImage(imageResource, sx, sy, sWidth, sHeight, dx, dy, dWidth, dHeight) 从 1.9.0 起支持 +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') + +wx.chooseImage({ + success: function(res){ + ctx.drawImage(res.tempFilePaths[0], 0, 0, 150, 100) + ctx.draw() + } +}) + +``` +* ![](@program/dev/image/canvas/draw-image.png) */ + drawImage( + /** 所要绘制的图片资源(网络图片要通过 getImageInfo / downloadFile 先下载) */ + imageResource: string, + /** imageResource的左上角在目标 canvas 上 x 轴的位置 */ + dx: number, + /** imageResource的左上角在目标 canvas 上 y 轴的位置 */ + dy: number + ): void + /** [CanvasContext.drawImage(string imageResource, number sx, number sy, number sWidth, number sHeight, number dx, number dy, number dWidth, number dHeight)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.drawImage.html) +* +* 绘制图像到画布 +* +* **示例代码** +* +* +* +* 有三个版本的写法: +* +* - drawImage(imageResource, dx, dy) +* - drawImage(imageResource, dx, dy, dWidth, dHeight) +* - drawImage(imageResource, sx, sy, sWidth, sHeight, dx, dy, dWidth, dHeight) 从 1.9.0 起支持 +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') + +wx.chooseImage({ + success: function(res){ + ctx.drawImage(res.tempFilePaths[0], 0, 0, 150, 100) + ctx.draw() + } +}) + +``` +* ![](@program/dev/image/canvas/draw-image.png) */ + drawImage( + /** 所要绘制的图片资源(网络图片要通过 getImageInfo / downloadFile 先下载) */ + imageResource: string, + /** imageResource的左上角在目标 canvas 上 x 轴的位置 */ + dx: number, + /** imageResource的左上角在目标 canvas 上 y 轴的位置 */ + dy: number, + /** 在目标画布上绘制imageResource的宽度,允许对绘制的imageResource进行缩放 */ + dWidth: number, + /** 在目标画布上绘制imageResource的高度,允许对绘制的imageResource进行缩放 */ + dHeight: number + ): void + /** [CanvasContext.drawImage(string imageResource, number sx, number sy, number sWidth, number sHeight, number dx, number dy, number dWidth, number dHeight)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.drawImage.html) +* +* 绘制图像到画布 +* +* **示例代码** +* +* +* +* 有三个版本的写法: +* +* - drawImage(imageResource, dx, dy) +* - drawImage(imageResource, dx, dy, dWidth, dHeight) +* - drawImage(imageResource, sx, sy, sWidth, sHeight, dx, dy, dWidth, dHeight) 从 1.9.0 起支持 +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') + +wx.chooseImage({ + success: function(res){ + ctx.drawImage(res.tempFilePaths[0], 0, 0, 150, 100) + ctx.draw() + } +}) + +``` +* ![](@program/dev/image/canvas/draw-image.png) */ + drawImage( + /** 所要绘制的图片资源(网络图片要通过 getImageInfo / downloadFile 先下载) */ + imageResource: string, + /** 需要绘制到画布中的,imageResource的矩形(裁剪)选择框的左上角 x 坐标 */ + sx: number, + /** 需要绘制到画布中的,imageResource的矩形(裁剪)选择框的左上角 y 坐标 */ + sy: number, + /** 需要绘制到画布中的,imageResource的矩形(裁剪)选择框的宽度 */ + sWidth: number, + /** 需要绘制到画布中的,imageResource的矩形(裁剪)选择框的高度 */ + sHeight: number, + /** imageResource的左上角在目标 canvas 上 x 轴的位置 */ + dx: number, + /** imageResource的左上角在目标 canvas 上 y 轴的位置 */ + dy: number, + /** 在目标画布上绘制imageResource的宽度,允许对绘制的imageResource进行缩放 */ + dWidth: number, + /** 在目标画布上绘制imageResource的高度,允许对绘制的imageResource进行缩放 */ + dHeight: number + ): void + /** [CanvasContext.fill()](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.fill.html) +* +* 对当前路径中的内容进行填充。默认的填充色为黑色。 +* +* **示例代码** +* +* +* +* 如果当前路径没有闭合,fill() 方法会将起点和终点进行连接,然后填充。 +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') +ctx.moveTo(10, 10) +ctx.lineTo(100, 10) +ctx.lineTo(100, 100) +ctx.fill() +ctx.draw() +``` +* +* fill() 填充的的路径是从 beginPath() 开始计算,但是不会将 fillRect() 包含进去。 +* +* ![](@program/dev/image/canvas/fill-line.png) +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') +// begin path +ctx.rect(10, 10, 100, 30) +ctx.setFillStyle('yellow') +ctx.fill() + +// begin another path +ctx.beginPath() +ctx.rect(10, 40, 100, 30) + +// only fill this rect, not in current path +ctx.setFillStyle('blue') +ctx.fillRect(10, 70, 100, 30) + +ctx.rect(10, 100, 100, 30) + +// it will fill current path +ctx.setFillStyle('red') +ctx.fill() +ctx.draw() +``` +* +* ![](@program/dev/image/canvas/fill-path.png) */ + fill(): void + /** [CanvasContext.fillRect(number x, number y, number width, number height)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.fillRect.html) +* +* 填充一个矩形。用 [`setFillStyle`](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.setFillStyle.html) 设置矩形的填充色,如果没设置默认是黑色。 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') +ctx.setFillStyle('red') +ctx.fillRect(10, 10, 150, 75) +ctx.draw() +``` +* ![](@program/dev/image/canvas/fill-rect.png) */ + fillRect( + /** 矩形路径左上角的横坐标 */ + x: number, + /** 矩形路径左上角的纵坐标 */ + y: number, + /** 矩形路径的宽度 */ + width: number, + /** 矩形路径的高度 */ + height: number + ): void + /** [CanvasContext.fillText(string text, number x, number y, number maxWidth)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.fillText.html) +* +* 在画布上绘制被填充的文本 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') + +ctx.setFontSize(20) +ctx.fillText('Hello', 20, 20) +ctx.fillText('MINA', 100, 100) + +ctx.draw() +``` +* ![](@program/dev/image/canvas/text.png) */ + fillText( + /** 在画布上输出的文本 */ + text: string, + /** 绘制文本的左上角 x 坐标位置 */ + x: number, + /** 绘制文本的左上角 y 坐标位置 */ + y: number, + /** 需要绘制的最大宽度,可选 */ + maxWidth?: number + ): void + /** [CanvasContext.lineTo(number x, number y)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.lineTo.html) +* +* 增加一个新点,然后创建一条从上次指定点到目标点的线。用 `stroke` 方法来画线条 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') +ctx.moveTo(10, 10) +ctx.rect(10, 10, 100, 50) +ctx.lineTo(110, 60) +ctx.stroke() +ctx.draw() +``` +* ![](@program/dev/image/canvas/line-to.png) */ + lineTo( + /** 目标位置的 x 坐标 */ + x: number, + /** 目标位置的 y 坐标 */ + y: number + ): void + /** [CanvasContext.moveTo(number x, number y)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.moveTo.html) +* +* 把路径移动到画布中的指定点,不创建线条。用 `stroke` 方法来画线条 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') +ctx.moveTo(10, 10) +ctx.lineTo(100, 10) + +ctx.moveTo(10, 50) +ctx.lineTo(100, 50) +ctx.stroke() +ctx.draw() +``` +* ![](@program/dev/image/canvas/move-to.png) */ + moveTo( + /** 目标位置的 x 坐标 */ + x: number, + /** 目标位置的 y 坐标 */ + y: number + ): void + /** [CanvasContext.quadraticCurveTo(number cpx, number cpy, number x, number y)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.quadraticCurveTo.html) +* +* 创建二次贝塞尔曲线路径。曲线的起始点为路径中前一个点。 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') + +// Draw points +ctx.beginPath() +ctx.arc(20, 20, 2, 0, 2 * Math.PI) +ctx.setFillStyle('red') +ctx.fill() + +ctx.beginPath() +ctx.arc(200, 20, 2, 0, 2 * Math.PI) +ctx.setFillStyle('lightgreen') +ctx.fill() + +ctx.beginPath() +ctx.arc(20, 100, 2, 0, 2 * Math.PI) +ctx.setFillStyle('blue') +ctx.fill() + +ctx.setFillStyle('black') +ctx.setFontSize(12) + +// Draw guides +ctx.beginPath() +ctx.moveTo(20, 20) +ctx.lineTo(20, 100) +ctx.lineTo(200, 20) +ctx.setStrokeStyle('#AAAAAA') +ctx.stroke() + +// Draw quadratic curve +ctx.beginPath() +ctx.moveTo(20, 20) +ctx.quadraticCurveTo(20, 100, 200, 20) +ctx.setStrokeStyle('black') +ctx.stroke() + +ctx.draw() +``` +* +* ![](@program/dev/image/canvas/quadratic-curve-to.png) +* +* 针对 moveTo(20, 20) quadraticCurveTo(20, 100, 200, 20) 的三个关键坐标如下: +* +* - 红色:起始点(20, 20) +* - 蓝色:控制点(20, 100) +* - 绿色:终止点(200, 20) */ + quadraticCurveTo( + /** 贝塞尔控制点的 x 坐标 */ + cpx: number, + /** 贝塞尔控制点的 y 坐标 */ + cpy: number, + /** 结束点的 x 坐标 */ + x: number, + /** 结束点的 y 坐标 */ + y: number + ): void + /** [CanvasContext.rect(number x, number y, number width, number height)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.rect.html) +* +* 创建一个矩形路径。需要用 [`fill`](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.fill.html) 或者 [`stroke`](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.stroke.html) 方法将矩形真正的画到 `canvas` 中 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') +ctx.rect(10, 10, 150, 75) +ctx.setFillStyle('red') +ctx.fill() +ctx.draw() +``` +* ![](@program/dev/image/canvas/fill-rect.png) */ + rect( + /** 矩形路径左上角的横坐标 */ + x: number, + /** 矩形路径左上角的纵坐标 */ + y: number, + /** 矩形路径的宽度 */ + width: number, + /** 矩形路径的高度 */ + height: number + ): void + /** [CanvasContext.restore()](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.restore.html) +* +* 恢复之前保存的绘图上下文。 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') + +// save the default fill style +ctx.save() +ctx.setFillStyle('red') +ctx.fillRect(10, 10, 150, 100) + +// restore to the previous saved state +ctx.restore() +ctx.fillRect(50, 50, 150, 100) + +ctx.draw() +``` +* ![](@program/dev/image/canvas/save-restore.png) */ + restore(): void + /** [CanvasContext.rotate(number rotate)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.rotate.html) +* +* 以原点为中心顺时针旋转当前坐标轴。多次调用旋转的角度会叠加。原点可以用 `translate` 方法修改。 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') + +ctx.strokeRect(100, 10, 150, 100) +ctx.rotate(20 * Math.PI / 180) +ctx.strokeRect(100, 10, 150, 100) +ctx.rotate(20 * Math.PI / 180) +ctx.strokeRect(100, 10, 150, 100) + +ctx.draw() +``` +* ![](@program/dev/image/canvas/rotate.png) */ + rotate( + /** 旋转角度,以弧度计 degrees * Math.PI/180;degrees 范围为 0-360 */ + rotate: number + ): void + /** [CanvasContext.save()](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.save.html) +* +* 保存绘图上下文。 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') + +// save the default fill style +ctx.save() +ctx.setFillStyle('red') +ctx.fillRect(10, 10, 150, 100) + +// restore to the previous saved state +ctx.restore() +ctx.fillRect(50, 50, 150, 100) + +ctx.draw() +``` +* ![](@program/dev/image/canvas/save-restore.png) */ + save(): void + /** [CanvasContext.scale(number scaleWidth, number scaleHeight)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.scale.html) +* +* 在调用后,之后创建的路径其横纵坐标会被缩放。多次调用倍数会相乘。 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') + +ctx.strokeRect(10, 10, 25, 15) +ctx.scale(2, 2) +ctx.strokeRect(10, 10, 25, 15) +ctx.scale(2, 2) +ctx.strokeRect(10, 10, 25, 15) + +ctx.draw() +``` +* ![](@program/dev/image/canvas/scale.png) */ + scale( + /** 横坐标缩放的倍数 (1 = 100%,0.5 = 50%,2 = 200%) */ + scaleWidth: number, + /** 纵坐标轴缩放的倍数 (1 = 100%,0.5 = 50%,2 = 200%) */ + scaleHeight: number + ): void + /** [CanvasContext.setFillStyle(string|[CanvasGradient](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasGradient.html) color)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.setFillStyle.html) +* +* 设置填充色。 +* +* **代码示例** +* +* +* ```js +const ctx = wx.createCanvasContext('myCanvas') +ctx.setFillStyle('red') +ctx.fillRect(10, 10, 150, 75) +ctx.draw() +``` +* ![](@program/dev/image/canvas/fill-rect.png) +* @deprecated 基础库版本 [1.9.90](https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html) 起已废弃,请使用 [CanvasContext.fillStyle](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.html) 替换 +* */ + setFillStyle( + /** 填充的颜色,默认颜色为 black。 */ + color: string | CanvasGradient + ): void + /** [CanvasContext.setFontSize(number fontSize)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.setFontSize.html) +* +* 设置字体的字号 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') + +ctx.setFontSize(20) +ctx.fillText('20', 20, 20) +ctx.setFontSize(30) +ctx.fillText('30', 40, 40) +ctx.setFontSize(40) +ctx.fillText('40', 60, 60) +ctx.setFontSize(50) +ctx.fillText('50', 90, 90) + +ctx.draw() +``` +* ![](@program/dev/image/canvas/font-size.png) +* @deprecated 基础库版本 [1.9.90](https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html) 起已废弃,请使用 [CanvasContext.font](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.html) 替换 +* */ + setFontSize( + /** 字体的字号 */ + fontSize: number + ): void + /** [CanvasContext.setGlobalAlpha(number alpha)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.setGlobalAlpha.html) +* +* 设置全局画笔透明度。 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') + +ctx.setFillStyle('red') +ctx.fillRect(10, 10, 150, 100) +ctx.setGlobalAlpha(0.2) +ctx.setFillStyle('blue') +ctx.fillRect(50, 50, 150, 100) +ctx.setFillStyle('yellow') +ctx.fillRect(100, 100, 150, 100) + +ctx.draw() +``` +* ![](@program/dev/image/canvas/global-alpha.png) +* @deprecated 基础库版本 [1.9.90](https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html) 起已废弃,请使用 [CanvasContext.globalAlpha](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.html) 替换 +* */ + setGlobalAlpha( + /** 透明度。范围 0-1,0 表示完全透明,1 表示完全不透明。 */ + alpha: number + ): void + /** [CanvasContext.setLineCap(string lineCap)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.setLineCap.html) +* +* 设置线条的端点样式 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') +ctx.beginPath() +ctx.moveTo(10, 10) +ctx.lineTo(150, 10) +ctx.stroke() + +ctx.beginPath() +ctx.setLineCap('butt') +ctx.setLineWidth(10) +ctx.moveTo(10, 30) +ctx.lineTo(150, 30) +ctx.stroke() + +ctx.beginPath() +ctx.setLineCap('round') +ctx.setLineWidth(10) +ctx.moveTo(10, 50) +ctx.lineTo(150, 50) +ctx.stroke() + +ctx.beginPath() +ctx.setLineCap('square') +ctx.setLineWidth(10) +ctx.moveTo(10, 70) +ctx.lineTo(150, 70) +ctx.stroke() + +ctx.draw() +``` +* ![](@program/dev/image/canvas/line-cap.png) +* @deprecated 基础库版本 [1.9.90](https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html) 起已废弃,请使用 [CanvasContext.lineCap](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.html) 替换 +* */ + setLineCap( + /** 线条的结束端点样式 + * + * 参数 lineCap 可选值: + * - 'butt': 向线条的每个末端添加平直的边缘。; + * - 'round': 向线条的每个末端添加圆形线帽。; + * - 'square': 向线条的每个末端添加正方形线帽。; */ + lineCap: 'butt' | 'round' | 'square' + ): void + /** [CanvasContext.setLineDash(Array.<number> pattern, number offset)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.setLineDash.html) +* +* 设置虚线样式。 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') + +ctx.setLineDash([10, 20], 5); + +ctx.beginPath(); +ctx.moveTo(0,100); +ctx.lineTo(400, 100); +ctx.stroke(); + +ctx.draw() +``` +* ![](@program/dev/image/canvas/set-line-dash.png) +* +* 最低基础库: `1.6.0` +* @deprecated 基础库版本 [1.9.90](https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html) 起已废弃,请使用 [CanvasContext.lineDashOffset](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.html) 替换 +* */ + setLineDash( + /** 一组描述交替绘制线段和间距(坐标空间单位)长度的数字 */ + pattern: number[], + /** 虚线偏移量 */ + offset: number + ): void + /** [CanvasContext.setLineJoin(string lineJoin)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.setLineJoin.html) +* +* 设置线条的交点样式 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') +ctx.beginPath() +ctx.moveTo(10, 10) +ctx.lineTo(100, 50) +ctx.lineTo(10, 90) +ctx.stroke() + +ctx.beginPath() +ctx.setLineJoin('bevel') +ctx.setLineWidth(10) +ctx.moveTo(50, 10) +ctx.lineTo(140, 50) +ctx.lineTo(50, 90) +ctx.stroke() + +ctx.beginPath() +ctx.setLineJoin('round') +ctx.setLineWidth(10) +ctx.moveTo(90, 10) +ctx.lineTo(180, 50) +ctx.lineTo(90, 90) +ctx.stroke() + +ctx.beginPath() +ctx.setLineJoin('miter') +ctx.setLineWidth(10) +ctx.moveTo(130, 10) +ctx.lineTo(220, 50) +ctx.lineTo(130, 90) +ctx.stroke() + +ctx.draw() +``` +* ![](@program/dev/image/canvas/line-join.png) +* @deprecated 基础库版本 [1.9.90](https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html) 起已废弃,请使用 [CanvasContext.lineJoin](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.html) 替换 +* */ + setLineJoin( + /** 线条的结束交点样式 + * + * 参数 lineJoin 可选值: + * - 'bevel': 斜角; + * - 'round': 圆角; + * - 'miter': 尖角; */ + lineJoin: 'bevel' | 'round' | 'miter' + ): void + /** [CanvasContext.setLineWidth(number lineWidth)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.setLineWidth.html) +* +* 设置线条的宽度 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') +ctx.beginPath() +ctx.moveTo(10, 10) +ctx.lineTo(150, 10) +ctx.stroke() + +ctx.beginPath() +ctx.setLineWidth(5) +ctx.moveTo(10, 30) +ctx.lineTo(150, 30) +ctx.stroke() + +ctx.beginPath() +ctx.setLineWidth(10) +ctx.moveTo(10, 50) +ctx.lineTo(150, 50) +ctx.stroke() + +ctx.beginPath() +ctx.setLineWidth(15) +ctx.moveTo(10, 70) +ctx.lineTo(150, 70) +ctx.stroke() + +ctx.draw() +``` +* +* ![](@program/dev/image/canvas/line-width.png) +* @deprecated 基础库版本 [1.9.90](https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html) 起已废弃,请使用 [CanvasContext.lineWidth](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.html) 替换 +* */ + setLineWidth( + /** 线条的宽度,单位px */ + lineWidth: number + ): void + /** [CanvasContext.setMiterLimit(number miterLimit)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.setMiterLimit.html) +* +* 设置最大斜接长度。斜接长度指的是在两条线交汇处内角和外角之间的距离。当 [CanvasContext.setLineJoin()](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.setLineJoin.html) 为 miter 时才有效。超过最大倾斜长度的,连接处将以 lineJoin 为 bevel 来显示。 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') +ctx.beginPath() +ctx.setLineWidth(10) +ctx.setLineJoin('miter') +ctx.setMiterLimit(1) +ctx.moveTo(10, 10) +ctx.lineTo(100, 50) +ctx.lineTo(10, 90) +ctx.stroke() + +ctx.beginPath() +ctx.setLineWidth(10) +ctx.setLineJoin('miter') +ctx.setMiterLimit(2) +ctx.moveTo(50, 10) +ctx.lineTo(140, 50) +ctx.lineTo(50, 90) +ctx.stroke() + +ctx.beginPath() +ctx.setLineWidth(10) +ctx.setLineJoin('miter') +ctx.setMiterLimit(3) +ctx.moveTo(90, 10) +ctx.lineTo(180, 50) +ctx.lineTo(90, 90) +ctx.stroke() + +ctx.beginPath() +ctx.setLineWidth(10) +ctx.setLineJoin('miter') +ctx.setMiterLimit(4) +ctx.moveTo(130, 10) +ctx.lineTo(220, 50) +ctx.lineTo(130, 90) +ctx.stroke() + +ctx.draw() +``` +* ![](@program/dev/image/canvas/miter-limit.png) +* @deprecated 基础库版本 [1.9.90](https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html) 起已废弃,请使用 [CanvasContext.miterLimit](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.html) 替换 +* */ + setMiterLimit( + /** 最大斜接长度 */ + miterLimit: number + ): void + /** [CanvasContext.setShadow(number offsetX, number offsetY, number blur, string color)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.setShadow.html) +* +* 设定阴影样式。 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') +ctx.setFillStyle('red') +ctx.setShadow(10, 50, 50, 'blue') +ctx.fillRect(10, 10, 150, 75) +ctx.draw() +``` +* ![](@program/dev/image/canvas/shadow.png) +* @deprecated 基础库版本 [1.9.90](https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html) 起已废弃,请使用 [CanvasContext.shadowOffsetX|CanvasContext.shadowOffsetY|CanvasContext.shadowColor|CanvasContext.shadowBlur](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.html) 替换 +* */ + setShadow( + /** 阴影相对于形状在水平方向的偏移,默认值为 0。 */ + offsetX: number, + /** 阴影相对于形状在竖直方向的偏移,默认值为 0。 */ + offsetY: number, + /** 阴影的模糊级别,数值越大越模糊。范围 0- 100。,默认值为 0。 */ + blur: number, + /** 阴影的颜色。默认值为 black。 */ + color: string + ): void + /** [CanvasContext.setStrokeStyle(string|[CanvasGradient](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasGradient.html) color)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.setStrokeStyle.html) +* +* 设置描边颜色。 +* +* **代码示例** +* +* +* ```js +const ctx = wx.createCanvasContext('myCanvas') +ctx.setStrokeStyle('red') +ctx.strokeRect(10, 10, 150, 75) +ctx.draw() +``` +* ![](@program/dev/image/canvas/stroke-rect.png) +* @deprecated 基础库版本 [1.9.90](https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html) 起已废弃,请使用 [CanvasContext.strokeStyle](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.html) 替换 +* */ + setStrokeStyle( + /** 描边的颜色,默认颜色为 black。 */ + color: string | CanvasGradient + ): void + /** [CanvasContext.setTextAlign(string align)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.setTextAlign.html) +* +* 设置文字的对齐 +* +* **示例代码** +* +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') + +ctx.setStrokeStyle('red') +ctx.moveTo(150, 20) +ctx.lineTo(150, 170) +ctx.stroke() + +ctx.setFontSize(15) +ctx.setTextAlign('left') +ctx.fillText('textAlign=left', 150, 60) + +ctx.setTextAlign('center') +ctx.fillText('textAlign=center', 150, 80) + +ctx.setTextAlign('right') +ctx.fillText('textAlign=right', 150, 100) + +ctx.draw() +``` +* +* ![](@program/dev/image/canvas/set-text-align.png) +* +* 最低基础库: `1.1.0` */ + setTextAlign( + /** 文字的对齐方式 + * + * 参数 align 可选值: + * - 'left': 左对齐; + * - 'center': 居中对齐; + * - 'right': 右对齐; */ + align: 'left' | 'center' | 'right' + ): void + /** [CanvasContext.setTextBaseline(string textBaseline)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.setTextBaseline.html) +* +* 设置文字的竖直对齐 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') + +ctx.setStrokeStyle('red') +ctx.moveTo(5, 75) +ctx.lineTo(295, 75) +ctx.stroke() + +ctx.setFontSize(20) + +ctx.setTextBaseline('top') +ctx.fillText('top', 5, 75) + +ctx.setTextBaseline('middle') +ctx.fillText('middle', 50, 75) + +ctx.setTextBaseline('bottom') +ctx.fillText('bottom', 120, 75) + +ctx.setTextBaseline('normal') +ctx.fillText('normal', 200, 75) + +ctx.draw() +``` +* ![](@program/dev/image/canvas/set-text-baseline.png) +* +* 最低基础库: `1.4.0` */ + setTextBaseline( + /** 文字的竖直对齐方式 + * + * 参数 textBaseline 可选值: + * - 'top': 顶部对齐; + * - 'bottom': 底部对齐; + * - 'middle': 居中对齐; + * - 'normal': ; */ + textBaseline: 'top' | 'bottom' | 'middle' | 'normal' + ): void + /** [CanvasContext.setTransform(number scaleX, number skewX, number skewY, number scaleY, number translateX, number translateY)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.setTransform.html) + * + * 使用矩阵重新设置(覆盖)当前变换的方法 + * + * 最低基础库: `1.9.90` */ + setTransform( + /** 水平缩放 */ + scaleX: number, + /** 水平倾斜 */ + skewX: number, + /** 垂直倾斜 */ + skewY: number, + /** 垂直缩放 */ + scaleY: number, + /** 水平移动 */ + translateX: number, + /** 垂直移动 */ + translateY: number + ): void + /** [CanvasContext.stroke()](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.stroke.html) +* +* 画出当前路径的边框。默认颜色色为黑色。 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') +ctx.moveTo(10, 10) +ctx.lineTo(100, 10) +ctx.lineTo(100, 100) +ctx.stroke() +ctx.draw() +``` +* ![](@program/dev/image/canvas/stroke-line.png) +* +* stroke() 描绘的的路径是从 beginPath() 开始计算,但是不会将 strokeRect() 包含进去。 +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') +// begin path +ctx.rect(10, 10, 100, 30) +ctx.setStrokeStyle('yellow') +ctx.stroke() + +// begin another path +ctx.beginPath() +ctx.rect(10, 40, 100, 30) + +// only stoke this rect, not in current path +ctx.setStrokeStyle('blue') +ctx.strokeRect(10, 70, 100, 30) + +ctx.rect(10, 100, 100, 30) + +// it will stroke current path +ctx.setStrokeStyle('red') +ctx.stroke() +ctx.draw() +``` +* +* ![](@program/dev/image/canvas/stroke-path.png) */ + stroke(): void + /** [CanvasContext.strokeRect(number x, number y, number width, number height)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.strokeRect.html) +* +* 画一个矩形(非填充)。 用 [`setStrokeStyle`](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.setStrokeStyle.html) 设置矩形线条的颜色,如果没设置默认是黑色。 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') +ctx.setStrokeStyle('red') +ctx.strokeRect(10, 10, 150, 75) +ctx.draw() +``` +* ![](@program/dev/image/canvas/stroke-rect.png) */ + strokeRect( + /** 矩形路径左上角的横坐标 */ + x: number, + /** 矩形路径左上角的纵坐标 */ + y: number, + /** 矩形路径的宽度 */ + width: number, + /** 矩形路径的高度 */ + height: number + ): void + /** [CanvasContext.strokeText(string text, number x, number y, number maxWidth)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.strokeText.html) + * + * 给定的 (x, y) 位置绘制文本描边的方法 + * + * 最低基础库: `1.9.90` */ + strokeText( + /** 要绘制的文本 */ + text: string, + /** 文本起始点的 x 轴坐标 */ + x: number, + /** 文本起始点的 y 轴坐标 */ + y: number, + /** 需要绘制的最大宽度,可选 */ + maxWidth?: number + ): void + /** [CanvasContext.transform(number scaleX, number skewX, number skewY, number scaleY, number translateX, number translateY)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.transform.html) + * + * 使用矩阵多次叠加当前变换的方法 + * + * 最低基础库: `1.9.90` */ + transform( + /** 水平缩放 */ + scaleX: number, + /** 水平倾斜 */ + skewX: number, + /** 垂直倾斜 */ + skewY: number, + /** 垂直缩放 */ + scaleY: number, + /** 水平移动 */ + translateX: number, + /** 垂直移动 */ + translateY: number + ): void + /** [CanvasContext.translate(number x, number y)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.translate.html) +* +* 对当前坐标系的原点 (0, 0) 进行变换。默认的坐标系原点为页面左上角。 +* +* **示例代码** +* +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') + +ctx.strokeRect(10, 10, 150, 100) +ctx.translate(20, 20) +ctx.strokeRect(10, 10, 150, 100) +ctx.translate(20, 20) +ctx.strokeRect(10, 10, 150, 100) + +ctx.draw() +``` +* +* ![](@program/dev/image/canvas/translate.png) */ + translate( + /** 水平坐标平移量 */ + x: number, + /** 竖直坐标平移量 */ + y: number + ): void + /** [Object CanvasContext.measureText(string text)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.measureText.html) + * + * 测量文本尺寸信息。目前仅返回文本宽度。同步接口。 + * + * 最低基础库: `1.9.90` */ + measureText( + /** 要测量的文本 */ + text: string + ): TextMetrics + /** [[CanvasGradient](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasGradient.html) CanvasContext.createCircularGradient(number x, number y, number r)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.createCircularGradient.html) +* +* 创建一个圆形的渐变颜色。起点在圆心,终点在圆环。返回的`CanvasGradient`对象需要使用 [CanvasGradient.addColorStop()](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasGradient.addColorStop.html) 来指定渐变点,至少要两个。 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') + +// Create circular gradient +const grd = ctx.createCircularGradient(75, 50, 50) +grd.addColorStop(0, 'red') +grd.addColorStop(1, 'white') + +// Fill with gradient +ctx.setFillStyle(grd) +ctx.fillRect(10, 10, 150, 80) +ctx.draw() +``` +* ![](@program/dev/image/canvas/circular-gradient.png) */ + createCircularGradient( + /** 圆心的 x 坐标 */ + x: number, + /** 圆心的 y 坐标 */ + y: number, + /** 圆的半径 */ + r: number + ): CanvasGradient + /** [[CanvasGradient](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasGradient.html) CanvasContext.createLinearGradient(number x0, number y0, number x1, number y1)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.createLinearGradient.html) +* +* 创建一个线性的渐变颜色。返回的`CanvasGradient`对象需要使用 [CanvasGradient.addColorStop()](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasGradient.addColorStop.html) 来指定渐变点,至少要两个。 +* +* **示例代码** +* +* +* ```javascript +const ctx = wx.createCanvasContext('myCanvas') + +// Create linear gradient +const grd = ctx.createLinearGradient(0, 0, 200, 0) +grd.addColorStop(0, 'red') +grd.addColorStop(1, 'white') + +// Fill with gradient +ctx.setFillStyle(grd) +ctx.fillRect(10, 10, 150, 80) +ctx.draw() +``` +* ![](@program/dev/image/canvas/linear-gradient.png) */ + createLinearGradient( + /** 起点的 x 坐标 */ + x0: number, + /** 起点的 y 坐标 */ + y0: number, + /** 终点的 x 坐标 */ + x1: number, + /** 终点的 y 坐标 */ + y1: number + ): CanvasGradient + } + interface CanvasGradient { + /** [CanvasGradient.addColorStop(number stop, string color)](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasGradient.addColorStop.html) +* +* 添加颜色的渐变点。小于最小 stop 的部分会按最小 stop 的 color 来渲染,大于最大 stop 的部分会按最大 stop 的 color 来渲染 +* +* **示例代码** +* +* +* ```js +const ctx = wx.createCanvasContext('myCanvas') + +// Create circular gradient +const grd = ctx.createLinearGradient(30, 10, 120, 10) +grd.addColorStop(0, 'red') +grd.addColorStop(0.16, 'orange') +grd.addColorStop(0.33, 'yellow') +grd.addColorStop(0.5, 'green') +grd.addColorStop(0.66, 'cyan') +grd.addColorStop(0.83, 'blue') +grd.addColorStop(1, 'purple') + +// Fill with gradient +ctx.setFillStyle(grd) +ctx.fillRect(10, 10, 150, 80) +ctx.draw() +``` +* ![](@program/dev/image/canvas/color-stop.png) */ + addColorStop( + /** 表示渐变中开始与结束之间的位置,范围 0-1。 */ + stop: number, + /** 渐变点的颜色。 */ + color: string + ): void + } + interface Console { + /** [console.debug()](https://developers.weixin.qq.com/miniprogram/dev/api/base/debug/console.debug.html) + * + * 向调试面板中打印 debug 日志 */ + debug( + /** 日志内容,可以有任意多个。 */ + ...args: any[] + ): void + /** [console.error()](https://developers.weixin.qq.com/miniprogram/dev/api/base/debug/console.error.html) + * + * 向调试面板中打印 error 日志 */ + error( + /** 日志内容,可以有任意多个。 */ + ...args: any[] + ): void + /** [console.group(string label)](https://developers.weixin.qq.com/miniprogram/dev/api/base/debug/console.group.html) + * + * 在调试面板中创建一个新的分组。随后输出的内容都会被添加一个缩进,表示该内容属于当前分组。调用 [console.groupEnd](https://developers.weixin.qq.com/miniprogram/dev/api/base/debug/console.groupEnd.html)之后分组结束。 + * + * **注意** + * + * + * 仅在工具中有效,在 vConsole 中为空函数实现。 */ + group( + /** 分组标记,可选。 */ + label?: string + ): void + /** [console.groupEnd()](https://developers.weixin.qq.com/miniprogram/dev/api/base/debug/console.groupEnd.html) + * + * 结束由 [console.group](https://developers.weixin.qq.com/miniprogram/dev/api/base/debug/console.group.html) 创建的分组 + * + * **注意** + * + * + * 仅在工具中有效,在 vConsole 中为空函数实现。 */ + groupEnd(): void + /** [console.info()](https://developers.weixin.qq.com/miniprogram/dev/api/base/debug/console.info.html) + * + * 向调试面板中打印 info 日志 */ + info( + /** 日志内容,可以有任意多个。 */ + ...args: any[] + ): void + /** [console.log()](https://developers.weixin.qq.com/miniprogram/dev/api/base/debug/console.log.html) + * + * 向调试面板中打印 log 日志 */ + log( + /** 日志内容,可以有任意多个。 */ + ...args: any[] + ): void + /** [console.warn()](https://developers.weixin.qq.com/miniprogram/dev/api/base/debug/console.warn.html) + * + * 向调试面板中打印 warn 日志 */ + warn( + /** 日志内容,可以有任意多个。 */ + ...args: any[] + ): void + } + interface DownloadTask { + /** [DownloadTask.abort()](https://developers.weixin.qq.com/miniprogram/dev/api/network/download/DownloadTask.abort.html) + * + * 中断下载任务 + * + * 最低基础库: `1.4.0` */ + abort(): void + /** [DownloadTask.offHeadersReceived(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/network/download/DownloadTask.offHeadersReceived.html) + * + * 取消监听 HTTP Response Header 事件 + * + * 最低基础库: `2.1.0` */ + offHeadersReceived( + /** HTTP Response Header 事件的回调函数 */ + callback?: OffHeadersReceivedCallback + ): void + /** [DownloadTask.offProgressUpdate(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/network/download/DownloadTask.offProgressUpdate.html) + * + * 取消监听下载进度变化事件 + * + * 最低基础库: `2.1.0` */ + offProgressUpdate( + /** 下载进度变化事件的回调函数 */ + callback?: DownloadTaskOffProgressUpdateCallback + ): void + /** [DownloadTask.onHeadersReceived(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/network/download/DownloadTask.onHeadersReceived.html) + * + * 监听 HTTP Response Header 事件。会比请求完成事件更早 + * + * 最低基础库: `2.1.0` */ + onHeadersReceived( + /** HTTP Response Header 事件的回调函数 */ + callback: OnHeadersReceivedCallback + ): void + /** [DownloadTask.onProgressUpdate(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/network/download/DownloadTask.onProgressUpdate.html) + * + * 监听下载进度变化事件 + * + * 最低基础库: `1.4.0` */ + onProgressUpdate( + /** 下载进度变化事件的回调函数 */ + callback: DownloadTaskOnProgressUpdateCallback + ): void + } + interface EditorContext { + /** [EditorContext.blur(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/editor/EditorContext.blur.html) + * + * 编辑器失焦,同时收起键盘。 + * + * 最低基础库: `2.8.3` */ + blur(option?: BlurOption): void + /** [EditorContext.clear(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/editor/EditorContext.clear.html) + * + * 清空编辑器内容 + * + * 最低基础库: `2.7.0` */ + clear(option?: ClearOption): void + /** [EditorContext.format(string name, string value)](https://developers.weixin.qq.com/miniprogram/dev/api/media/editor/EditorContext.format.html) + * + * 修改样式 + * + * **** + * + * ## 支持设置的样式列表 + * | name | value | verson | + * | --------------------------------------------------------- | ------------------------------- | ------ | + * | bold | | 2.7.0 | + * | italic | | 2.7.0 | + * | underline | | 2.7.0 | + * | strike | | 2.7.0 | + * | ins | | 2.7.0 | + * | script | sub / super | 2.7.0 | + * | header | H1 / H2 / h3 / H4 / h5 / H6 | 2.7.0 | + * | align | left / center / right / justify | 2.7.0 | + * | direction | rtl | 2.7.0 | + * | indent | -1 / +1 | 2.7.0 | + * | list | ordered / bullet / check | 2.7.0 | + * | color | hex color | 2.7.0 | + * | backgroundColor | hex color | 2.7.0 | + * | margin/marginTop/marginBottom/marginLeft/marginRight | css style | 2.7.0 | + * | padding/paddingTop/paddingBottom/paddingLeft/paddingRight | css style | 2.7.0 | + * | font/fontSize/fontStyle/fontVariant/fontWeight/fontFamily | css style | 2.7.0 | + * | lineHeight | css style | 2.7.0 | + * | letterSpacing | css style | 2.7.0 | + * | textDecoration | css style | 2.7.0 | + * | textIndent | css style | 2.8.0 | + * | wordWrap | css style | 2.10.2 | + * | wordBreak | css style | 2.10.2 | + * | whiteSpace | css style | 2.10.2 | + * + * 对已经应用样式的选区设置会取消样式。css style 表示 css 中规定的允许值。 + * + * 最低基础库: `2.7.0` */ + format( + /** 属性 */ + name: string, + /** 值 */ + value?: string + ): void + /** [EditorContext.getContents(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/editor/EditorContext.getContents.html) + * + * 获取编辑器内容 + * + * 最低基础库: `2.7.0` */ + getContents(option?: GetContentsOption): void + /** [EditorContext.getSelectionText(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/editor/EditorContext.getSelectionText.html) + * + * 获取编辑器已选区域内的纯文本内容。当编辑器失焦或未选中一段区间时,返回内容为空。 + * + * 最低基础库: `2.10.2` */ + getSelectionText(option?: GetSelectionTextOption): void + /** [EditorContext.insertDivider(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/editor/EditorContext.insertDivider.html) + * + * 插入分割线 + * + * 最低基础库: `2.7.0` */ + insertDivider(option?: InsertDividerOption): void + /** [EditorContext.insertImage(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/editor/EditorContext.insertImage.html) +* +* 插入图片。 +* +* 地址为临时文件时,获取的编辑器html格式内容中 标签增加属性 data-local,delta 格式内容中图片 attributes 属性增加 data-local 字段,该值为传入的临时文件地址。 +* +* 开发者可选择在提交阶段上传图片到服务器,获取到网络地址后进行替换。替换时对于html内容应替换掉 的 src 值,对于 delta 内容应替换掉 `insert { image: abc }` 值。 +* +* **示例代码** +* +* +* ```javascript +this.editorCtx.insertImage({ + src: 'xx', + width: '100px', + height: '50px', + extClass: className +}) +``` +* +* 最低基础库: `2.7.0` */ + insertImage(option: InsertImageOption): void + /** [EditorContext.insertText(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/editor/EditorContext.insertText.html) + * + * 覆盖当前选区,设置一段文本 + * + * 最低基础库: `2.7.0` */ + insertText(option: InsertTextOption): void + /** [EditorContext.redo(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/editor/EditorContext.redo.html) + * + * 恢复 + * + * 最低基础库: `2.7.0` */ + redo(option?: RedoOption): void + /** [EditorContext.removeFormat(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/editor/EditorContext.removeFormat.html) + * + * 清除当前选区的样式 + * + * 最低基础库: `2.7.0` */ + removeFormat(option?: RemoveFormatOption): void + /** [EditorContext.scrollIntoView()](https://developers.weixin.qq.com/miniprogram/dev/api/media/editor/EditorContext.scrollIntoView.html) + * + * 使得编辑器光标处滚动到窗口可视区域内。 + * + * 最低基础库: `2.8.3` */ + scrollIntoView(): void + /** [EditorContext.setContents(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/editor/EditorContext.setContents.html) + * + * 初始化编辑器内容,html和delta同时存在时仅delta生效 + * + * 最低基础库: `2.7.0` */ + setContents(option: SetContentsOption): void + /** [EditorContext.undo(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/editor/EditorContext.undo.html) + * + * 撤销 + * + * 最低基础库: `2.7.0` */ + undo(option?: UndoOption): void + } + interface EntryList { + /** [Array EntryList.getEntries()](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/performance/EntryList.getEntries.html) + * + * 该方法返回当前列表中的所有性能数据 + * + * 最低基础库: `2.11.0` */ + getEntries(): any[] + /** [Array EntryList.getEntriesByName(string name, string entryType)](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/performance/EntryList.getEntriesByName.html) + * + * 获取当前列表中所有名称为 [name] 且类型为 [entryType] 的性能数据 + * + * 最低基础库: `2.11.0` */ + getEntriesByName(name: string, entryType?: string): any[] + /** [Array EntryList.getEntriesByType(string entryType)](https://developers.weixin.qq.com/miniprogram/dev/api/open-api/performance/EntryList.getEntriesByType.html) + * + * 获取当前列表中所有类型为 [entryType] 的性能数据 + * + * 最低基础库: `2.11.0` */ + getEntriesByType(entryType: string): any[] + } + interface EventChannel { + /** [EventChannel.emit(string eventName, any args)](https://developers.weixin.qq.com/miniprogram/dev/api/route/EventChannel.emit.html) + * + * 触发一个事件 + * + * 最低基础库: `2.7.3` */ + emit( + /** 事件名称 */ + eventName: string, + /** 事件参数 */ + ...args: any + ): void + /** [EventChannel.off(string eventName, function fn)](https://developers.weixin.qq.com/miniprogram/dev/api/route/EventChannel.off.html) + * + * 取消监听一个事件。给出第二个参数时,只取消给出的监听函数,否则取消所有监听函数 + * + * 最低基础库: `2.7.3` */ + off( + /** 事件名称 */ + eventName: string, + /** 事件监听函数 */ + fn: EventCallback + ): void + /** [EventChannel.on(string eventName, function fn)](https://developers.weixin.qq.com/miniprogram/dev/api/route/EventChannel.on.html) + * + * 持续监听一个事件 + * + * 最低基础库: `2.7.3` */ + on( + /** 事件名称 */ + eventName: string, + /** 事件监听函数 */ + fn: EventCallback + ): void + /** [EventChannel.once(string eventName, function fn)](https://developers.weixin.qq.com/miniprogram/dev/api/route/EventChannel.once.html) + * + * 监听一个事件一次,触发后失效 + * + * 最低基础库: `2.7.3` */ + once( + /** 事件名称 */ + eventName: string, + /** 事件监听函数 */ + fn: EventCallback + ): void + } + interface FileSystemManager { + /** [Array.<string> FileSystemManager.readdirSync(string dirPath)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.readdirSync.html) + * + * [FileSystemManager.readdir](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.readdir.html) 的同步版本 */ + readdirSync( + /** 要读取的目录路径 (本地路径) */ + dirPath: string + ): string[] + /** [FileSystemManager.access(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.access.html) + * + * 判断文件/目录是否存在 */ + access(option: AccessOption): void + /** [FileSystemManager.accessSync(string path)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.accessSync.html) + * + * [FileSystemManager.access](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.access.html) 的同步版本 */ + accessSync( + /** 要判断是否存在的文件/目录路径 (本地路径) */ + path: string + ): void + /** [FileSystemManager.appendFile(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.appendFile.html) + * + * 在文件结尾追加内容 + * + * 最低基础库: `2.1.0` */ + appendFile(option: AppendFileOption): void + /** [FileSystemManager.appendFileSync(string filePath, string|ArrayBuffer data, string encoding)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.appendFileSync.html) + * + * [FileSystemManager.appendFile](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.appendFile.html) 的同步版本 + * + * 最低基础库: `2.1.0` */ + appendFileSync( + /** 要追加内容的文件路径 (本地路径) */ + filePath: string, + /** 要追加的文本或二进制数据 */ + data: string | ArrayBuffer, + /** 指定写入文件的字符编码 + * + * 参数 encoding 可选值: + * - 'ascii': ; + * - 'base64': ; + * - 'binary': ; + * - 'hex': ; + * - 'ucs2': 以小端序读取; + * - 'ucs-2': 以小端序读取; + * - 'utf16le': 以小端序读取; + * - 'utf-16le': 以小端序读取; + * - 'utf-8': ; + * - 'utf8': ; + * - 'latin1': ; */ + encoding?: + | 'ascii' + | 'base64' + | 'binary' + | 'hex' + | 'ucs2' + | 'ucs-2' + | 'utf16le' + | 'utf-16le' + | 'utf-8' + | 'utf8' + | 'latin1' + ): void + /** [FileSystemManager.copyFile(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.copyFile.html) + * + * 复制文件 */ + copyFile(option: CopyFileOption): void + /** [FileSystemManager.copyFileSync(string srcPath, string destPath)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.copyFileSync.html) + * + * [FileSystemManager.copyFile](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.copyFile.html) 的同步版本 */ + copyFileSync( + /** 源文件路径,支持本地路径 */ + srcPath: string, + /** 目标文件路径,支持本地路径 */ + destPath: string + ): void + /** [FileSystemManager.getFileInfo(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.getFileInfo.html) + * + * 获取该小程序下的 本地临时文件 或 本地缓存文件 信息 */ + getFileInfo(option: FileSystemManagerGetFileInfoOption): void + /** [FileSystemManager.getSavedFileList(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.getSavedFileList.html) + * + * 获取该小程序下已保存的本地缓存文件列表 */ + getSavedFileList(option?: FileSystemManagerGetSavedFileListOption): void + /** [FileSystemManager.mkdir(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.mkdir.html) + * + * 创建目录 */ + mkdir(option: MkdirOption): void + /** [FileSystemManager.mkdirSync(string dirPath, boolean recursive)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.mkdirSync.html) + * + * [FileSystemManager.mkdir](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.mkdir.html) 的同步版本 */ + mkdirSync( + /** 创建的目录路径 (本地路径) */ + dirPath: string, + /** 是否在递归创建该目录的上级目录后再创建该目录。如果对应的上级目录已经存在,则不创建该上级目录。如 dirPath 为 a/b/c/d 且 recursive 为 true,将创建 a 目录,再在 a 目录下创建 b 目录,以此类推直至创建 a/b/c 目录下的 d 目录。 + * + * 最低基础库: `2.3.0` */ + recursive?: boolean + ): void + /** [FileSystemManager.readFile(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.readFile.html) + * + * 读取本地文件内容 */ + readFile(option: ReadFileOption): void + /** [FileSystemManager.readdir(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.readdir.html) + * + * 读取目录内文件列表 */ + readdir(option: ReaddirOption): void + /** [FileSystemManager.removeSavedFile(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.removeSavedFile.html) + * + * 删除该小程序下已保存的本地缓存文件 */ + removeSavedFile(option: FileSystemManagerRemoveSavedFileOption): void + /** [FileSystemManager.rename(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.rename.html) + * + * 重命名文件。可以把文件从 oldPath 移动到 newPath */ + rename(option: RenameOption): void + /** [FileSystemManager.renameSync(string oldPath, string newPath)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.renameSync.html) + * + * [FileSystemManager.rename](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.rename.html) 的同步版本 */ + renameSync( + /** 源文件路径,支持本地路径 */ + oldPath: string, + /** 新文件路径,支持本地路径 */ + newPath: string + ): void + /** [FileSystemManager.rmdir(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.rmdir.html) + * + * 删除目录 */ + rmdir(option: RmdirOption): void + /** [FileSystemManager.rmdirSync(string dirPath, boolean recursive)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.rmdirSync.html) + * + * [FileSystemManager.rmdir](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.rmdir.html) 的同步版本 */ + rmdirSync( + /** 要删除的目录路径 (本地路径) */ + dirPath: string, + /** 是否递归删除目录。如果为 true,则删除该目录和该目录下的所有子目录以及文件。 + * + * 最低基础库: `2.3.0` */ + recursive?: boolean + ): void + /** [FileSystemManager.saveFile(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.saveFile.html) + * + * 保存临时文件到本地。此接口会移动临时文件,因此调用成功后,tempFilePath 将不可用。 */ + saveFile(option: FileSystemManagerSaveFileOption): void + /** [FileSystemManager.stat(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.stat.html) + * + * 获取文件 Stats 对象 */ + stat(option: StatOption): void + /** [FileSystemManager.unlink(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.unlink.html) + * + * 删除文件 */ + unlink(option: UnlinkOption): void + /** [FileSystemManager.unlinkSync(string filePath)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.unlinkSync.html) + * + * [FileSystemManager.unlink](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.unlink.html) 的同步版本 */ + unlinkSync( + /** 要删除的文件路径 (本地路径) */ + filePath: string + ): void + /** [FileSystemManager.unzip(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.unzip.html) + * + * 解压文件 */ + unzip(option: UnzipOption): void + /** [FileSystemManager.writeFile(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.writeFile.html) + * + * 写文件 */ + writeFile(option: WriteFileOption): void + /** [FileSystemManager.writeFileSync(string filePath, string|ArrayBuffer data, string encoding)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.writeFileSync.html) + * + * [FileSystemManager.writeFile](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.writeFile.html) 的同步版本 */ + writeFileSync( + /** 要写入的文件路径 (本地路径) */ + filePath: string, + /** 要写入的文本或二进制数据 */ + data: string | ArrayBuffer, + /** 指定写入文件的字符编码 + * + * 参数 encoding 可选值: + * - 'ascii': ; + * - 'base64': ; + * - 'binary': ; + * - 'hex': ; + * - 'ucs2': 以小端序读取; + * - 'ucs-2': 以小端序读取; + * - 'utf16le': 以小端序读取; + * - 'utf-16le': 以小端序读取; + * - 'utf-8': ; + * - 'utf8': ; + * - 'latin1': ; */ + encoding?: + | 'ascii' + | 'base64' + | 'binary' + | 'hex' + | 'ucs2' + | 'ucs-2' + | 'utf16le' + | 'utf-16le' + | 'utf-8' + | 'utf8' + | 'latin1' + ): void + /** [[Stats](https://developers.weixin.qq.com/miniprogram/dev/api/file/Stats.html)|Object FileSystemManager.statSync(string path, boolean recursive)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.statSync.html) + * + * [FileSystemManager.stat](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.stat.html) 的同步版本 */ + statSync( + /** 文件/目录路径 (本地路径) */ + path: string, + /** 是否递归获取目录下的每个文件的 Stats 信息 + * + * 最低基础库: `2.3.0` */ + recursive?: boolean + ): Stats | IAnyObject + /** [string FileSystemManager.saveFileSync(string tempFilePath, string filePath)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.saveFileSync.html) + * + * [FileSystemManager.saveFile](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.saveFile.html) 的同步版本 */ + saveFileSync( + /** 临时存储文件路径 (本地路径) */ + tempFilePath: string, + /** 要存储的文件路径 (本地路径) */ + filePath?: string + ): string + /** [string|ArrayBuffer FileSystemManager.readFileSync(string filePath, string encoding, number position, number length)](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.readFileSync.html) + * + * [FileSystemManager.readFile](https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.readFile.html) 的同步版本 */ + readFileSync( + /** 要读取的文件的路径 (本地路径) */ + filePath: string, + /** 指定读取文件的字符编码,如果不传 encoding,则以 ArrayBuffer 格式读取文件的二进制内容 + * + * 参数 encoding 可选值: + * - 'ascii': ; + * - 'base64': ; + * - 'binary': ; + * - 'hex': ; + * - 'ucs2': 以小端序读取; + * - 'ucs-2': 以小端序读取; + * - 'utf16le': 以小端序读取; + * - 'utf-16le': 以小端序读取; + * - 'utf-8': ; + * - 'utf8': ; + * - 'latin1': ; */ + encoding?: + | 'ascii' + | 'base64' + | 'binary' + | 'hex' + | 'ucs2' + | 'ucs-2' + | 'utf16le' + | 'utf-16le' + | 'utf-8' + | 'utf8' + | 'latin1', + /** 从文件指定位置开始读,如果不指定,则从文件头开始读。读取的范围应该是左闭右开区间 [position, position+length)。有效范围:[0, fileLength - 1]。单位:byte + * + * 最低基础库: `2.10.0` */ + position?: number, + /** 指定文件的长度,如果不指定,则读到文件末尾。有效范围:[1, fileLength]。单位:byte + * + * 最低基础库: `2.10.0` */ + length?: number + ): string | ArrayBuffer + } + interface GeneralCallbackResult { + errMsg: string + } + interface IBeaconError { + /** 错误信息 + * + * | 错误码 | 错误信息 | 说明 | + * | - | - | - | + * | 0 | ok | 正常 | + * | 11000 | unsupport | 系统或设备不支持 | + * | 11001 | bluetooth service unavailable | 蓝牙服务不可用 | + * | 11002 | location service unavailable | 位置服务不可用 | + * | 11003 | already start | 已经开始搜索 | + * | 11004 | not startBeaconDiscovery | 还未开始搜索 | + * | 11005 | system error | 系统错误 | + * | 11006 | invalid data | 参数不正确 | */ errMsg: string + /** 错误码 + * + * | 错误码 | 错误信息 | 说明 | + * | - | - | - | + * | 0 | ok | 正常 | + * | 11000 | unsupport | 系统或设备不支持 | + * | 11001 | bluetooth service unavailable | 蓝牙服务不可用 | + * | 11002 | location service unavailable | 位置服务不可用 | + * | 11003 | already start | 已经开始搜索 | + * | 11004 | not startBeaconDiscovery | 还未开始搜索 | + * | 11005 | system error | 系统错误 | + * | 11006 | invalid data | 参数不正确 | */ errCode: number + } + interface InnerAudioContext { + /** [InnerAudioContext.destroy()](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.destroy.html) + * + * 销毁当前实例 */ + destroy(): void + /** [InnerAudioContext.offCanplay(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.offCanplay.html) + * + * 取消监听音频进入可以播放状态的事件 + * + * 最低基础库: `1.9.0` */ + offCanplay( + /** 音频进入可以播放状态的事件的回调函数 */ + callback?: OffCanplayCallback + ): void + /** [InnerAudioContext.offEnded(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.offEnded.html) + * + * 取消监听音频自然播放至结束的事件 + * + * 最低基础库: `1.9.0` */ + offEnded( + /** 音频自然播放至结束的事件的回调函数 */ + callback?: OffEndedCallback + ): void + /** [InnerAudioContext.offError(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.offError.html) + * + * 取消监听音频播放错误事件 + * + * 最低基础库: `1.9.0` */ + offError( + /** 音频播放错误事件的回调函数 */ + callback?: InnerAudioContextOffErrorCallback + ): void + /** [InnerAudioContext.offPause(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.offPause.html) + * + * 取消监听音频暂停事件 + * + * 最低基础库: `1.9.0` */ + offPause( + /** 音频暂停事件的回调函数 */ + callback?: OffPauseCallback + ): void + /** [InnerAudioContext.offPlay(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.offPlay.html) + * + * 取消监听音频播放事件 + * + * 最低基础库: `1.9.0` */ + offPlay( + /** 音频播放事件的回调函数 */ + callback?: OffPlayCallback + ): void + /** [InnerAudioContext.offSeeked(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.offSeeked.html) + * + * 取消监听音频完成跳转操作的事件 + * + * 最低基础库: `1.9.0` */ + offSeeked( + /** 音频完成跳转操作的事件的回调函数 */ + callback?: OffSeekedCallback + ): void + /** [InnerAudioContext.offSeeking(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.offSeeking.html) + * + * 取消监听音频进行跳转操作的事件 + * + * 最低基础库: `1.9.0` */ + offSeeking( + /** 音频进行跳转操作的事件的回调函数 */ + callback?: OffSeekingCallback + ): void + /** [InnerAudioContext.offStop(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.offStop.html) + * + * 取消监听音频停止事件 + * + * 最低基础库: `1.9.0` */ + offStop( + /** 音频停止事件的回调函数 */ + callback?: OffStopCallback + ): void + /** [InnerAudioContext.offTimeUpdate(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.offTimeUpdate.html) + * + * 取消监听音频播放进度更新事件 + * + * 最低基础库: `1.9.0` */ + offTimeUpdate( + /** 音频播放进度更新事件的回调函数 */ + callback?: OffTimeUpdateCallback + ): void + /** [InnerAudioContext.offWaiting(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.offWaiting.html) + * + * 取消监听音频加载中事件 + * + * 最低基础库: `1.9.0` */ + offWaiting( + /** 音频加载中事件的回调函数 */ + callback?: OffWaitingCallback + ): void + /** [InnerAudioContext.onCanplay(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.onCanplay.html) + * + * 监听音频进入可以播放状态的事件。但不保证后面可以流畅播放 */ + onCanplay( + /** 音频进入可以播放状态的事件的回调函数 */ + callback: OnCanplayCallback + ): void + /** [InnerAudioContext.onEnded(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.onEnded.html) + * + * 监听音频自然播放至结束的事件 */ + onEnded( + /** 音频自然播放至结束的事件的回调函数 */ + callback: OnEndedCallback + ): void + /** [InnerAudioContext.onError(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.onError.html) + * + * 监听音频播放错误事件 + * + * **Tips** + * + * + * 1. errCode=100001 时,如若 errMsg 中有 INNERCODE -11828 ,请先检查 response header 是否缺少 Content-Length + * 2. errCode=100001 时,如若 errMsg 中有 systemErrCode:200333420,请检查文件编码格式和 fileExtension 是否一致 */ + onError( + /** 音频播放错误事件的回调函数 */ + callback: InnerAudioContextOnErrorCallback + ): void + /** [InnerAudioContext.onPause(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.onPause.html) + * + * 监听音频暂停事件 */ + onPause( + /** 音频暂停事件的回调函数 */ + callback: OnPauseCallback + ): void + /** [InnerAudioContext.onPlay(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.onPlay.html) + * + * 监听音频播放事件 */ + onPlay( + /** 音频播放事件的回调函数 */ + callback: OnPlayCallback + ): void + /** [InnerAudioContext.onSeeked(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.onSeeked.html) + * + * 监听音频完成跳转操作的事件 */ + onSeeked( + /** 音频完成跳转操作的事件的回调函数 */ + callback: OnSeekedCallback + ): void + /** [InnerAudioContext.onSeeking(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.onSeeking.html) + * + * 监听音频进行跳转操作的事件 */ + onSeeking( + /** 音频进行跳转操作的事件的回调函数 */ + callback: OnSeekingCallback + ): void + /** [InnerAudioContext.onStop(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.onStop.html) + * + * 监听音频停止事件 */ + onStop( + /** 音频停止事件的回调函数 */ + callback: InnerAudioContextOnStopCallback + ): void + /** [InnerAudioContext.onTimeUpdate(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.onTimeUpdate.html) + * + * 监听音频播放进度更新事件 */ + onTimeUpdate( + /** 音频播放进度更新事件的回调函数 */ + callback: OnTimeUpdateCallback + ): void + /** [InnerAudioContext.onWaiting(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.onWaiting.html) + * + * 监听音频加载中事件。当音频因为数据不足,需要停下来加载时会触发 */ + onWaiting( + /** 音频加载中事件的回调函数 */ + callback: OnWaitingCallback + ): void + /** [InnerAudioContext.pause()](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.pause.html) + * + * 暂停。暂停后的音频再播放会从暂停处开始播放 */ + pause(): void + /** [InnerAudioContext.play()](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.play.html) + * + * 播放 */ + play(): void + /** [InnerAudioContext.seek(number position)](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.seek.html) + * + * 跳转到指定位置 */ + seek( + /** 跳转的时间,单位 s。精确到小数点后 3 位,即支持 ms 级别精确度 */ + position: number + ): void + /** [InnerAudioContext.stop()](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/InnerAudioContext.stop.html) + * + * 停止。停止后的音频再播放会从头开始播放。 */ + stop(): void + } + interface IntersectionObserver { + /** [IntersectionObserver.disconnect()](https://developers.weixin.qq.com/miniprogram/dev/api/wxml/IntersectionObserver.disconnect.html) + * + * 停止监听。回调函数将不再触发 */ + disconnect(): void + /** [IntersectionObserver.observe(string targetSelector, function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/wxml/IntersectionObserver.observe.html) + * + * 指定目标节点并开始监听相交状态变化情况 */ + observe( + /** 选择器 */ + targetSelector: string, + /** 监听相交状态变化的回调函数 */ + callback: IntersectionObserverObserveCallback + ): void + /** [[IntersectionObserver](https://developers.weixin.qq.com/miniprogram/dev/api/wxml/IntersectionObserver.html) IntersectionObserver.relativeTo(string selector, Object margins)](https://developers.weixin.qq.com/miniprogram/dev/api/wxml/IntersectionObserver.relativeTo.html) + * + * 使用选择器指定一个节点,作为参照区域之一。 */ + relativeTo( + /** 选择器 */ + selector: string, + /** 用来扩展(或收缩)参照节点布局区域的边界 */ + margins?: Margins + ): IntersectionObserver + /** [[IntersectionObserver](https://developers.weixin.qq.com/miniprogram/dev/api/wxml/IntersectionObserver.html) IntersectionObserver.relativeToViewport(Object margins)](https://developers.weixin.qq.com/miniprogram/dev/api/wxml/IntersectionObserver.relativeToViewport.html) +* +* 指定页面显示区域作为参照区域之一 +* +* **示例代码** +* +* +* 下面的示例代码中,如果目标节点(用选择器 .target-class 指定)进入显示区域以下 100px 时,就会触发回调函数。 +* ```javascript +Page({ + onLoad: function(){ + wx.createIntersectionObserver().relativeToViewport({bottom: 100}).observe('.target-class', (res) => { + res.intersectionRatio // 相交区域占目标节点的布局区域的比例 + res.intersectionRect // 相交区域 + res.intersectionRect.left // 相交区域的左边界坐标 + res.intersectionRect.top // 相交区域的上边界坐标 + res.intersectionRect.width // 相交区域的宽度 + res.intersectionRect.height // 相交区域的高度 + }) + } +}) +``` */ + relativeToViewport( + /** 用来扩展(或收缩)参照节点布局区域的边界 */ + margins?: Margins + ): IntersectionObserver + } + interface InterstitialAd { + /** [InterstitialAd.destroy()](https://developers.weixin.qq.com/miniprogram/dev/api/ad/InterstitialAd.destroy.html) + * + * 销毁插屏广告实例。 + * + * 最低基础库: `2.8.0` */ + destroy(): void + /** [InterstitialAd.offClose(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/ad/InterstitialAd.offClose.html) + * + * 取消监听插屏广告关闭事件 */ + offClose( + /** 插屏广告关闭事件的回调函数 */ + callback?: UDPSocketOffCloseCallback + ): void + /** [InterstitialAd.offError(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/ad/InterstitialAd.offError.html) + * + * 取消监听插屏错误事件 */ + offError( + /** 插屏错误事件的回调函数 */ + callback?: InterstitialAdOffErrorCallback + ): void + /** [InterstitialAd.offLoad(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/ad/InterstitialAd.offLoad.html) + * + * 取消监听插屏广告加载事件 */ + offLoad( + /** 插屏广告加载事件的回调函数 */ + callback?: OffLoadCallback + ): void + /** [InterstitialAd.onClose(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/ad/InterstitialAd.onClose.html) + * + * 监听插屏广告关闭事件。 */ + onClose( + /** 插屏广告关闭事件的回调函数 */ + callback: UDPSocketOnCloseCallback + ): void + /** [InterstitialAd.onError(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/ad/InterstitialAd.onError.html) + * + * 监听插屏错误事件。 + * + * **错误码信息与解决方案表** + * + * + * 错误码是通过onError获取到的错误信息。调试期间,可以通过异常返回来捕获信息。 + * 在小程序发布上线之后,如果遇到异常问题,可以在[“运维中心“](https://mp.weixin.qq.com/)里面搜寻错误日志,还可以针对异常返回加上适当的监控信息。 + * + * | 代码 | 异常情况 | 理由 | 解决方案 | + * | ------ | -------------- | --------------- | -------------------------- | + * | 1000 | 后端错误调用失败 | 该项错误不是开发者的异常情况 | 一般情况下忽略一段时间即可恢复。 | + * | 1001 | 参数错误 | 使用方法错误 | 可以前往developers.weixin.qq.com确认具体教程(小程序和小游戏分别有各自的教程,可以在顶部选项中,“设计”一栏的右侧进行切换。| + * | 1002 | 广告单元无效 | 可能是拼写错误、或者误用了其他APP的广告ID | 请重新前往mp.weixin.qq.com确认广告位ID。 | + * | 1003 | 内部错误 | 该项错误不是开发者的异常情况 | 一般情况下忽略一段时间即可恢复。| + * | 1004 | 无适合的广告 | 广告不是每一次都会出现,这次没有出现可能是由于该用户不适合浏览广告 | 属于正常情况,且开发者需要针对这种情况做形态上的兼容。 | + * | 1005 | 广告组件审核中 | 你的广告正在被审核,无法展现广告 | 请前往mp.weixin.qq.com确认审核状态,且开发者需要针对这种情况做形态上的兼容。| + * | 1006 | 广告组件被驳回 | 你的广告审核失败,无法展现广告 | 请前往mp.weixin.qq.com确认审核状态,且开发者需要针对这种情况做形态上的兼容。| + * | 1007 | 广告组件被驳回 | 你的广告能力已经被封禁,封禁期间无法展现广告 | 请前往mp.weixin.qq.com确认小程序广告封禁状态。 | + * | 1008 | 广告单元已关闭 | 该广告位的广告能力已经被关闭 | 请前往mp.weixin.qq.com重新打开对应广告位的展现。| */ + onError( + /** 插屏错误事件的回调函数 */ + callback: InterstitialAdOnErrorCallback + ): void + /** [InterstitialAd.onLoad(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/ad/InterstitialAd.onLoad.html) + * + * 监听插屏广告加载事件。 */ + onLoad( + /** 插屏广告加载事件的回调函数 */ + callback: OnLoadCallback + ): void + /** [Promise InterstitialAd.load()](https://developers.weixin.qq.com/miniprogram/dev/api/ad/InterstitialAd.load.html) + * + * 加载插屏广告。 + * + * 最低基础库: `2.8.0` */ + load(): Promise + /** [Promise InterstitialAd.show()](https://developers.weixin.qq.com/miniprogram/dev/api/ad/InterstitialAd.show.html) + * + * 显示插屏广告。 + * + * **错误码信息表** + * + * + * 如果插屏广告显示失败,InterstitialAd.show() 方法会返回一个rejected Promise,开发者可以获取到错误码及对应的错误信息。 + * + * | 代码 | 异常情况 | 理由 | + * | ------ | -------------- | -------------------------- | + * | 2001 | 触发频率限制 | 小程序启动一定时间内不允许展示插屏广告 | + * | 2002 | 触发频率限制 | 距离小程序插屏广告或者激励视频广告上次播放时间间隔不足,不允许展示插屏广告 | + * | 2003 | 触发频率限制 | 当前正在播放激励视频广告或者插屏广告,不允许再次展示插屏广告 | + * | 2004 | 广告渲染失败 | 该项错误不是开发者的异常情况,或因小程序页面切换导致广告渲染失败 | + * | 2005 | 广告调用异常 | 插屏广告实例不允许跨页面调用 | */ + show(): Promise + } + interface IsoDep { + /** [IsoDep.close(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/IsoDep.close.html) + * + * 断开连接 + * + * 最低基础库: `2.11.2` */ + close(option?: NdefCloseOption): void + /** [IsoDep.connect(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/IsoDep.connect.html) + * + * 连接 NFC 标签 + * + * 最低基础库: `2.11.2` */ + connect(option?: ConnectOption): void + /** [IsoDep.getHistoricalBytes(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/IsoDep.getHistoricalBytes.html) + * + * 获取复位信息 + * + * 最低基础库: `2.11.2` */ + getHistoricalBytes(option?: GetHistoricalBytesOption): void + /** [IsoDep.getMaxTransceiveLength(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/IsoDep.getMaxTransceiveLength.html) + * + * 获取最大传输长度 + * + * 最低基础库: `2.11.2` */ + getMaxTransceiveLength(option?: GetMaxTransceiveLengthOption): void + /** [IsoDep.isConnected(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/IsoDep.isConnected.html) + * + * 检查是否已连接 + * + * 最低基础库: `2.11.2` */ + isConnected(option?: IsConnectedOption): void + /** [IsoDep.setTimeout(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/IsoDep.setTimeout.html) + * + * 设置超时时间 + * + * 最低基础库: `2.11.2` */ + setTimeout(option: SetTimeoutOption): void + /** [IsoDep.transceive(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/IsoDep.transceive.html) + * + * 发送数据 + * + * 最低基础库: `2.11.2` */ + transceive(option: TransceiveOption): void + } + interface JoinVoIPChatError { + /** 错误信息 + * + * | 错误码 | 错误信息 | 说明 | + * | - | - | - | + * | -1 | 当前已在房间内 | | + * | -2 | 录音设备被占用,可能是当前正在使用微信内语音通话或系统通话 | | + * | -3 | 加入会话期间退出(可能是用户主动退出,或者退后台、来电等原因),因此加入失败 | | + * | -1000 | 系统错误 | | */ errMsg: string + /** 错误码 + * + * | 错误码 | 错误信息 | 说明 | + * | - | - | - | + * | -1 | 当前已在房间内 | | + * | -2 | 录音设备被占用,可能是当前正在使用微信内语音通话或系统通话 | | + * | -3 | 加入会话期间退出(可能是用户主动退出,或者退后台、来电等原因),因此加入失败 | | + * | -1000 | 系统错误 | | */ errCode: number + } + interface LivePlayerContext { + /** [LivePlayerContext.exitFullScreen(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePlayerContext.exitFullScreen.html) + * + * 退出全屏 */ + exitFullScreen(option?: ExitFullScreenOption): void + /** [LivePlayerContext.exitPictureInPicture(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePlayerContext.exitPictureInPicture.html) + * + * 退出小窗,该方法可在任意页面调用 */ + exitPictureInPicture(option?: ExitPictureInPictureOption): void + /** [LivePlayerContext.mute(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePlayerContext.mute.html) + * + * 静音 */ + mute(option?: MuteOption): void + /** [LivePlayerContext.pause(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePlayerContext.pause.html) + * + * 暂停 + * + * 最低基础库: `1.9.90` */ + pause(option?: PauseOption): void + /** [LivePlayerContext.play(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePlayerContext.play.html) + * + * 播放 */ + play(option?: PlayOption): void + /** [LivePlayerContext.requestFullScreen(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePlayerContext.requestFullScreen.html) + * + * 进入全屏 */ + requestFullScreen( + option: LivePlayerContextRequestFullScreenOption + ): void + /** [LivePlayerContext.requestPictureInPicture(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePlayerContext.requestPictureInPicture.html) + * + * 进入小窗 + * + * 最低基础库: `2.15.0` */ + requestPictureInPicture(option?: RequestPictureInPictureOption): void + /** [LivePlayerContext.resume(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePlayerContext.resume.html) + * + * 恢复 + * + * 最低基础库: `1.9.90` */ + resume(option?: ResumeOption): void + /** [LivePlayerContext.snapshot(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePlayerContext.snapshot.html) + * + * 截图 + * + * 最低基础库: `2.7.1` */ + snapshot(option: LivePlayerContextSnapshotOption): void + /** [LivePlayerContext.stop(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePlayerContext.stop.html) + * + * 停止 */ + stop(option?: StopOption): void + } + interface LivePusherContext { + /** [LivePusherContext.pause(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePusherContext.pause.html) + * + * 暂停推流 */ + pause(option?: PauseOption): void + /** [LivePusherContext.pauseBGM(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePusherContext.pauseBGM.html) + * + * 暂停背景音 + * + * 最低基础库: `2.4.0` */ + pauseBGM(option?: PauseBGMOption): void + /** [LivePusherContext.playBGM(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePusherContext.playBGM.html) + * + * 播放背景音 + * + * 最低基础库: `2.4.0` */ + playBGM(option: PlayBGMOption): void + /** [LivePusherContext.resume(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePusherContext.resume.html) + * + * 恢复推流 */ + resume(option?: ResumeOption): void + /** [LivePusherContext.resumeBGM(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePusherContext.resumeBGM.html) + * + * 恢复背景音 + * + * 最低基础库: `2.4.0` */ + resumeBGM(option?: ResumeBGMOption): void + /** [LivePusherContext.sendMessage(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePusherContext.sendMessage.html) + * + * 发送SEI消息 + * + * 最低基础库: `2.10.0` */ + sendMessage(option?: SendMessageOption): void + /** [LivePusherContext.setBGMVolume(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePusherContext.setBGMVolume.html) + * + * 设置背景音音量 + * + * 最低基础库: `2.4.0` */ + setBGMVolume(option: SetBGMVolumeOption): void + /** [LivePusherContext.setMICVolume(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePusherContext.setMICVolume.html) + * + * 设置麦克风音量 + * + * 最低基础库: `2.10.0` */ + setMICVolume(option: SetMICVolumeOption): void + /** [LivePusherContext.snapshot(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePusherContext.snapshot.html) + * + * 快照 + * + * 最低基础库: `1.9.90` */ + snapshot(option: LivePusherContextSnapshotOption): void + /** [LivePusherContext.start(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePusherContext.start.html) + * + * 开始推流,同时开启摄像头预览 */ + start(option?: CameraFrameListenerStartOption): void + /** [LivePusherContext.startPreview(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePusherContext.startPreview.html) + * + * 开启摄像头预览 + * + * 最低基础库: `2.7.0` */ + startPreview(option?: StartPreviewOption): void + /** [LivePusherContext.stop(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePusherContext.stop.html) + * + * 停止推流,同时停止摄像头预览 */ + stop(option?: StopOption): void + /** [LivePusherContext.stopBGM(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePusherContext.stopBGM.html) + * + * 停止背景音 + * + * 最低基础库: `2.4.0` */ + stopBGM(option?: StopBGMOption): void + /** [LivePusherContext.stopPreview(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePusherContext.stopPreview.html) + * + * 关闭摄像头预览 + * + * 最低基础库: `2.7.0` */ + stopPreview(option?: StopPreviewOption): void + /** [LivePusherContext.switchCamera(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePusherContext.switchCamera.html) + * + * 切换前后摄像头 */ + switchCamera(option?: SwitchCameraOption): void + /** [LivePusherContext.toggleTorch(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePusherContext.toggleTorch.html) + * + * 切换手电筒 + * + * 最低基础库: `2.1.0` */ + toggleTorch(option?: ToggleTorchOption): void + } + interface LogManager { + /** [LogManager.debug()](https://developers.weixin.qq.com/miniprogram/dev/api/base/debug/LogManager.debug.html) + * + * 写 debug 日志 */ + debug( + /** 日志内容,可以有任意多个。每次调用的参数的总大小不超过100Kb */ + ...args: any[] + ): void + /** [LogManager.info()](https://developers.weixin.qq.com/miniprogram/dev/api/base/debug/LogManager.info.html) + * + * 写 info 日志 */ + info( + /** 日志内容,可以有任意多个。每次调用的参数的总大小不超过100Kb */ + ...args: any[] + ): void + /** [LogManager.log()](https://developers.weixin.qq.com/miniprogram/dev/api/base/debug/LogManager.log.html) + * + * 写 log 日志 */ + log( + /** 日志内容,可以有任意多个。每次调用的参数的总大小不超过100Kb */ + ...args: any[] + ): void + /** [LogManager.warn()](https://developers.weixin.qq.com/miniprogram/dev/api/base/debug/LogManager.warn.html) + * + * 写 warn 日志 */ + warn( + /** 日志内容,可以有任意多个。每次调用的参数的总大小不超过100Kb */ + ...args: any[] + ): void + } + interface MapContext { + /** [MapContext.addCustomLayer(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/map/MapContext.addCustomLayer.html) + * + * 添加个性化图层。 + * + * 最低基础库: `2.12.0` */ + addCustomLayer(option: AddCustomLayerOption): void + /** [MapContext.addGroundOverlay(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/map/MapContext.addGroundOverlay.html) + * + * 创建自定义图片图层,图片会随着地图缩放而缩放。 + * + * 最低基础库: `2.14.0` */ + addGroundOverlay(option: AddGroundOverlayOption): void + /** [MapContext.addMarkers(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/map/MapContext.addMarkers.html) + * + * 添加 marker。 + * + * 最低基础库: `2.13.0` */ + addMarkers(option: AddMarkersOption): void + /** [MapContext.fromScreenLocation(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/map/MapContext.fromScreenLocation.html) + * + * 获取屏幕上的点对应的经纬度,坐标原点为地图左上角。 + * + * 最低基础库: `2.14.0` */ + fromScreenLocation(option: FromScreenLocationOption): void + /** [MapContext.getCenterLocation(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/map/MapContext.getCenterLocation.html) + * + * 获取当前地图中心的经纬度。返回的是 gcj02 坐标系,可以用于 [wx.openLocation()](https://developers.weixin.qq.com/miniprogram/dev/api/location/wx.openLocation.html) */ + getCenterLocation(option?: GetCenterLocationOption): void + /** [MapContext.getRegion(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/map/MapContext.getRegion.html) + * + * 获取当前地图的视野范围 + * + * 最低基础库: `1.4.0` */ + getRegion(option?: GetRegionOption): void + /** [MapContext.getRotate(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/map/MapContext.getRotate.html) + * + * 获取当前地图的旋转角 + * + * 最低基础库: `2.8.0` */ + getRotate(option?: GetRotateOption): void + /** [MapContext.getScale(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/map/MapContext.getScale.html) + * + * 获取当前地图的缩放级别 + * + * 最低基础库: `1.4.0` */ + getScale(option?: GetScaleOption): void + /** [MapContext.getSkew(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/map/MapContext.getSkew.html) + * + * 获取当前地图的倾斜角 + * + * 最低基础库: `2.8.0` */ + getSkew(option?: GetSkewOption): void + /** [MapContext.includePoints(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/map/MapContext.includePoints.html) + * + * 缩放视野展示所有经纬度 + * + * 最低基础库: `1.2.0` */ + includePoints(option: IncludePointsOption): void + /** [MapContext.initMarkerCluster(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/map/MapContext.initMarkerCluster.html) + * + * 初始化点聚合的配置,未调用时采用默认配置。 + * + * 最低基础库: `2.13.0` */ + initMarkerCluster(option: InitMarkerClusterOption): void + /** [MapContext.moveAlong(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/map/MapContext.moveAlong.html) + * + * 沿指定路径移动 `marker`,用于轨迹回放等场景。动画完成时触发回调事件,若动画进行中,对同一 `marker` 再次调用 `moveAlong` 方法,前一次的动画将被打断。 + * + * 最低基础库: `2.13.0` */ + moveAlong(option: MoveAlongOption): void + /** [MapContext.moveToLocation(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/map/MapContext.moveToLocation.html) + * + * 将地图中心移置当前定位点,此时需设置地图组件 show-location 为true。[2.8.0](https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html) 起支持将地图中心移动到指定位置。 + * + * 最低基础库: `1.2.0` */ + moveToLocation(option?: MoveToLocationOption): void + /** [MapContext.on(string event, function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/map/MapContext.on.html) +* +* 监听地图事件。 +* +* ### markerClusterCreate +* +* 缩放或拖动导致新的聚合簇产生时触发,仅返回新创建的聚合簇信息。 +* +* #### 返回参数 +* +* | 参数 | 类型 | 说明 | +* | --------- | ------ | --------- | +* | clusters | `Array<ClusterInfo>` | 聚合簇数据 | +* +* ### markerClusterClick +* +* 聚合簇的点击事件。 +* +* #### 返回参数 +* +* | 参数 | 类型 | 说明 | +* | --------- | ------------- | --------- | +* | cluster | ClusterInfo | 聚合簇 | +* +* +* #### ClusterInfo 结构 +* +* | 参数 | 类型 | 说明 | +* | ---------- | -------------------- | -------------------------- | +* | clusterId | Number | 聚合簇的 id | +* | center | LatLng | 聚合簇的坐标 | +* | markerIds | `Array<Number>` | 该聚合簇内的点标记数据数组 | +* +* **示例代码** +* +* +* +* ```js + MapContext.on('markerClusterCreate', (res) => {}) + MapContext.on('markerClusterClick', (res) => {}) +``` +* +* 最低基础库: `2.13.0` */ + on( + /** 事件名 + * + * 参数 event 可选值: + * - 'markerClusterCreate': ; + * - 'markerClusterClick': ; */ + event: 'markerClusterCreate' | 'markerClusterClick', + /** 事件的回调函数 */ + callback: (...args: any[]) => any + ): void + /** [MapContext.openMapApp(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/map/MapContext.openMapApp.html) + * + * 拉起地图APP选择导航。 + * + * 最低基础库: `2.14.0` */ + openMapApp(option: OpenMapAppOption): void + /** [MapContext.removeCustomLayer(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/map/MapContext.removeCustomLayer.html) + * + * 移除个性化图层。 + * + * 最低基础库: `2.12.0` */ + removeCustomLayer(option: RemoveCustomLayerOption): void + /** [MapContext.removeGroundOverlay(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/map/MapContext.removeGroundOverlay.html) + * + * 移除自定义图片图层。 + * + * 最低基础库: `2.14.0` */ + removeGroundOverlay(option: RemoveGroundOverlayOption): void + /** [MapContext.removeMarkers(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/map/MapContext.removeMarkers.html) + * + * 移除 marker。 + * + * 最低基础库: `2.13.0` */ + removeMarkers(option: RemoveMarkersOption): void + /** [MapContext.setCenterOffset(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/map/MapContext.setCenterOffset.html) + * + * 设置地图中心点偏移,向后向下为增长,屏幕比例范围(0.25~0.75),默认偏移为[0.5, 0.5] + * + * 最低基础库: `2.10.0` */ + setCenterOffset(option: SetCenterOffsetOption): void + /** [MapContext.toScreenLocation(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/map/MapContext.toScreenLocation.html) + * + * 获取经纬度对应的屏幕坐标,坐标原点为地图左上角。 + * + * 最低基础库: `2.14.0` */ + toScreenLocation(option: ToScreenLocationOption): void + /** [MapContext.translateMarker(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/map/MapContext.translateMarker.html) + * + * 平移marker,带动画。 + * + * 最低基础库: `1.2.0` */ + translateMarker(option: TranslateMarkerOption): void + /** [MapContext.updateGroundOverlay(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/map/MapContext.updateGroundOverlay.html) + * + * 更新自定义图片图层。 + * + * 最低基础库: `2.14.0` */ + updateGroundOverlay(option: UpdateGroundOverlayOption): void + } + interface MediaAudioPlayer { + /** [Promise MediaAudioPlayer.addAudioSource([VideoDecoder](https://developers.weixin.qq.com/miniprogram/dev/api/media/video-decoder/VideoDecoder.html) source)](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/MediaAudioPlayer.addAudioSource.html) + * + * 添加音频源 */ + addAudioSource( + /** [VideoDecoder](https://developers.weixin.qq.com/miniprogram/dev/api/media/video-decoder/VideoDecoder.html) + * + * 视频解码器实例。作为音频源添加到音频播放器中 */ + source: VideoDecoder + ): Promise + /** [Promise MediaAudioPlayer.destroy()](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/MediaAudioPlayer.destroy.html) + * + * 销毁播放器 */ + destroy(): Promise + /** [Promise MediaAudioPlayer.removeAudioSource([VideoDecoder](https://developers.weixin.qq.com/miniprogram/dev/api/media/video-decoder/VideoDecoder.html) source)](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/MediaAudioPlayer.removeAudioSource.html) + * + * 移除音频源 */ + removeAudioSource( + /** [VideoDecoder](https://developers.weixin.qq.com/miniprogram/dev/api/media/video-decoder/VideoDecoder.html) + * + * 视频解码器实例 */ + source: VideoDecoder + ): Promise + /** [Promise MediaAudioPlayer.start()](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/MediaAudioPlayer.start.html) + * + * 启动播放器 */ + start(): Promise + /** [Promise MediaAudioPlayer.stop()](https://developers.weixin.qq.com/miniprogram/dev/api/media/audio/MediaAudioPlayer.stop.html) + * + * 停止播放器 */ + stop(): Promise + } + interface MediaContainer { + /** [MediaContainer.addTrack([MediaTrack](https://developers.weixin.qq.com/miniprogram/dev/api/media/video-processing/MediaTrack.html) track)](https://developers.weixin.qq.com/miniprogram/dev/api/media/video-processing/MediaContainer.addTrack.html) + * + * 将音频或视频轨道添加到容器 + * + * 最低基础库: `2.9.0` */ + addTrack( + /** [MediaTrack](https://developers.weixin.qq.com/miniprogram/dev/api/media/video-processing/MediaTrack.html) + * + * 要添加的音频或视频轨道 */ + track: MediaTrack + ): void + /** [MediaContainer.destroy()](https://developers.weixin.qq.com/miniprogram/dev/api/media/video-processing/MediaContainer.destroy.html) + * + * 将容器销毁,释放资源 + * + * 最低基础库: `2.9.0` */ + destroy(): void + /** [MediaContainer.export()](https://developers.weixin.qq.com/miniprogram/dev/api/media/video-processing/MediaContainer.export.html) + * + * 将容器内的轨道合并并导出视频文件 + * + * 最低基础库: `2.9.0` */ + export(): void + /** [MediaContainer.extractDataSource(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/media/video-processing/MediaContainer.extractDataSource.html) + * + * 将传入的视频源分离轨道。不会自动将轨道添加到待合成的容器里。 + * + * 最低基础库: `2.9.0` */ + extractDataSource(option: ExtractDataSourceOption): void + /** [MediaContainer.removeTrack([MediaTrack](https://developers.weixin.qq.com/miniprogram/dev/api/media/video-processing/MediaTrack.html) track)](https://developers.weixin.qq.com/miniprogram/dev/api/media/video-processing/MediaContainer.removeTrack.html) + * + * 将音频或视频轨道从容器中移除 + * + * 最低基础库: `2.9.0` */ + removeTrack( + /** [MediaTrack](https://developers.weixin.qq.com/miniprogram/dev/api/media/video-processing/MediaTrack.html) + * + * 要移除的音频或视频轨道 */ + track: MediaTrack + ): void + } + interface MediaQueryObserver { + /** [MediaQueryObserver.disconnect()](https://developers.weixin.qq.com/miniprogram/dev/api/wxml/MediaQueryObserver.disconnect.html) + * + * 停止监听。回调函数将不再触发 */ + disconnect(): void + /** [MediaQueryObserver.observe(Object descriptor, function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/wxml/MediaQueryObserver.observe.html) + * + * 开始监听页面 media query 变化情况 */ + observe( + /** media query 描述符 */ + descriptor: ObserveDescriptor, + /** 监听 media query 状态变化的回调函数 */ + callback: MediaQueryObserverObserveCallback + ): void + } + interface MediaRecorder { + /** [MediaRecorder.destroy()](https://developers.weixin.qq.com/miniprogram/dev/api/media/media-recorder/MediaRecorder.destroy.html) + * + * 销毁录制器 + * + * 最低基础库: `2.11.0` */ + destroy(): void + /** [MediaRecorder.off(string eventName, function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/media-recorder/MediaRecorder.off.html) + * + * 取消监听录制事件。当对应事件触发时,该回调函数不再执行。 + * + * 最低基础库: `2.11.0` */ + off( + /** 事件名 */ + eventName: string, + /** 事件触发时执行的回调函数 */ + callback: (...args: any[]) => any + ): void + /** [MediaRecorder.on(string eventName, function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/media-recorder/MediaRecorder.on.html) + * + * 注册监听录制事件的回调函数。当对应事件触发时,回调函数会被执行。 + * + * 最低基础库: `2.11.0` */ + on( + /** 事件名 + * + * 参数 eventName 可选值: + * - 'start': 录制开始事件。; + * - 'stop': 录制结束事件。返回 {tempFilePath, duration, fileSize}; */ + eventName: 'start' | 'stop', + /** 事件触发时执行的回调函数 */ + callback: (...args: any[]) => any + ): void + /** [MediaRecorder.pause()](https://developers.weixin.qq.com/miniprogram/dev/api/media/media-recorder/MediaRecorder.pause.html) + * + * 暂停录制 + * + * 最低基础库: `2.11.0` */ + pause(): void + /** [MediaRecorder.requestFrame(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/media/media-recorder/MediaRecorder.requestFrame.html) + * + * 请求下一帧录制,在 callback 里完成一帧渲染后开始录制当前帧 + * + * 最低基础库: `2.11.0` */ + requestFrame(callback: (...args: any[]) => any): void + /** [MediaRecorder.resume()](https://developers.weixin.qq.com/miniprogram/dev/api/media/media-recorder/MediaRecorder.resume.html) + * + * 恢复录制 + * + * 最低基础库: `2.11.0` */ + resume(): void + /** [MediaRecorder.start()](https://developers.weixin.qq.com/miniprogram/dev/api/media/media-recorder/MediaRecorder.start.html) + * + * 开始录制 + * + * 最低基础库: `2.11.0` */ + start(): void + /** [MediaRecorder.stop()](https://developers.weixin.qq.com/miniprogram/dev/api/media/media-recorder/MediaRecorder.stop.html) + * + * 结束录制 + * + * 最低基础库: `2.11.0` */ + stop(): void + } + interface MifareClassic { + /** [MifareClassic.close(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/MifareClassic.close.html) + * + * 断开连接 + * + * 最低基础库: `2.11.2` */ + close(option?: NdefCloseOption): void + /** [MifareClassic.connect(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/MifareClassic.connect.html) + * + * 连接 NFC 标签 + * + * 最低基础库: `2.11.2` */ + connect(option?: ConnectOption): void + /** [MifareClassic.getMaxTransceiveLength(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/MifareClassic.getMaxTransceiveLength.html) + * + * 获取最大传输长度 + * + * 最低基础库: `2.11.2` */ + getMaxTransceiveLength(option?: GetMaxTransceiveLengthOption): void + /** [MifareClassic.isConnected(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/MifareClassic.isConnected.html) + * + * 检查是否已连接 + * + * 最低基础库: `2.11.2` */ + isConnected(option?: IsConnectedOption): void + /** [MifareClassic.setTimeout(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/MifareClassic.setTimeout.html) + * + * 设置超时时间 + * + * 最低基础库: `2.11.2` */ + setTimeout(option: SetTimeoutOption): void + /** [MifareClassic.transceive(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/MifareClassic.transceive.html) + * + * 发送数据 + * + * 最低基础库: `2.11.2` */ + transceive(option: TransceiveOption): void + } + interface MifareUltralight { + /** [MifareUltralight.close(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/MifareUltralight.close.html) + * + * 断开连接 + * + * 最低基础库: `2.11.2` */ + close(option?: NdefCloseOption): void + /** [MifareUltralight.connect(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/MifareUltralight.connect.html) + * + * 连接 NFC 标签 + * + * 最低基础库: `2.11.2` */ + connect(option?: ConnectOption): void + /** [MifareUltralight.getMaxTransceiveLength(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/MifareUltralight.getMaxTransceiveLength.html) + * + * 获取最大传输长度 + * + * 最低基础库: `2.11.2` */ + getMaxTransceiveLength(option?: GetMaxTransceiveLengthOption): void + /** [MifareUltralight.isConnected(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/MifareUltralight.isConnected.html) + * + * 检查是否已连接 + * + * 最低基础库: `2.11.2` */ + isConnected(option?: IsConnectedOption): void + /** [MifareUltralight.setTimeout(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/MifareUltralight.setTimeout.html) + * + * 设置超时时间 + * + * 最低基础库: `2.11.2` */ + setTimeout(option: SetTimeoutOption): void + /** [MifareUltralight.transceive(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/MifareUltralight.transceive.html) + * + * 发送数据 + * + * 最低基础库: `2.11.2` */ + transceive(option: TransceiveOption): void + } + interface NFCAdapter { + /** [NFCAdapter.offDiscovered(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NFCAdapter.offDiscovered.html) + * + * 取消监听 NFC Tag + * + * 最低基础库: `2.11.2` */ + offDiscovered( + /** 的回调函数 */ + callback?: OffDiscoveredCallback + ): void + /** [NFCAdapter.onDiscovered(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NFCAdapter.onDiscovered.html) + * + * 监听 NFC Tag + * + * 最低基础库: `2.11.2` */ + onDiscovered( + /** 的回调函数 */ + callback: OnDiscoveredCallback + ): void + /** [NFCAdapter.startDiscovery(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NFCAdapter.startDiscovery.html) + * + * + * + * 最低基础库: `2.11.2` */ + startDiscovery(option?: StartDiscoveryOption): void + /** [NFCAdapter.stopDiscovery(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NFCAdapter.stopDiscovery.html) + * + * + * + * 最低基础库: `2.11.2` */ + stopDiscovery(option?: StopDiscoveryOption): void + /** [[IsoDep](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/IsoDep.html) NFCAdapter.getIsoDep()](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NFCAdapter.getIsoDep.html) + * + * 获取IsoDep实例,实例支持ISO-DEP (ISO 14443-4)标准的读写 + * + * 最低基础库: `2.11.2` */ + getIsoDep(): IsoDep + /** [[MifareClassic](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/MifareClassic.html) NFCAdapter.getMifareClassic()](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NFCAdapter.getMifareClassic.html) + * + * 获取MifareClassic实例,实例支持MIFARE Classic标签的读写 + * + * 最低基础库: `2.11.2` */ + getMifareClassic(): MifareClassic + /** [[MifareUltralight](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/MifareUltralight.html) NFCAdapter.getMifareUltralight()](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NFCAdapter.getMifareUltralight.html) + * + * 获取MifareUltralight实例,实例支持MIFARE Ultralight标签的读写 + * + * 最低基础库: `2.11.2` */ + getMifareUltralight(): MifareUltralight + /** [[Ndef](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/Ndef.html) NFCAdapter.getNdef()](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NFCAdapter.getNdef.html) + * + * 获取Ndef实例,实例支持对NDEF格式的NFC标签上的NDEF数据的读写 + * + * 最低基础库: `2.11.2` */ + getNdef(): Ndef + /** [[NfcA](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcA.html) NFCAdapter.getNfcA()](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NFCAdapter.getNfcA.html) + * + * 获取NfcA实例,实例支持NFC-A (ISO 14443-3A)标准的读写 + * + * 最低基础库: `2.11.2` */ + getNfcA(): NfcA + /** [[NfcB](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcB.html) NFCAdapter.getNfcB()](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NFCAdapter.getNfcB.html) + * + * 获取NfcB实例,实例支持NFC-B (ISO 14443-3B)标准的读写 + * + * 最低基础库: `2.11.2` */ + getNfcB(): NfcB + /** [[NfcF](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcF.html) NFCAdapter.getNfcF()](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NFCAdapter.getNfcF.html) + * + * 获取NfcF实例,实例支持NFC-F (JIS 6319-4)标准的读写 + * + * 最低基础库: `2.11.2` */ + getNfcF(): NfcF + /** [[NfcV](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcV.html) NFCAdapter.getNfcV()](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NFCAdapter.getNfcV.html) + * + * 获取NfcV实例,实例支持NFC-V (ISO 15693)标准的读写 + * + * 最低基础库: `2.11.2` */ + getNfcV(): NfcV + } + interface NFCError { + /** 错误信息 + * + * | 错误码 | 错误信息 | 说明 | + * | - | - | - | + * | 0 | ok | 正常 | + * | 13000 | | 当前设备不支持NFC | + * | 13001 | | 当前设备支持NFC,但系统NFC开关未开启 | + * | 13002 | | 当前设备支持NFC,但不支持HCE | + * | 13003 | | AID列表参数格式错误 | + * | 13004 | | 未设置微信为默认NFC支付应用 | + * | 13005 | | 返回的指令不合法 | + * | 13006 | | 注册AID失败 | */ errMsg: string + /** 错误码 + * + * | 错误码 | 错误信息 | 说明 | + * | - | - | - | + * | 0 | ok | 正常 | + * | 13000 | | 当前设备不支持NFC | + * | 13001 | | 当前设备支持NFC,但系统NFC开关未开启 | + * | 13002 | | 当前设备支持NFC,但不支持HCE | + * | 13003 | | AID列表参数格式错误 | + * | 13004 | | 未设置微信为默认NFC支付应用 | + * | 13005 | | 返回的指令不合法 | + * | 13006 | | 注册AID失败 | */ errCode: number + } + interface Ndef { + /** [Ndef.close(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/Ndef.close.html) + * + * 断开连接 + * + * 最低基础库: `2.11.2` */ + close(option?: NdefCloseOption): void + /** [Ndef.connect(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/Ndef.connect.html) + * + * 连接 NFC 标签 + * + * 最低基础库: `2.11.2` */ + connect(option?: ConnectOption): void + /** [Ndef.isConnected(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/Ndef.isConnected.html) + * + * 检查是否已连接 + * + * 最低基础库: `2.11.2` */ + isConnected(option?: IsConnectedOption): void + /** [Ndef.offNdefMessage(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/Ndef.offNdefMessage.html) + * + * 取消监听 Ndef 消息 + * + * 最低基础库: `2.11.2` */ + offNdefMessage(callback: (...args: any[]) => any): void + /** [Ndef.onNdefMessage(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/Ndef.onNdefMessage.html) + * + * 监听 Ndef 消息 + * + * 最低基础库: `2.11.2` */ + onNdefMessage(callback: (...args: any[]) => any): void + /** [Ndef.setTimeout(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/Ndef.setTimeout.html) + * + * 设置超时时间 + * + * 最低基础库: `2.11.2` */ + setTimeout(option: SetTimeoutOption): void + /** [Ndef.writeNdefMessage(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/Ndef.writeNdefMessage.html) + * + * 重写 Ndef 标签内容 + * + * 最低基础库: `2.11.2` */ + writeNdefMessage(option: WriteNdefMessageOption): void + } + interface NfcA { + /** [NfcA.close(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcA.close.html) + * + * 断开连接 + * + * 最低基础库: `2.11.2` */ + close(option?: NdefCloseOption): void + /** [NfcA.connect(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcA.connect.html) + * + * 连接 NFC 标签 + * + * 最低基础库: `2.11.2` */ + connect(option?: ConnectOption): void + /** [NfcA.getAtqa(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcA.getAtqa.html) + * + * 获取ATQA信息 + * + * 最低基础库: `2.11.2` */ + getAtqa(option?: GetAtqaOption): void + /** [NfcA.getMaxTransceiveLength(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcA.getMaxTransceiveLength.html) + * + * 获取最大传输长度 + * + * 最低基础库: `2.11.2` */ + getMaxTransceiveLength(option?: GetMaxTransceiveLengthOption): void + /** [NfcA.getSak(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcA.getSak.html) + * + * 获取SAK信息 + * + * 最低基础库: `2.11.2` */ + getSak(option?: GetSakOption): void + /** [NfcA.isConnected(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcA.isConnected.html) + * + * 检查是否已连接 + * + * 最低基础库: `2.11.2` */ + isConnected(option?: IsConnectedOption): void + /** [NfcA.setTimeout(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcA.setTimeout.html) + * + * 设置超时时间 + * + * 最低基础库: `2.11.2` */ + setTimeout(option: SetTimeoutOption): void + /** [NfcA.transceive(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcA.transceive.html) + * + * 发送数据 + * + * 最低基础库: `2.11.2` */ + transceive(option: TransceiveOption): void + } + interface NfcB { + /** [NfcB.close(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcB.close.html) + * + * 断开连接 + * + * 最低基础库: `2.11.2` */ + close(option?: NdefCloseOption): void + /** [NfcB.connect(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcB.connect.html) + * + * 连接 NFC 标签 + * + * 最低基础库: `2.11.2` */ + connect(option?: ConnectOption): void + /** [NfcB.getMaxTransceiveLength(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcB.getMaxTransceiveLength.html) + * + * 获取最大传输长度 + * + * 最低基础库: `2.11.2` */ + getMaxTransceiveLength(option?: GetMaxTransceiveLengthOption): void + /** [NfcB.isConnected(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcB.isConnected.html) + * + * 检查是否已连接 + * + * 最低基础库: `2.11.2` */ + isConnected(option?: IsConnectedOption): void + /** [NfcB.setTimeout(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcB.setTimeout.html) + * + * 设置超时时间 + * + * 最低基础库: `2.11.2` */ + setTimeout(option: SetTimeoutOption): void + /** [NfcB.transceive(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcB.transceive.html) + * + * 发送数据 + * + * 最低基础库: `2.11.2` */ + transceive(option: TransceiveOption): void + } + interface NfcF { + /** [NfcF.close(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcF.close.html) + * + * 断开连接 + * + * 最低基础库: `2.11.2` */ + close(option?: NdefCloseOption): void + /** [NfcF.connect(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcF.connect.html) + * + * 连接 NFC 标签 + * + * 最低基础库: `2.11.2` */ + connect(option?: ConnectOption): void + /** [NfcF.getMaxTransceiveLength(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcF.getMaxTransceiveLength.html) + * + * 获取最大传输长度 + * + * 最低基础库: `2.11.2` */ + getMaxTransceiveLength(option?: GetMaxTransceiveLengthOption): void + /** [NfcF.isConnected(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcF.isConnected.html) + * + * 检查是否已连接 + * + * 最低基础库: `2.11.2` */ + isConnected(option?: IsConnectedOption): void + /** [NfcF.setTimeout(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcF.setTimeout.html) + * + * 设置超时时间 + * + * 最低基础库: `2.11.2` */ + setTimeout(option: SetTimeoutOption): void + /** [NfcF.transceive(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcF.transceive.html) + * + * 发送数据 + * + * 最低基础库: `2.11.2` */ + transceive(option: TransceiveOption): void + } + interface NfcV { + /** [NfcV.close(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcV.close.html) + * + * 断开连接 + * + * 最低基础库: `2.11.2` */ + close(option?: NdefCloseOption): void + /** [NfcV.connect(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcV.connect.html) + * + * 连接 NFC 标签 + * + * 最低基础库: `2.11.2` */ + connect(option?: ConnectOption): void + /** [NfcV.getMaxTransceiveLength(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcV.getMaxTransceiveLength.html) + * + * 获取最大传输长度 + * + * 最低基础库: `2.11.2` */ + getMaxTransceiveLength(option?: GetMaxTransceiveLengthOption): void + /** [NfcV.isConnected(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcV.isConnected.html) + * + * 检查是否已连接 + * + * 最低基础库: `2.11.2` */ + isConnected(option?: IsConnectedOption): void + /** [NfcV.setTimeout(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcV.setTimeout.html) + * + * 设置超时时间 + * + * 最低基础库: `2.11.2` */ + setTimeout(option: SetTimeoutOption): void + /** [NfcV.transceive(Object object)](https://developers.weixin.qq.com/miniprogram/dev/api/device/nfc/NfcV.transceive.html) + * + * 发送数据 + * + * 最低基础库: `2.11.2` */ + transceive(option: TransceiveOption): void + } + interface Nfcrwerror { + /** 错误信息 + * + * | 错误码 | 错误信息 | 说明 | + * | - | - | - | + * | 13000 | 设备不支持NFC | | + * | 13001 | 系统NFC开关未打开 | | + * | 13010 | 未知错误 | | + * | 13019 | user is not authorized | 用户未授权 | + * | 13011 | invalid parameter | 参数无效 | + * | 13012 | parse NdefMessage failed | 将参数解析为NdefMessage失败 | + * | 13021 | NFC discovery already started | 已经开始NFC扫描 | + * | 13018 | NFC discovery has not started | 尝试在未开始NFC扫描时停止NFC扫描 | + * | 13022 | Tech already connected | 标签已经连接 | + * | 13023 | Tech has not connected | 尝试在未连接标签时断开连接 | + * | 13013 | NFC tag has not been discovered | 未扫描到NFC标签 | + * | 13014 | invalid tech | 无效的标签技术 | + * | 13015 | unavailable tech | 从标签上获取对应技术失败 | + * | 13024 | function not support | 当前标签技术不支持该功能 | + * | 13017 | system internal error | 相关读写操作失败 | + * | 13016 | connect fail | 连接失败 | */ errMsg: string + /** 错误码 + * + * | 错误码 | 错误信息 | 说明 | + * | - | - | - | + * | 13000 | 设备不支持NFC | | + * | 13001 | 系统NFC开关未打开 | | + * | 13010 | 未知错误 | | + * | 13019 | user is not authorized | 用户未授权 | + * | 13011 | invalid parameter | 参数无效 | + * | 13012 | parse NdefMessage failed | 将参数解析为NdefMessage失败 | + * | 13021 | NFC discovery already started | 已经开始NFC扫描 | + * | 13018 | NFC discovery has not started | 尝试在未开始NFC扫描时停止NFC扫描 | + * | 13022 | Tech already connected | 标签已经连接 | + * | 13023 | Tech has not connected | 尝试在未连接标签时断开连接 | + * | 13013 | NFC tag has not been discovered | 未扫描到NFC标签 | + * | 13014 | invalid tech | 无效的标签技术 | + * | 13015 | unavailable tech | 从标签上获取对应技术失败 | + * | 13024 | function not support | 当前标签技术不支持该功能 | + * | 13017 | system internal error | 相关读写操作失败 | + * | 13016 | connect fail | 连接失败 | */ errCode: number + } + interface NodesRef { + /** [[SelectorQuery](https://developers.weixin.qq.com/miniprogram/dev/api/wxml/SelectorQuery.html) NodesRef.boundingClientRect(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/wxml/NodesRef.boundingClientRect.html) +* +* 添加节点的布局位置的查询请求。相对于显示区域,以像素为单位。其功能类似于 DOM 的 `getBoundingClientRect`。返回 `NodesRef` 对应的 `SelectorQuery`。 +* +* **示例代码** +* +* +* ```js +Page({ + getRect () { + wx.createSelectorQuery().select('#the-id').boundingClientRect(function(rect){ + rect.id // 节点的ID + rect.dataset // 节点的dataset + rect.left // 节点的左边界坐标 + rect.right // 节点的右边界坐标 + rect.top // 节点的上边界坐标 + rect.bottom // 节点的下边界坐标 + rect.width // 节点的宽度 + rect.height // 节点的高度 + }).exec() + }, + getAllRects () { + wx.createSelectorQuery().selectAll('.a-class').boundingClientRect(function(rects){ + rects.forEach(function(rect){ + rect.id // 节点的ID + rect.dataset // 节点的dataset + rect.left // 节点的左边界坐标 + rect.right // 节点的右边界坐标 + rect.top // 节点的上边界坐标 + rect.bottom // 节点的下边界坐标 + rect.width // 节点的宽度 + rect.height // 节点的高度 + }) + }).exec() + } +}) +``` */ + boundingClientRect( + /** 回调函数,在执行 `SelectorQuery.exec` 方法后,节点信息会在 `callback` 中返回。 */ + callback?: BoundingClientRectCallback + ): SelectorQuery + /** [[SelectorQuery](https://developers.weixin.qq.com/miniprogram/dev/api/wxml/SelectorQuery.html) NodesRef.context(function callback)](https://developers.weixin.qq.com/miniprogram/dev/api/wxml/NodesRef.context.html) +* +* 添加节点的 Context 对象查询请求。目前支持 [VideoContext](https://developers.weixin.qq.com/miniprogram/dev/api/media/video/VideoContext.html)、[CanvasContext](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.html)、[LivePlayerContext](https://developers.weixin.qq.com/miniprogram/dev/api/media/live/LivePlayerContext.html)、[EditorContext](https://developers.weixin.qq.com/miniprogram/dev/api/media/editor/EditorContext.html)和 [MapContext](https://developers.weixin.qq.com/miniprogram/dev/api/media/map/MapContext.html) 的获取。 +* +* **示例代码** +* +* +* ```js +Page({ + getContext () { + wx.createSelectorQuery().select('.the-video-class').context(function(res){ + console.log(res.context) // 节点对应的 Context 对象。如:选中的节点是