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

fix(runtime): 'set' on proxy:

上级 e5c3df14
...@@ -1453,6 +1453,7 @@ if (typeof Proxy !== 'undefined' && "app-plus" !== 'app-plus') { ...@@ -1453,6 +1453,7 @@ if (typeof Proxy !== 'undefined' && "app-plus" !== 'app-plus') {
}, },
set (target, name, value) { set (target, name, value) {
target[name] = value; target[name] = value;
return true
} }
}); });
} else { } else {
......
{ {
"name": "@dcloudio/uni-app-plus", "name": "@dcloudio/uni-app-plus",
"version": "0.0.250", "version": "0.0.251",
"description": "uni-app app-plus", "description": "uni-app app-plus",
"main": "dist/index.js", "main": "dist/index.js",
"scripts": { "scripts": {
......
...@@ -2036,6 +2036,7 @@ if (typeof Proxy !== 'undefined' && "mp-alipay" !== 'app-plus') { ...@@ -2036,6 +2036,7 @@ if (typeof Proxy !== 'undefined' && "mp-alipay" !== 'app-plus') {
}, },
set (target, name, value) { set (target, name, value) {
target[name] = value; target[name] = value;
return true
} }
}); });
} else { } else {
......
{ {
"name": "@dcloudio/uni-mp-alipay", "name": "@dcloudio/uni-mp-alipay",
"version": "0.0.824", "version": "0.0.825",
"description": "uni-app mp-alipay", "description": "uni-app mp-alipay",
"main": "dist/index.js", "main": "dist/index.js",
"scripts": { "scripts": {
......
...@@ -1619,6 +1619,7 @@ if (typeof Proxy !== 'undefined' && "mp-baidu" !== 'app-plus') { ...@@ -1619,6 +1619,7 @@ if (typeof Proxy !== 'undefined' && "mp-baidu" !== 'app-plus') {
}, },
set (target, name, value) { set (target, name, value) {
target[name] = value; target[name] = value;
return true
} }
}); });
} else { } else {
......
{ {
"name": "@dcloudio/uni-mp-baidu", "name": "@dcloudio/uni-mp-baidu",
"version": "0.0.854", "version": "0.0.855",
"description": "uni-app mp-baidu", "description": "uni-app mp-baidu",
"main": "dist/index.js", "main": "dist/index.js",
"scripts": { "scripts": {
......
...@@ -1500,6 +1500,7 @@ if (typeof Proxy !== 'undefined' && "mp-qq" !== 'app-plus') { ...@@ -1500,6 +1500,7 @@ if (typeof Proxy !== 'undefined' && "mp-qq" !== 'app-plus') {
}, },
set (target, name, value) { set (target, name, value) {
target[name] = value; target[name] = value;
return true
} }
}); });
} else { } else {
......
{ {
"name": "@dcloudio/uni-mp-qq", "name": "@dcloudio/uni-mp-qq",
"version": "0.0.108", "version": "0.0.109",
"description": "uni-app mp-qq", "description": "uni-app mp-qq",
"main": "dist/index.js", "main": "dist/index.js",
"scripts": { "scripts": {
......
...@@ -1679,6 +1679,7 @@ if (typeof Proxy !== 'undefined' && "mp-toutiao" !== 'app-plus') { ...@@ -1679,6 +1679,7 @@ if (typeof Proxy !== 'undefined' && "mp-toutiao" !== 'app-plus') {
}, },
set (target, name, value) { set (target, name, value) {
target[name] = value; target[name] = value;
return true
} }
}); });
} else { } else {
......
{ {
"name": "@dcloudio/uni-mp-toutiao", "name": "@dcloudio/uni-mp-toutiao",
"version": "0.0.348", "version": "0.0.349",
"description": "uni-app mp-toutiao", "description": "uni-app mp-toutiao",
"main": "dist/index.js", "main": "dist/index.js",
"scripts": { "scripts": {
......
...@@ -1431,6 +1431,7 @@ if (typeof Proxy !== 'undefined' && "mp-weixin" !== 'app-plus') { ...@@ -1431,6 +1431,7 @@ if (typeof Proxy !== 'undefined' && "mp-weixin" !== 'app-plus') {
}, },
set (target, name, value) { set (target, name, value) {
target[name] = value; target[name] = value;
return true
} }
}); });
} else { } else {
......
{ {
"name": "@dcloudio/uni-mp-weixin", "name": "@dcloudio/uni-mp-weixin",
"version": "0.0.970", "version": "0.0.971",
"description": "uni-app mp-weixin", "description": "uni-app mp-weixin",
"main": "dist/index.js", "main": "dist/index.js",
"scripts": { "scripts": {
......
...@@ -72,6 +72,7 @@ if (typeof Proxy !== 'undefined' && __PLATFORM__ !== 'app-plus') { ...@@ -72,6 +72,7 @@ if (typeof Proxy !== 'undefined' && __PLATFORM__ !== 'app-plus') {
}, },
set (target, name, value) { set (target, name, value) {
target[name] = value target[name] = value
return true
} }
}) })
} else { } else {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册