提交 aa8feb4e 编写于 作者: fxy060608's avatar fxy060608

uni-mp-alipay 0.0.4

上级 05167597
......@@ -341,31 +341,12 @@ const protocols = { // 需要做转换的 API 列表
type: false,
altitude: false
}
// returnValue: {
// speed: false,
// altitude: false,
// verticalAccuracy: false
// }
},
openLocation: {
args: {
// TODO address 参数在阿里上是必传的
}
},
getSystemInfo: {
// returnValue: {
// brand: false,
// statusBarHeight: false,
// SDKVersion: false
// }
},
getSystemInfoSync: {
// returnValue: {
// brand: false,
// statusBarHeight: false,
// SDKVersion: false
// }
},
getNetworkType: {
returnValue: _handleNetworkInfo
},
......@@ -383,6 +364,9 @@ const protocols = { // 需要做转换的 API 列表
args: {
onlyFromCamera: 'hideAlbum',
scanType: false
},
returnValue: {
code: 'result'
}
},
setClipboardData: {
......@@ -544,10 +528,33 @@ var extraApi = /*#__PURE__*/Object.freeze({
getProvider: getProvider
});
function setStorageSync (key, data) {
return my.setStorageSync({
key,
data
})
}
function getStorageSync (key) {
const result = my.getStorageSync({
key
});
// 不知道会不会出现 success 为 false 情况,暂时这样处理下。
if (result.success) {
return result.data || ''
} else {
return ''
}
}
function removeStorageSync (key) {
return my.removeStorageSync({
key
})
}
var api = /*#__PURE__*/Object.freeze({
setStorageSync: setStorageSync,
getStorageSync: getStorageSync,
removeStorageSync: removeStorageSync
});
let uni$1 = {};
......
{
"name": "@dcloudio/uni-mp-alipay",
"version": "0.0.3",
"version": "0.0.4",
"description": "uni-app mp-alipay",
"main": "dist/index.js",
"scripts": {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册