Commit 331d796d authored by 慕轻风's avatar 慕轻风

wnf

parent 6714621a
// 分享配置
export const SHARE_CONFIG = {
title: '分享测试标题',
desc: '分享测试描述',
imageUrl: '', // 分享图片URL
path: 'pages/index/index'
};
// 链接配置
export const REDIRECT_URL = {
'testpage': '/pages/testPage/testPage',
'tmall': 'https://www.tmall.com'
};
// 领取奖品状态 // 领取奖品状态
export const DRAW_STATUS = { export const DRAW_STATUS = {
// 待领取 // 待领取
...@@ -21,3 +35,20 @@ export const PRIZE_TYPE = { ...@@ -21,3 +35,20 @@ export const PRIZE_TYPE = {
OBJECT: 3, OBJECT: 3,
THANKS: 5 THANKS: 5
}; };
// 我的奖品状态
export const PRIZE_DRAW_STATUS_MAP = {
RECEIVE: 1, // 待领取
DEALING: 2, // 处理中
SUCCESS: 3, // 领取成功
FAILURE: 4, // 领取失败
FINISHED: 5, // 已过期
REPEAT: 6, // 重新领取
}
// 奖品类型
export const PRIZE_TYPE_MAP = {
EQUITY: 1, // 权益
INTEGRATION: 2, // 积分
ENTITY: 3, // 实物
THANKS: 5 // 谢谢参与
}
\ No newline at end of file
...@@ -518,3 +518,23 @@ export const textRiskIdentification = async (text) => { ...@@ -518,3 +518,23 @@ export const textRiskIdentification = async (text) => {
}) })
}) })
} }
// 剪切板
export function setClipboard(params) {
return promisifyMyApi('setClipboard', params)
};
function promisifyMyApi(methodName, params = {}) {
return new Promise((resolve, reject) => {
my[methodName]({
...params,
success: res => {
resolve(res)
},
fail: err => {
reject(err)
}
})
})
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment