From 07cfbf1491a682f7891f1c5a7493256698e43730 Mon Sep 17 00:00:00 2001 From: fxy060608 Date: Thu, 16 Apr 2020 17:28:55 +0800 Subject: [PATCH] chore(v3): remove unused error log --- src/platforms/app-plus/view/framework/plugins/data.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/platforms/app-plus/view/framework/plugins/data.js b/src/platforms/app-plus/view/framework/plugins/data.js index 121df6208..94c47c949 100644 --- a/src/platforms/app-plus/view/framework/plugins/data.js +++ b/src/platforms/app-plus/view/framework/plugins/data.js @@ -127,7 +127,7 @@ function getData (id, name) { try { return this.$r[id][name] } catch (e) { - console.error(this.$options.__file + `:[${this._$id}]$r[${id}][${name}] is undefined`) + // console.error(this.$options.__file + `:[${this._$id}]$r[${id}][${name}] is undefined`) } } /** @@ -143,7 +143,7 @@ function getChangeData (id, name) { this.$set(this.wxsProps, wxsPropName, value) return value } catch (e) { - console.error(this.$options.__file + `:[${this._$id}]$r[${id}][${name}] is undefined`) + // console.error(this.$options.__file + `:[${this._$id}]$r[${id}][${name}] is undefined`) } } -- GitLab