(t)
| 2059 | resetFormData: function() { |
| 2060 | if (this.hasBehavior("wx-data-component")) { |
| 2061 | var e = function e(t) { |
| 2062 | t.childNodes.forEach(function(t) { |
| 2063 | if (t instanceof exparser.Element && !t.hasBehavior("wx-group")) return t.hasBehavior("wx-item") ? void t.resetFormData() : void e(t) |
| 2064 | }) |
| 2065 | }; |
| 2066 | e(this) |
| 2067 | } |
| 2068 | } |