@dimina-kit/devtools 0.3.1 → 0.3.2-dev.20260522085907

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.
Files changed (190) hide show
  1. package/README.md +297 -133
  2. package/dist/main/api.d.ts +6 -2
  3. package/dist/main/api.js +5 -2
  4. package/dist/main/app/app.d.ts +1 -1
  5. package/dist/main/app/app.js +84 -36
  6. package/dist/main/app/bootstrap.js +2 -1
  7. package/dist/main/app/launch.d.ts +2 -2
  8. package/dist/main/app/launch.js +10 -8
  9. package/dist/main/index.bundle.js +1567 -477
  10. package/dist/main/ipc/app.d.ts +2 -1
  11. package/dist/main/ipc/app.js +5 -4
  12. package/dist/main/ipc/index.d.ts +5 -4
  13. package/dist/main/ipc/index.js +5 -4
  14. package/dist/main/ipc/panels.d.ts +2 -1
  15. package/dist/main/ipc/panels.js +16 -13
  16. package/dist/main/ipc/popover.d.ts +4 -1
  17. package/dist/main/ipc/popover.js +15 -5
  18. package/dist/main/ipc/projects.d.ts +6 -1
  19. package/dist/main/ipc/projects.js +127 -6
  20. package/dist/main/ipc/session.d.ts +4 -1
  21. package/dist/main/ipc/session.js +34 -6
  22. package/dist/main/ipc/settings.d.ts +4 -1
  23. package/dist/main/ipc/settings.js +51 -23
  24. package/dist/main/ipc/simulator-module.d.ts +8 -0
  25. package/dist/main/ipc/simulator-module.js +19 -0
  26. package/dist/main/ipc/simulator.d.ts +2 -1
  27. package/dist/main/ipc/simulator.js +23 -18
  28. package/dist/main/ipc/toolbar.d.ts +2 -1
  29. package/dist/main/ipc/toolbar.js +3 -2
  30. package/dist/main/menu/index.js +11 -0
  31. package/dist/main/services/automation/exec.d.ts +2 -0
  32. package/dist/main/services/automation/exec.js +7 -9
  33. package/dist/main/services/automation/handlers/app.js +37 -51
  34. package/dist/main/services/automation/handlers/element.js +27 -41
  35. package/dist/main/services/automation/index.js +88 -13
  36. package/dist/main/services/default-adapter.js +3 -3
  37. package/dist/main/services/mcp/index.d.ts +1 -0
  38. package/dist/main/services/mcp/index.js +1 -0
  39. package/dist/main/services/mcp/server.d.ts +2 -1
  40. package/dist/main/services/mcp/server.js +10 -0
  41. package/dist/main/services/mcp/status.d.ts +10 -0
  42. package/dist/main/services/mcp/status.js +14 -0
  43. package/dist/main/services/mcp/target-manager.js +2 -1
  44. package/dist/main/services/module.d.ts +18 -0
  45. package/dist/main/services/module.js +2 -0
  46. package/dist/main/services/notifications/renderer-notifier.d.ts +5 -3
  47. package/dist/main/services/notifications/renderer-notifier.js +3 -6
  48. package/dist/main/services/projects/builtin-templates.d.ts +3 -0
  49. package/dist/main/services/projects/builtin-templates.js +24 -0
  50. package/dist/main/services/projects/create-project-service.d.ts +7 -0
  51. package/dist/main/services/projects/create-project-service.js +84 -0
  52. package/dist/main/services/projects/index.d.ts +7 -0
  53. package/dist/main/services/projects/index.js +9 -0
  54. package/dist/main/services/projects/local-provider.d.ts +3 -0
  55. package/dist/main/services/projects/local-provider.js +25 -0
  56. package/dist/main/services/projects/project-repository.d.ts +1 -1
  57. package/dist/main/services/projects/project-repository.js +3 -0
  58. package/dist/main/services/projects/templates.d.ts +21 -0
  59. package/dist/main/services/projects/templates.js +39 -0
  60. package/dist/main/services/projects/thumbnail.d.ts +8 -0
  61. package/dist/main/services/projects/thumbnail.js +37 -0
  62. package/dist/main/services/projects/types.d.ts +118 -0
  63. package/dist/main/services/projects/types.js +19 -0
  64. package/dist/main/services/settings/index.d.ts +11 -0
  65. package/dist/main/services/settings/index.js +18 -2
  66. package/dist/main/services/simulator/custom-apis.d.ts +10 -0
  67. package/dist/main/services/simulator/custom-apis.js +26 -0
  68. package/dist/main/services/simulator-storage/index.d.ts +22 -1
  69. package/dist/main/services/simulator-storage/index.js +334 -97
  70. package/dist/main/services/update/update-manager.d.ts +16 -1
  71. package/dist/main/services/update/update-manager.js +18 -15
  72. package/dist/main/services/views/view-manager.d.ts +7 -7
  73. package/dist/main/services/views/view-manager.js +53 -29
  74. package/dist/main/services/window-service.d.ts +24 -0
  75. package/dist/main/services/window-service.js +26 -0
  76. package/dist/main/services/workbench-context.d.ts +49 -2
  77. package/dist/main/services/workbench-context.js +15 -2
  78. package/dist/main/services/workspace/workspace-service.d.ts +9 -6
  79. package/dist/main/services/workspace/workspace-service.js +71 -11
  80. package/dist/main/simulator-apis.d.ts +23 -0
  81. package/dist/main/simulator-apis.js +24 -0
  82. package/dist/main/utils/disposable.d.ts +13 -0
  83. package/dist/main/utils/disposable.js +60 -0
  84. package/dist/main/utils/ipc-registry.d.ts +39 -0
  85. package/dist/main/utils/ipc-registry.js +109 -0
  86. package/dist/main/utils/ipc-schema.d.ts +28 -0
  87. package/dist/main/utils/ipc-schema.js +38 -0
  88. package/dist/main/utils/paths.d.ts +6 -0
  89. package/dist/main/utils/paths.js +6 -0
  90. package/dist/main/utils/sender-policy.d.ts +25 -0
  91. package/dist/main/utils/sender-policy.js +44 -0
  92. package/dist/main/utils/theme.d.ts +24 -0
  93. package/dist/main/utils/theme.js +38 -1
  94. package/dist/main/windows/main-window/create.d.ts +6 -0
  95. package/dist/main/windows/main-window/create.js +66 -10
  96. package/dist/main/windows/main-window/events.d.ts +2 -1
  97. package/dist/main/windows/main-window/events.js +25 -2
  98. package/dist/main/windows/navigation-hardening.d.ts +24 -0
  99. package/dist/main/windows/navigation-hardening.js +55 -0
  100. package/dist/main/windows/settings-window/create.js +11 -1
  101. package/dist/preload/index.d.ts +22 -0
  102. package/dist/preload/index.js +19 -0
  103. package/dist/preload/instrumentation/app-data.d.ts +32 -2
  104. package/dist/preload/instrumentation/app-data.js +253 -79
  105. package/dist/preload/instrumentation/index.d.ts +2 -2
  106. package/dist/preload/instrumentation/index.js +2 -2
  107. package/dist/preload/instrumentation/wxml.d.ts +16 -4
  108. package/dist/preload/instrumentation/wxml.js +188 -178
  109. package/dist/preload/miniapp-snapshot/host.d.ts +12 -0
  110. package/dist/preload/miniapp-snapshot/host.js +117 -0
  111. package/dist/preload/miniapp-snapshot/types.d.ts +62 -0
  112. package/dist/preload/miniapp-snapshot/types.js +15 -0
  113. package/dist/preload/runtime/bridge.js +5 -24
  114. package/dist/preload/runtime/custom-apis.d.ts +6 -0
  115. package/dist/preload/runtime/custom-apis.js +43 -0
  116. package/dist/preload/runtime/host.d.ts +1 -0
  117. package/dist/preload/runtime/host.js +13 -0
  118. package/dist/preload/shared/expose.d.ts +15 -0
  119. package/dist/preload/shared/expose.js +33 -0
  120. package/dist/preload/shared/page-iframe.d.ts +3 -0
  121. package/dist/preload/shared/page-iframe.js +6 -0
  122. package/dist/preload/shared/types.d.ts +2 -0
  123. package/dist/preload/windows/main.cjs +47 -0
  124. package/dist/preload/windows/main.cjs.map +7 -0
  125. package/dist/preload/windows/simulator.js +501 -272
  126. package/dist/renderer/assets/constants-DI382mTP.js +2 -0
  127. package/dist/renderer/assets/index-D8VFYBh-.js +46 -0
  128. package/dist/renderer/assets/{input-DxfYnzX_.js → input-CoWcfa8u.js} +2 -2
  129. package/dist/renderer/assets/ipc-transport-Cd2xPrsa.js +9 -0
  130. package/dist/renderer/assets/ipc-transport-DqbRdZNO.css +1 -0
  131. package/dist/renderer/assets/popover-Nq5gT9DO.js +2 -0
  132. package/dist/renderer/assets/select-By5KH-UG.js +2 -0
  133. package/dist/renderer/assets/{settings-DteGraEU.js → settings-Dj_N70qR.js} +2 -2
  134. package/dist/renderer/assets/settings-api-Do0_Smq1.js +2 -0
  135. package/dist/renderer/assets/workbenchSettings-CazSLGYt.js +8 -0
  136. package/dist/renderer/entries/main/index.html +13 -5
  137. package/dist/renderer/entries/popover/index.html +8 -5
  138. package/dist/renderer/entries/settings/index.html +7 -5
  139. package/dist/renderer/entries/workbench-settings/index.html +7 -4
  140. package/dist/shared/ipc-channels.d.ts +46 -13
  141. package/dist/shared/ipc-channels.js +60 -14
  142. package/dist/shared/ipc-schemas.d.ts +118 -0
  143. package/dist/shared/ipc-schemas.js +133 -0
  144. package/dist/shared/simulator-route.d.ts +72 -0
  145. package/dist/shared/simulator-route.js +169 -0
  146. package/dist/shared/types.d.ts +82 -8
  147. package/dist/simulator/assets/simulator-DJCozrU5.js +9 -0
  148. package/dist/simulator/simulator.html +6 -43
  149. package/package.json +18 -29
  150. package/templates/blank/app.js +6 -0
  151. package/templates/blank/app.json +11 -0
  152. package/templates/blank/app.wxss +5 -0
  153. package/templates/blank/pages/index/index.js +6 -0
  154. package/templates/blank/pages/index/index.json +3 -0
  155. package/templates/blank/pages/index/index.wxml +3 -0
  156. package/templates/blank/pages/index/index.wxss +11 -0
  157. package/templates/blank/project.config.json +13 -0
  158. package/templates/blank/sitemap.json +9 -0
  159. package/templates/taro-todo/app.js +1 -0
  160. package/templates/taro-todo/app.json +1 -0
  161. package/templates/taro-todo/app.wxss +1 -0
  162. package/templates/taro-todo/base.wxml +851 -0
  163. package/templates/taro-todo/common.js +1 -0
  164. package/templates/taro-todo/comp.js +1 -0
  165. package/templates/taro-todo/comp.json +1 -0
  166. package/templates/taro-todo/comp.wxml +2 -0
  167. package/templates/taro-todo/custom-wrapper.js +1 -0
  168. package/templates/taro-todo/custom-wrapper.json +1 -0
  169. package/templates/taro-todo/custom-wrapper.wxml +4 -0
  170. package/templates/taro-todo/pages/index/index.js +2 -0
  171. package/templates/taro-todo/pages/index/index.json +1 -0
  172. package/templates/taro-todo/pages/index/index.wxml +2 -0
  173. package/templates/taro-todo/pages/index/index.wxss +1 -0
  174. package/templates/taro-todo/project.config.json +44 -0
  175. package/templates/taro-todo/runtime.js +1 -0
  176. package/templates/taro-todo/taro.js +2 -0
  177. package/templates/taro-todo/utils.wxs +39 -0
  178. package/templates/taro-todo/vendors.js +2 -0
  179. package/dist/preload/instrumentation/disposable.d.ts +0 -11
  180. package/dist/preload/instrumentation/disposable.js +0 -15
  181. package/dist/preload/windows/main.d.ts +0 -6
  182. package/dist/preload/windows/main.js +0 -6
  183. package/dist/renderer/assets/index-D1p6crtf.js +0 -46
  184. package/dist/renderer/assets/ipc-transport-ClIvDcYY.js +0 -9
  185. package/dist/renderer/assets/ipc-transport-EiWxu_hG.css +0 -1
  186. package/dist/renderer/assets/popover-CtXcBJtM.js +0 -2
  187. package/dist/renderer/assets/select-DMfp49f1.js +0 -2
  188. package/dist/renderer/assets/settings-api-CY84UMpN.js +0 -2
  189. package/dist/renderer/assets/workbenchSettings-DjELLnSJ.js +0 -8
  190. package/dist/simulator/assets/simulator-C1eHXnuq.js +0 -9
@@ -0,0 +1,851 @@
1
+ <wxs module="xs" src="./utils.wxs" />
2
+ <template name="taro_tmpl">
3
+ <block wx:for="{{root.cn}}" wx:key="sid">
4
+ <template is="tmpl_0_container" data="{{i:item,l:''}}" />
5
+ </block>
6
+ </template>
7
+
8
+ <template name="tmpl_0_catch-view">
9
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" catchtouchmove="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
10
+ <block wx:for="{{i.cn}}" wx:key="sid">
11
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
12
+ </block>
13
+ </view>
14
+ </template>
15
+
16
+ <template name="tmpl_0_static-view">
17
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" animation="{{i.animation}}" style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
18
+ <block wx:for="{{i.cn}}" wx:key="sid">
19
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
20
+ </block>
21
+ </view>
22
+ </template>
23
+
24
+ <template name="tmpl_0_pure-view">
25
+ <view style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
26
+ <block wx:for="{{i.cn}}" wx:key="sid">
27
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
28
+ </block>
29
+ </view>
30
+ </template>
31
+
32
+ <template name="tmpl_0_view">
33
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchmove="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
34
+ <block wx:for="{{i.cn}}" wx:key="sid">
35
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
36
+ </block>
37
+ </view>
38
+ </template>
39
+
40
+ <template name="tmpl_0_static-text">
41
+ <text selectable="{{xs.b(i.selectable,false)}}" space="{{i.space}}" decode="{{xs.b(i.decode,false)}}" user-select="{{xs.b(i.userSelect,false)}}" style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
42
+ <block wx:for="{{i.cn}}" wx:key="sid">
43
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
44
+ </block>
45
+ </text>
46
+ </template>
47
+
48
+ <template name="tmpl_0_text">
49
+ <text selectable="{{xs.b(i.selectable,false)}}" space="{{i.space}}" decode="{{xs.b(i.decode,false)}}" user-select="{{xs.b(i.userSelect,false)}}" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
50
+ <block wx:for="{{i.cn}}" wx:key="sid">
51
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
52
+ </block>
53
+ </text>
54
+ </template>
55
+
56
+ <template name="tmpl_0_checkbox">
57
+ <checkbox value="{{i.value}}" disabled="{{i.disabled}}" checked="{{xs.b(i.checked,false)}}" color="{{xs.b(i.color,'#09BB07')}}" name="{{i.name}}" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
58
+ <block wx:for="{{i.cn}}" wx:key="sid">
59
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
60
+ </block>
61
+ </checkbox>
62
+ </template>
63
+
64
+ <template name="tmpl_0_checkbox-group">
65
+ <checkbox-group bindchange="eh" name="{{i.name}}" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
66
+ <block wx:for="{{i.cn}}" wx:key="sid">
67
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
68
+ </block>
69
+ </checkbox-group>
70
+ </template>
71
+
72
+ <template name="tmpl_0_input">
73
+ <template is="{{xs.c(i, 'tmpl_0_')}}" data="{{i:i}}" />
74
+ </template>
75
+
76
+ <template name="tmpl_0_input_focus">
77
+ <input value="{{i.value}}" type="{{xs.b(i.type,'')}}" password="{{xs.b(i.password,false)}}" placeholder="{{i.placeholder}}" placeholder-style="{{i.placeholderStyle}}" placeholder-class="{{xs.b(i.placeholderClass,'input-placeholder')}}" disabled="{{i.disabled}}" maxlength="{{xs.b(i.maxlength,140)}}" cursor-spacing="{{xs.b(i.cursorSpacing,0)}}" focus="{{xs.b(i.focus,false)}}" confirm-type="{{xs.b(i.confirmType,'done')}}" confirm-hold="{{xs.b(i.confirmHold,false)}}" cursor="{{xs.b(i.cursor,i.value.length)}}" selection-start="{{xs.b(i.selectionStart,-1)}}" selection-end="{{xs.b(i.selectionEnd,-1)}}" bindinput="eh" bindfocus="eh" bindblur="eh" bindconfirm="eh" name="{{i.name}}" always-embed="{{xs.b(i.alwaysEmbed,false)}}" adjust-position="{{xs.b(i.adjustPosition,true)}}" hold-keyboard="{{xs.b(i.holdKeyboard,false)}}" safe-password-cert-path="{{i.safePasswordCertPath}}" safe-password-length="{{i.safePasswordLength}}" safe-password-time-stamp="{{i.safePasswordTimeStamp}}" safe-password-nonce="{{i.safePasswordNonce}}" safe-password-salt="{{i.safePasswordSalt}}" safe-password-custom-hash="{{i.safePasswordCustomHash}}" bindkeyboardheightchange="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}"></input>
78
+ </template>
79
+
80
+ <template name="tmpl_0_input_blur">
81
+ <input value="{{i.value}}" type="{{xs.b(i.type,'')}}" password="{{xs.b(i.password,false)}}" placeholder="{{i.placeholder}}" placeholder-style="{{i.placeholderStyle}}" placeholder-class="{{xs.b(i.placeholderClass,'input-placeholder')}}" disabled="{{i.disabled}}" maxlength="{{xs.b(i.maxlength,140)}}" cursor-spacing="{{xs.b(i.cursorSpacing,0)}}" confirm-type="{{xs.b(i.confirmType,'done')}}" confirm-hold="{{xs.b(i.confirmHold,false)}}" cursor="{{xs.b(i.cursor,i.value.length)}}" selection-start="{{xs.b(i.selectionStart,-1)}}" selection-end="{{xs.b(i.selectionEnd,-1)}}" bindinput="eh" bindfocus="eh" bindblur="eh" bindconfirm="eh" name="{{i.name}}" always-embed="{{xs.b(i.alwaysEmbed,false)}}" adjust-position="{{xs.b(i.adjustPosition,true)}}" hold-keyboard="{{xs.b(i.holdKeyboard,false)}}" safe-password-cert-path="{{i.safePasswordCertPath}}" safe-password-length="{{i.safePasswordLength}}" safe-password-time-stamp="{{i.safePasswordTimeStamp}}" safe-password-nonce="{{i.safePasswordNonce}}" safe-password-salt="{{i.safePasswordSalt}}" safe-password-custom-hash="{{i.safePasswordCustomHash}}" bindkeyboardheightchange="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}"></input>
82
+ </template>
83
+
84
+ <template name="tmpl_0_label">
85
+ <label for="{{i.for}}" name="{{i.name}}" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
86
+ <block wx:for="{{i.cn}}" wx:key="sid">
87
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
88
+ </block>
89
+ </label>
90
+ </template>
91
+
92
+ <template name="tmpl_0_scroll-view">
93
+ <scroll-view scroll-x="{{xs.b(i.scrollX,false)}}" scroll-y="{{xs.b(i.scrollY,false)}}" upper-threshold="{{xs.b(i.upperThreshold,50)}}" lower-threshold="{{xs.b(i.lowerThreshold,50)}}" scroll-top="{{i.scrollTop}}" scroll-left="{{i.scrollLeft}}" scroll-into-view="{{i.scrollIntoView}}" scroll-with-animation="{{xs.b(i.scrollWithAnimation,false)}}" enable-back-to-top="{{xs.b(i.enableBackToTop,false)}}" bindscrolltoupper="eh" bindscrolltolower="eh" bindscroll="eh" bindtouchstart="eh" bindtouchmove="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" enable-flex="{{xs.b(i.enableFlex,false)}}" scroll-anchoring="{{xs.b(i.scrollAnchoring,false)}}" refresher-enabled="{{xs.b(i.refresherEnabled,false)}}" refresher-threshold="{{xs.b(i.refresherThreshold,45)}}" refresher-default-style="{{xs.b(i.refresherDefaultStyle,'black')}}" refresher-background="{{xs.b(i.refresherBackground,'#FFF')}}" refresher-triggered="{{xs.b(i.refresherTriggered,false)}}" enhanced="{{xs.b(i.enhanced,false)}}" bounces="{{xs.b(i.bounces,true)}}" show-scrollbar="{{xs.b(i.showScrollbar,true)}}" paging-enabled="{{xs.b(i.pagingEnabled,false)}}" fast-deceleration="{{xs.b(i.fastDeceleration,false)}}" binddragstart="eh" binddragging="eh" binddragend="eh" bindrefresherpulling="eh" bindrefresherrefresh="eh" bindrefresherrestore="eh" bindrefresherabort="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
94
+ <block wx:for="{{i.cn}}" wx:key="sid">
95
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
96
+ </block>
97
+ </scroll-view>
98
+ </template>
99
+
100
+ <template name="tmpl_0_static-image">
101
+ <image src="{{i.src}}" mode="{{xs.b(i.mode,'scaleToFill')}}" lazy-load="{{xs.b(i.lazyLoad,false)}}" webp="{{xs.b(i.webp,false)}}" show-menu-by-longpress="{{xs.b(i.showMenuByLongpress,false)}}" style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
102
+ <block wx:for="{{i.cn}}" wx:key="sid">
103
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
104
+ </block>
105
+ </image>
106
+ </template>
107
+
108
+ <template name="tmpl_0_image">
109
+ <image src="{{i.src}}" mode="{{xs.b(i.mode,'scaleToFill')}}" lazy-load="{{xs.b(i.lazyLoad,false)}}" binderror="eh" bindload="eh" bindtouchstart="eh" bindtouchmove="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" webp="{{xs.b(i.webp,false)}}" show-menu-by-longpress="{{xs.b(i.showMenuByLongpress,false)}}" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
110
+ <block wx:for="{{i.cn}}" wx:key="sid">
111
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
112
+ </block>
113
+ </image>
114
+ </template>
115
+
116
+ <template name="tmpl_0_#text">
117
+ <block>{{i.v}}</block>
118
+ </template>
119
+
120
+ <template name="tmpl_0_container">
121
+ <template is="{{xs.a(0, i.nn, l)}}" data="{{i:i,cid:0,l:xs.f(l,i.nn)}}" />
122
+ </template>
123
+
124
+ <template name="tmpl_1_catch-view">
125
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" catchtouchmove="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
126
+ <block wx:for="{{i.cn}}" wx:key="sid">
127
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
128
+ </block>
129
+ </view>
130
+ </template>
131
+
132
+ <template name="tmpl_1_static-view">
133
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" animation="{{i.animation}}" style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
134
+ <block wx:for="{{i.cn}}" wx:key="sid">
135
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
136
+ </block>
137
+ </view>
138
+ </template>
139
+
140
+ <template name="tmpl_1_pure-view">
141
+ <view style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
142
+ <block wx:for="{{i.cn}}" wx:key="sid">
143
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
144
+ </block>
145
+ </view>
146
+ </template>
147
+
148
+ <template name="tmpl_1_view">
149
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchmove="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
150
+ <block wx:for="{{i.cn}}" wx:key="sid">
151
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
152
+ </block>
153
+ </view>
154
+ </template>
155
+
156
+ <template name="tmpl_1_static-text">
157
+ <text selectable="{{xs.b(i.selectable,false)}}" space="{{i.space}}" decode="{{xs.b(i.decode,false)}}" user-select="{{xs.b(i.userSelect,false)}}" style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
158
+ <block wx:for="{{i.cn}}" wx:key="sid">
159
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
160
+ </block>
161
+ </text>
162
+ </template>
163
+
164
+ <template name="tmpl_1_text">
165
+ <text selectable="{{xs.b(i.selectable,false)}}" space="{{i.space}}" decode="{{xs.b(i.decode,false)}}" user-select="{{xs.b(i.userSelect,false)}}" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
166
+ <block wx:for="{{i.cn}}" wx:key="sid">
167
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
168
+ </block>
169
+ </text>
170
+ </template>
171
+
172
+ <template name="tmpl_1_label">
173
+ <label for="{{i.for}}" name="{{i.name}}" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
174
+ <block wx:for="{{i.cn}}" wx:key="sid">
175
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
176
+ </block>
177
+ </label>
178
+ </template>
179
+
180
+ <template name="tmpl_1_scroll-view">
181
+ <scroll-view scroll-x="{{xs.b(i.scrollX,false)}}" scroll-y="{{xs.b(i.scrollY,false)}}" upper-threshold="{{xs.b(i.upperThreshold,50)}}" lower-threshold="{{xs.b(i.lowerThreshold,50)}}" scroll-top="{{i.scrollTop}}" scroll-left="{{i.scrollLeft}}" scroll-into-view="{{i.scrollIntoView}}" scroll-with-animation="{{xs.b(i.scrollWithAnimation,false)}}" enable-back-to-top="{{xs.b(i.enableBackToTop,false)}}" bindscrolltoupper="eh" bindscrolltolower="eh" bindscroll="eh" bindtouchstart="eh" bindtouchmove="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" enable-flex="{{xs.b(i.enableFlex,false)}}" scroll-anchoring="{{xs.b(i.scrollAnchoring,false)}}" refresher-enabled="{{xs.b(i.refresherEnabled,false)}}" refresher-threshold="{{xs.b(i.refresherThreshold,45)}}" refresher-default-style="{{xs.b(i.refresherDefaultStyle,'black')}}" refresher-background="{{xs.b(i.refresherBackground,'#FFF')}}" refresher-triggered="{{xs.b(i.refresherTriggered,false)}}" enhanced="{{xs.b(i.enhanced,false)}}" bounces="{{xs.b(i.bounces,true)}}" show-scrollbar="{{xs.b(i.showScrollbar,true)}}" paging-enabled="{{xs.b(i.pagingEnabled,false)}}" fast-deceleration="{{xs.b(i.fastDeceleration,false)}}" binddragstart="eh" binddragging="eh" binddragend="eh" bindrefresherpulling="eh" bindrefresherrefresh="eh" bindrefresherrestore="eh" bindrefresherabort="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
182
+ <block wx:for="{{i.cn}}" wx:key="sid">
183
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
184
+ </block>
185
+ </scroll-view>
186
+ </template>
187
+
188
+ <template name="tmpl_1_container">
189
+ <template is="{{xs.a(1, i.nn, l)}}" data="{{i:i,cid:1,l:xs.f(l,i.nn)}}" />
190
+ </template>
191
+
192
+ <template name="tmpl_2_catch-view">
193
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" catchtouchmove="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
194
+ <block wx:for="{{i.cn}}" wx:key="sid">
195
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
196
+ </block>
197
+ </view>
198
+ </template>
199
+
200
+ <template name="tmpl_2_static-view">
201
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" animation="{{i.animation}}" style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
202
+ <block wx:for="{{i.cn}}" wx:key="sid">
203
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
204
+ </block>
205
+ </view>
206
+ </template>
207
+
208
+ <template name="tmpl_2_pure-view">
209
+ <view style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
210
+ <block wx:for="{{i.cn}}" wx:key="sid">
211
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
212
+ </block>
213
+ </view>
214
+ </template>
215
+
216
+ <template name="tmpl_2_view">
217
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchmove="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
218
+ <block wx:for="{{i.cn}}" wx:key="sid">
219
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
220
+ </block>
221
+ </view>
222
+ </template>
223
+
224
+ <template name="tmpl_2_static-text">
225
+ <text selectable="{{xs.b(i.selectable,false)}}" space="{{i.space}}" decode="{{xs.b(i.decode,false)}}" user-select="{{xs.b(i.userSelect,false)}}" style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
226
+ <block wx:for="{{i.cn}}" wx:key="sid">
227
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
228
+ </block>
229
+ </text>
230
+ </template>
231
+
232
+ <template name="tmpl_2_text">
233
+ <text selectable="{{xs.b(i.selectable,false)}}" space="{{i.space}}" decode="{{xs.b(i.decode,false)}}" user-select="{{xs.b(i.userSelect,false)}}" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
234
+ <block wx:for="{{i.cn}}" wx:key="sid">
235
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
236
+ </block>
237
+ </text>
238
+ </template>
239
+
240
+ <template name="tmpl_2_label">
241
+ <label for="{{i.for}}" name="{{i.name}}" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
242
+ <block wx:for="{{i.cn}}" wx:key="sid">
243
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
244
+ </block>
245
+ </label>
246
+ </template>
247
+
248
+ <template name="tmpl_2_scroll-view">
249
+ <scroll-view scroll-x="{{xs.b(i.scrollX,false)}}" scroll-y="{{xs.b(i.scrollY,false)}}" upper-threshold="{{xs.b(i.upperThreshold,50)}}" lower-threshold="{{xs.b(i.lowerThreshold,50)}}" scroll-top="{{i.scrollTop}}" scroll-left="{{i.scrollLeft}}" scroll-into-view="{{i.scrollIntoView}}" scroll-with-animation="{{xs.b(i.scrollWithAnimation,false)}}" enable-back-to-top="{{xs.b(i.enableBackToTop,false)}}" bindscrolltoupper="eh" bindscrolltolower="eh" bindscroll="eh" bindtouchstart="eh" bindtouchmove="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" enable-flex="{{xs.b(i.enableFlex,false)}}" scroll-anchoring="{{xs.b(i.scrollAnchoring,false)}}" refresher-enabled="{{xs.b(i.refresherEnabled,false)}}" refresher-threshold="{{xs.b(i.refresherThreshold,45)}}" refresher-default-style="{{xs.b(i.refresherDefaultStyle,'black')}}" refresher-background="{{xs.b(i.refresherBackground,'#FFF')}}" refresher-triggered="{{xs.b(i.refresherTriggered,false)}}" enhanced="{{xs.b(i.enhanced,false)}}" bounces="{{xs.b(i.bounces,true)}}" show-scrollbar="{{xs.b(i.showScrollbar,true)}}" paging-enabled="{{xs.b(i.pagingEnabled,false)}}" fast-deceleration="{{xs.b(i.fastDeceleration,false)}}" binddragstart="eh" binddragging="eh" binddragend="eh" bindrefresherpulling="eh" bindrefresherrefresh="eh" bindrefresherrestore="eh" bindrefresherabort="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
250
+ <block wx:for="{{i.cn}}" wx:key="sid">
251
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
252
+ </block>
253
+ </scroll-view>
254
+ </template>
255
+
256
+ <template name="tmpl_2_container">
257
+ <template is="{{xs.a(2, i.nn, l)}}" data="{{i:i,cid:2,l:xs.f(l,i.nn)}}" />
258
+ </template>
259
+
260
+ <template name="tmpl_3_catch-view">
261
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" catchtouchmove="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
262
+ <block wx:for="{{i.cn}}" wx:key="sid">
263
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
264
+ </block>
265
+ </view>
266
+ </template>
267
+
268
+ <template name="tmpl_3_static-view">
269
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" animation="{{i.animation}}" style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
270
+ <block wx:for="{{i.cn}}" wx:key="sid">
271
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
272
+ </block>
273
+ </view>
274
+ </template>
275
+
276
+ <template name="tmpl_3_pure-view">
277
+ <view style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
278
+ <block wx:for="{{i.cn}}" wx:key="sid">
279
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
280
+ </block>
281
+ </view>
282
+ </template>
283
+
284
+ <template name="tmpl_3_view">
285
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchmove="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
286
+ <block wx:for="{{i.cn}}" wx:key="sid">
287
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
288
+ </block>
289
+ </view>
290
+ </template>
291
+
292
+ <template name="tmpl_3_static-text">
293
+ <text selectable="{{xs.b(i.selectable,false)}}" space="{{i.space}}" decode="{{xs.b(i.decode,false)}}" user-select="{{xs.b(i.userSelect,false)}}" style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
294
+ <block wx:for="{{i.cn}}" wx:key="sid">
295
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
296
+ </block>
297
+ </text>
298
+ </template>
299
+
300
+ <template name="tmpl_3_text">
301
+ <text selectable="{{xs.b(i.selectable,false)}}" space="{{i.space}}" decode="{{xs.b(i.decode,false)}}" user-select="{{xs.b(i.userSelect,false)}}" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
302
+ <block wx:for="{{i.cn}}" wx:key="sid">
303
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
304
+ </block>
305
+ </text>
306
+ </template>
307
+
308
+ <template name="tmpl_3_label">
309
+ <label for="{{i.for}}" name="{{i.name}}" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
310
+ <block wx:for="{{i.cn}}" wx:key="sid">
311
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
312
+ </block>
313
+ </label>
314
+ </template>
315
+
316
+ <template name="tmpl_3_scroll-view">
317
+ <scroll-view scroll-x="{{xs.b(i.scrollX,false)}}" scroll-y="{{xs.b(i.scrollY,false)}}" upper-threshold="{{xs.b(i.upperThreshold,50)}}" lower-threshold="{{xs.b(i.lowerThreshold,50)}}" scroll-top="{{i.scrollTop}}" scroll-left="{{i.scrollLeft}}" scroll-into-view="{{i.scrollIntoView}}" scroll-with-animation="{{xs.b(i.scrollWithAnimation,false)}}" enable-back-to-top="{{xs.b(i.enableBackToTop,false)}}" bindscrolltoupper="eh" bindscrolltolower="eh" bindscroll="eh" bindtouchstart="eh" bindtouchmove="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" enable-flex="{{xs.b(i.enableFlex,false)}}" scroll-anchoring="{{xs.b(i.scrollAnchoring,false)}}" refresher-enabled="{{xs.b(i.refresherEnabled,false)}}" refresher-threshold="{{xs.b(i.refresherThreshold,45)}}" refresher-default-style="{{xs.b(i.refresherDefaultStyle,'black')}}" refresher-background="{{xs.b(i.refresherBackground,'#FFF')}}" refresher-triggered="{{xs.b(i.refresherTriggered,false)}}" enhanced="{{xs.b(i.enhanced,false)}}" bounces="{{xs.b(i.bounces,true)}}" show-scrollbar="{{xs.b(i.showScrollbar,true)}}" paging-enabled="{{xs.b(i.pagingEnabled,false)}}" fast-deceleration="{{xs.b(i.fastDeceleration,false)}}" binddragstart="eh" binddragging="eh" binddragend="eh" bindrefresherpulling="eh" bindrefresherrefresh="eh" bindrefresherrestore="eh" bindrefresherabort="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
318
+ <block wx:for="{{i.cn}}" wx:key="sid">
319
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
320
+ </block>
321
+ </scroll-view>
322
+ </template>
323
+
324
+ <template name="tmpl_3_container">
325
+ <template is="{{xs.a(3, i.nn, l)}}" data="{{i:i,cid:3,l:xs.f(l,i.nn)}}" />
326
+ </template>
327
+
328
+ <template name="tmpl_4_catch-view">
329
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" catchtouchmove="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
330
+ <block wx:for="{{i.cn}}" wx:key="sid">
331
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
332
+ </block>
333
+ </view>
334
+ </template>
335
+
336
+ <template name="tmpl_4_static-view">
337
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" animation="{{i.animation}}" style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
338
+ <block wx:for="{{i.cn}}" wx:key="sid">
339
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
340
+ </block>
341
+ </view>
342
+ </template>
343
+
344
+ <template name="tmpl_4_pure-view">
345
+ <view style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
346
+ <block wx:for="{{i.cn}}" wx:key="sid">
347
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
348
+ </block>
349
+ </view>
350
+ </template>
351
+
352
+ <template name="tmpl_4_view">
353
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchmove="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
354
+ <block wx:for="{{i.cn}}" wx:key="sid">
355
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
356
+ </block>
357
+ </view>
358
+ </template>
359
+
360
+ <template name="tmpl_4_static-text">
361
+ <text selectable="{{xs.b(i.selectable,false)}}" space="{{i.space}}" decode="{{xs.b(i.decode,false)}}" user-select="{{xs.b(i.userSelect,false)}}" style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
362
+ <block wx:for="{{i.cn}}" wx:key="sid">
363
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
364
+ </block>
365
+ </text>
366
+ </template>
367
+
368
+ <template name="tmpl_4_text">
369
+ <text selectable="{{xs.b(i.selectable,false)}}" space="{{i.space}}" decode="{{xs.b(i.decode,false)}}" user-select="{{xs.b(i.userSelect,false)}}" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
370
+ <block wx:for="{{i.cn}}" wx:key="sid">
371
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
372
+ </block>
373
+ </text>
374
+ </template>
375
+
376
+ <template name="tmpl_4_label">
377
+ <label for="{{i.for}}" name="{{i.name}}" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
378
+ <block wx:for="{{i.cn}}" wx:key="sid">
379
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
380
+ </block>
381
+ </label>
382
+ </template>
383
+
384
+ <template name="tmpl_4_container">
385
+ <template is="{{xs.a(4, i.nn, l)}}" data="{{i:i,cid:4,l:xs.f(l,i.nn)}}" />
386
+ </template>
387
+
388
+ <template name="tmpl_5_catch-view">
389
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" catchtouchmove="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
390
+ <block wx:for="{{i.cn}}" wx:key="sid">
391
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
392
+ </block>
393
+ </view>
394
+ </template>
395
+
396
+ <template name="tmpl_5_static-view">
397
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" animation="{{i.animation}}" style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
398
+ <block wx:for="{{i.cn}}" wx:key="sid">
399
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
400
+ </block>
401
+ </view>
402
+ </template>
403
+
404
+ <template name="tmpl_5_pure-view">
405
+ <view style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
406
+ <block wx:for="{{i.cn}}" wx:key="sid">
407
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
408
+ </block>
409
+ </view>
410
+ </template>
411
+
412
+ <template name="tmpl_5_view">
413
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchmove="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
414
+ <block wx:for="{{i.cn}}" wx:key="sid">
415
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
416
+ </block>
417
+ </view>
418
+ </template>
419
+
420
+ <template name="tmpl_5_static-text">
421
+ <text selectable="{{xs.b(i.selectable,false)}}" space="{{i.space}}" decode="{{xs.b(i.decode,false)}}" user-select="{{xs.b(i.userSelect,false)}}" style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
422
+ <block wx:for="{{i.cn}}" wx:key="sid">
423
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
424
+ </block>
425
+ </text>
426
+ </template>
427
+
428
+ <template name="tmpl_5_text">
429
+ <text selectable="{{xs.b(i.selectable,false)}}" space="{{i.space}}" decode="{{xs.b(i.decode,false)}}" user-select="{{xs.b(i.userSelect,false)}}" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
430
+ <block wx:for="{{i.cn}}" wx:key="sid">
431
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
432
+ </block>
433
+ </text>
434
+ </template>
435
+
436
+ <template name="tmpl_5_label">
437
+ <label for="{{i.for}}" name="{{i.name}}" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
438
+ <block wx:for="{{i.cn}}" wx:key="sid">
439
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
440
+ </block>
441
+ </label>
442
+ </template>
443
+
444
+ <template name="tmpl_5_container">
445
+ <template is="{{xs.a(5, i.nn, l)}}" data="{{i:i,cid:5,l:xs.f(l,i.nn)}}" />
446
+ </template>
447
+
448
+ <template name="tmpl_6_catch-view">
449
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" catchtouchmove="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
450
+ <block wx:for="{{i.cn}}" wx:key="sid">
451
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
452
+ </block>
453
+ </view>
454
+ </template>
455
+
456
+ <template name="tmpl_6_static-view">
457
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" animation="{{i.animation}}" style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
458
+ <block wx:for="{{i.cn}}" wx:key="sid">
459
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
460
+ </block>
461
+ </view>
462
+ </template>
463
+
464
+ <template name="tmpl_6_pure-view">
465
+ <view style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
466
+ <block wx:for="{{i.cn}}" wx:key="sid">
467
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
468
+ </block>
469
+ </view>
470
+ </template>
471
+
472
+ <template name="tmpl_6_view">
473
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchmove="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
474
+ <block wx:for="{{i.cn}}" wx:key="sid">
475
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
476
+ </block>
477
+ </view>
478
+ </template>
479
+
480
+ <template name="tmpl_6_text">
481
+ <text selectable="{{xs.b(i.selectable,false)}}" space="{{i.space}}" decode="{{xs.b(i.decode,false)}}" user-select="{{xs.b(i.userSelect,false)}}" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
482
+ <block wx:for="{{i.cn}}" wx:key="sid">
483
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
484
+ </block>
485
+ </text>
486
+ </template>
487
+
488
+ <template name="tmpl_6_container">
489
+ <template is="{{xs.a(6, i.nn, l)}}" data="{{i:i,cid:6,l:xs.f(l,i.nn)}}" />
490
+ </template>
491
+
492
+ <template name="tmpl_7_catch-view">
493
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" catchtouchmove="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
494
+ <block wx:for="{{i.cn}}" wx:key="sid">
495
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
496
+ </block>
497
+ </view>
498
+ </template>
499
+
500
+ <template name="tmpl_7_static-view">
501
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" animation="{{i.animation}}" style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
502
+ <block wx:for="{{i.cn}}" wx:key="sid">
503
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
504
+ </block>
505
+ </view>
506
+ </template>
507
+
508
+ <template name="tmpl_7_pure-view">
509
+ <view style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
510
+ <block wx:for="{{i.cn}}" wx:key="sid">
511
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
512
+ </block>
513
+ </view>
514
+ </template>
515
+
516
+ <template name="tmpl_7_view">
517
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchmove="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
518
+ <block wx:for="{{i.cn}}" wx:key="sid">
519
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
520
+ </block>
521
+ </view>
522
+ </template>
523
+
524
+ <template name="tmpl_7_text">
525
+ <text selectable="{{xs.b(i.selectable,false)}}" space="{{i.space}}" decode="{{xs.b(i.decode,false)}}" user-select="{{xs.b(i.userSelect,false)}}" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
526
+ <block wx:for="{{i.cn}}" wx:key="sid">
527
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
528
+ </block>
529
+ </text>
530
+ </template>
531
+
532
+ <template name="tmpl_7_container">
533
+ <template is="{{xs.a(7, i.nn, l)}}" data="{{i:i,cid:7,l:xs.f(l,i.nn)}}" />
534
+ </template>
535
+
536
+ <template name="tmpl_8_catch-view">
537
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" catchtouchmove="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
538
+ <block wx:for="{{i.cn}}" wx:key="sid">
539
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
540
+ </block>
541
+ </view>
542
+ </template>
543
+
544
+ <template name="tmpl_8_static-view">
545
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" animation="{{i.animation}}" style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
546
+ <block wx:for="{{i.cn}}" wx:key="sid">
547
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
548
+ </block>
549
+ </view>
550
+ </template>
551
+
552
+ <template name="tmpl_8_pure-view">
553
+ <view style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
554
+ <block wx:for="{{i.cn}}" wx:key="sid">
555
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
556
+ </block>
557
+ </view>
558
+ </template>
559
+
560
+ <template name="tmpl_8_view">
561
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchmove="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
562
+ <block wx:for="{{i.cn}}" wx:key="sid">
563
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
564
+ </block>
565
+ </view>
566
+ </template>
567
+
568
+ <template name="tmpl_8_text">
569
+ <text selectable="{{xs.b(i.selectable,false)}}" space="{{i.space}}" decode="{{xs.b(i.decode,false)}}" user-select="{{xs.b(i.userSelect,false)}}" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
570
+ <block wx:for="{{i.cn}}" wx:key="sid">
571
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
572
+ </block>
573
+ </text>
574
+ </template>
575
+
576
+ <template name="tmpl_8_container">
577
+ <template is="{{xs.a(8, i.nn, l)}}" data="{{i:i,cid:8,l:xs.f(l,i.nn)}}" />
578
+ </template>
579
+
580
+ <template name="tmpl_9_catch-view">
581
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" catchtouchmove="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
582
+ <block wx:for="{{i.cn}}" wx:key="sid">
583
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
584
+ </block>
585
+ </view>
586
+ </template>
587
+
588
+ <template name="tmpl_9_static-view">
589
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" animation="{{i.animation}}" style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
590
+ <block wx:for="{{i.cn}}" wx:key="sid">
591
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
592
+ </block>
593
+ </view>
594
+ </template>
595
+
596
+ <template name="tmpl_9_pure-view">
597
+ <view style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
598
+ <block wx:for="{{i.cn}}" wx:key="sid">
599
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
600
+ </block>
601
+ </view>
602
+ </template>
603
+
604
+ <template name="tmpl_9_view">
605
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchmove="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
606
+ <block wx:for="{{i.cn}}" wx:key="sid">
607
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
608
+ </block>
609
+ </view>
610
+ </template>
611
+
612
+ <template name="tmpl_9_text">
613
+ <text selectable="{{xs.b(i.selectable,false)}}" space="{{i.space}}" decode="{{xs.b(i.decode,false)}}" user-select="{{xs.b(i.userSelect,false)}}" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
614
+ <block wx:for="{{i.cn}}" wx:key="sid">
615
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
616
+ </block>
617
+ </text>
618
+ </template>
619
+
620
+ <template name="tmpl_9_container">
621
+ <template is="{{xs.a(9, i.nn, l)}}" data="{{i:i,cid:9,l:xs.f(l,i.nn)}}" />
622
+ </template>
623
+
624
+ <template name="tmpl_10_catch-view">
625
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" catchtouchmove="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
626
+ <block wx:for="{{i.cn}}" wx:key="sid">
627
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
628
+ </block>
629
+ </view>
630
+ </template>
631
+
632
+ <template name="tmpl_10_static-view">
633
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" animation="{{i.animation}}" style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
634
+ <block wx:for="{{i.cn}}" wx:key="sid">
635
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
636
+ </block>
637
+ </view>
638
+ </template>
639
+
640
+ <template name="tmpl_10_pure-view">
641
+ <view style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
642
+ <block wx:for="{{i.cn}}" wx:key="sid">
643
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
644
+ </block>
645
+ </view>
646
+ </template>
647
+
648
+ <template name="tmpl_10_view">
649
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchmove="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
650
+ <block wx:for="{{i.cn}}" wx:key="sid">
651
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
652
+ </block>
653
+ </view>
654
+ </template>
655
+
656
+ <template name="tmpl_10_text">
657
+ <text selectable="{{xs.b(i.selectable,false)}}" space="{{i.space}}" decode="{{xs.b(i.decode,false)}}" user-select="{{xs.b(i.userSelect,false)}}" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
658
+ <block wx:for="{{i.cn}}" wx:key="sid">
659
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
660
+ </block>
661
+ </text>
662
+ </template>
663
+
664
+ <template name="tmpl_10_container">
665
+ <template is="{{xs.a(10, i.nn, l)}}" data="{{i:i,cid:10,l:xs.f(l,i.nn)}}" />
666
+ </template>
667
+
668
+ <template name="tmpl_11_catch-view">
669
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" catchtouchmove="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
670
+ <block wx:for="{{i.cn}}" wx:key="sid">
671
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
672
+ </block>
673
+ </view>
674
+ </template>
675
+
676
+ <template name="tmpl_11_static-view">
677
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" animation="{{i.animation}}" style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
678
+ <block wx:for="{{i.cn}}" wx:key="sid">
679
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
680
+ </block>
681
+ </view>
682
+ </template>
683
+
684
+ <template name="tmpl_11_pure-view">
685
+ <view style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
686
+ <block wx:for="{{i.cn}}" wx:key="sid">
687
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
688
+ </block>
689
+ </view>
690
+ </template>
691
+
692
+ <template name="tmpl_11_view">
693
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchmove="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
694
+ <block wx:for="{{i.cn}}" wx:key="sid">
695
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
696
+ </block>
697
+ </view>
698
+ </template>
699
+
700
+ <template name="tmpl_11_text">
701
+ <text selectable="{{xs.b(i.selectable,false)}}" space="{{i.space}}" decode="{{xs.b(i.decode,false)}}" user-select="{{xs.b(i.userSelect,false)}}" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
702
+ <block wx:for="{{i.cn}}" wx:key="sid">
703
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
704
+ </block>
705
+ </text>
706
+ </template>
707
+
708
+ <template name="tmpl_11_container">
709
+ <template is="{{xs.a(11, i.nn, l)}}" data="{{i:i,cid:11,l:xs.f(l,i.nn)}}" />
710
+ </template>
711
+
712
+ <template name="tmpl_12_catch-view">
713
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" catchtouchmove="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
714
+ <block wx:for="{{i.cn}}" wx:key="sid">
715
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
716
+ </block>
717
+ </view>
718
+ </template>
719
+
720
+ <template name="tmpl_12_static-view">
721
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" animation="{{i.animation}}" style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
722
+ <block wx:for="{{i.cn}}" wx:key="sid">
723
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
724
+ </block>
725
+ </view>
726
+ </template>
727
+
728
+ <template name="tmpl_12_pure-view">
729
+ <view style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
730
+ <block wx:for="{{i.cn}}" wx:key="sid">
731
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
732
+ </block>
733
+ </view>
734
+ </template>
735
+
736
+ <template name="tmpl_12_view">
737
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchmove="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
738
+ <block wx:for="{{i.cn}}" wx:key="sid">
739
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
740
+ </block>
741
+ </view>
742
+ </template>
743
+
744
+ <template name="tmpl_12_text">
745
+ <text selectable="{{xs.b(i.selectable,false)}}" space="{{i.space}}" decode="{{xs.b(i.decode,false)}}" user-select="{{xs.b(i.userSelect,false)}}" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
746
+ <block wx:for="{{i.cn}}" wx:key="sid">
747
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
748
+ </block>
749
+ </text>
750
+ </template>
751
+
752
+ <template name="tmpl_12_container">
753
+ <template is="{{xs.a(12, i.nn, l)}}" data="{{i:i,cid:12,l:xs.f(l,i.nn)}}" />
754
+ </template>
755
+
756
+ <template name="tmpl_13_catch-view">
757
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" catchtouchmove="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
758
+ <block wx:for="{{i.cn}}" wx:key="sid">
759
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
760
+ </block>
761
+ </view>
762
+ </template>
763
+
764
+ <template name="tmpl_13_static-view">
765
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" animation="{{i.animation}}" style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
766
+ <block wx:for="{{i.cn}}" wx:key="sid">
767
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
768
+ </block>
769
+ </view>
770
+ </template>
771
+
772
+ <template name="tmpl_13_pure-view">
773
+ <view style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
774
+ <block wx:for="{{i.cn}}" wx:key="sid">
775
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
776
+ </block>
777
+ </view>
778
+ </template>
779
+
780
+ <template name="tmpl_13_view">
781
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchmove="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
782
+ <block wx:for="{{i.cn}}" wx:key="sid">
783
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
784
+ </block>
785
+ </view>
786
+ </template>
787
+
788
+ <template name="tmpl_13_text">
789
+ <text selectable="{{xs.b(i.selectable,false)}}" space="{{i.space}}" decode="{{xs.b(i.decode,false)}}" user-select="{{xs.b(i.userSelect,false)}}" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
790
+ <block wx:for="{{i.cn}}" wx:key="sid">
791
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
792
+ </block>
793
+ </text>
794
+ </template>
795
+
796
+ <template name="tmpl_13_container">
797
+ <template is="{{xs.a(13, i.nn, l)}}" data="{{i:i,cid:13,l:xs.f(l,i.nn)}}" />
798
+ </template>
799
+
800
+ <template name="tmpl_14_catch-view">
801
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" catchtouchmove="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
802
+ <block wx:for="{{i.cn}}" wx:key="sid">
803
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
804
+ </block>
805
+ </view>
806
+ </template>
807
+
808
+ <template name="tmpl_14_static-view">
809
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" animation="{{i.animation}}" style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
810
+ <block wx:for="{{i.cn}}" wx:key="sid">
811
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
812
+ </block>
813
+ </view>
814
+ </template>
815
+
816
+ <template name="tmpl_14_pure-view">
817
+ <view style="{{i.st}}" class="{{i.cl}}" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
818
+ <block wx:for="{{i.cn}}" wx:key="sid">
819
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
820
+ </block>
821
+ </view>
822
+ </template>
823
+
824
+ <template name="tmpl_14_view">
825
+ <view hover-class="{{xs.b(i.hoverClass,'none')}}" hover-stop-propagation="{{xs.b(i.hoverStopPropagation,false)}}" hover-start-time="{{xs.b(i.hoverStartTime,50)}}" hover-stay-time="{{xs.b(i.hoverStayTime,400)}}" bindtouchstart="eh" bindtouchmove="eh" bindtouchend="eh" bindtouchcancel="eh" bindlongpress="eh" animation="{{i.animation}}" bindanimationstart="eh" bindanimationiteration="eh" bindanimationend="eh" bindtransitionend="eh" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
826
+ <block wx:for="{{i.cn}}" wx:key="sid">
827
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
828
+ </block>
829
+ </view>
830
+ </template>
831
+
832
+ <template name="tmpl_14_text">
833
+ <text selectable="{{xs.b(i.selectable,false)}}" space="{{i.space}}" decode="{{xs.b(i.decode,false)}}" user-select="{{xs.b(i.userSelect,false)}}" style="{{i.st}}" class="{{i.cl}}" bindtap="eh" id="{{i.uid||i.sid}}" data-sid="{{i.sid}}">
834
+ <block wx:for="{{i.cn}}" wx:key="sid">
835
+ <template is="{{xs.e(cid+1)}}" data="{{i:item,l:l}}" />
836
+ </block>
837
+ </text>
838
+ </template>
839
+
840
+ <template name="tmpl_14_container">
841
+ <template is="{{xs.a(14, i.nn, l)}}" data="{{i:i,cid:14,l:xs.f(l,i.nn)}}" />
842
+ </template>
843
+
844
+ <template name="tmpl_15_container">
845
+ <block wx:if="{{i.nn === '#text'}}">
846
+ <template is="tmpl_0_#text" data="{{i:i}}" />
847
+ </block>
848
+ <block wx:else>
849
+ <comp i="{{i}}" l="{{l}}" />
850
+ </block>
851
+ </template>