render-core 1.2.24 → 1.2.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/core/proxy/getProxy.js
CHANGED
|
@@ -27,7 +27,7 @@ export function cmdUtility(tagTemplate, proto, controller) {
|
|
|
27
27
|
//渲染text
|
|
28
28
|
resolver_txt(tagTemplate.children, controller.proxyForMethods, controller);
|
|
29
29
|
//绑定数据
|
|
30
|
-
resolver_model(tagTemplate.children, controller.
|
|
30
|
+
resolver_model(tagTemplate.children, controller.proxyForMethods);
|
|
31
31
|
//渲染属性
|
|
32
32
|
resolver_bind(tagTemplate.children, controller.proxyForMethods);
|
|
33
33
|
//solt
|
|
@@ -13,7 +13,5 @@ export function locateInputAddress(controller) {
|
|
|
13
13
|
target.focus();
|
|
14
14
|
// @ts-ignore
|
|
15
15
|
target.setSelectionRange(controller.proxyForMethods[doc.name].length, controller.proxyForMethods[doc.name].length);
|
|
16
|
-
//清楚输入标记
|
|
17
|
-
Reflect.deleteProperty(controller.proxyForMethods, "origin");
|
|
18
16
|
}
|
|
19
17
|
}
|