首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

uniapp学习-基础学习模板

前端 808.73KB 32 需要积分: 1
立即下载

资源介绍:

uniapp学习-基础学习模板
## List 列表 > **组件名:uni-list** > 代码块: `uList`、`uListItem` > 关联组件:`uni-list-item`、`uni-badge`、`uni-icons`、`uni-list-chat`、`uni-list-ad` List 列表组件,包含基本列表样式、可扩展插槽机制、长列表性能优化、多端兼容。 在vue页面里,它默认使用页面级滚动。在app-nvue页面里,它默认使用原生list组件滚动。这样的长列表,在滚动出屏幕外后,系统会回收不可见区域的渲染内存资源,不会造成滚动越长手机越卡的问题。 uni-list组件是父容器,里面的核心是uni-list-item子组件,它代表列表中的一个可重复行,子组件可以无限循环。 uni-list-item有很多风格,uni-list-item组件通过内置的属性,满足一些常用的场景。当内置属性不满足需求时,可以通过扩展插槽来自定义列表内容。 内置属性可以覆盖的场景包括:导航列表、设置列表、小图标列表、通信录列表、聊天记录列表。 涉及很多大图或丰富内容的列表,比如类今日头条的新闻列表、类淘宝的电商列表,需要通过扩展插槽实现。 下文均有样例给出。 uni-list不包含下拉刷新和上拉翻页。上拉翻页另见组件:[uni-load-more](https://ext.dcloud.net.cn/plugin?id=29) ### 安装方式 本组件符合[easycom](https://uniapp.dcloud.io/collocation/pages?id=easycom)规范,`HBuilderX 2.5.5`起,只需将本组件导入项目,在页面`template`中即可直接使用,无需在页面中`import`和注册`components`。 如需通过`npm`方式使用`uni-ui`组件,另见文档:[https://ext.dcloud.net.cn/plugin?id=55](https://ext.dcloud.net.cn/plugin?id=55) > **注意事项** > 为了避免错误使用,给大家带来不好的开发体验,请在使用组件前仔细阅读下面的注意事项,可以帮你避免一些错误。 > - 组件需要依赖 `sass` 插件 ,请自行手动安装 > - 组件内部依赖 `'uni-icons'` 、`uni-badge` 组件 > - `uni-list` 和 `uni-list-item` 需要配套使用,暂不支持单独使用 `uni-list-item` > - 只有开启点击反馈后,会有点击选中效果 > - 使用插槽时,可以完全自定义内容 > - note 、rightText 属性暂时没做限制,不支持文字溢出隐藏,使用时应该控制长度显示或通过默认插槽自行扩展 > - 支付宝小程序平台需要在支付宝小程序开发者工具里开启 component2 编译模式,开启方式: 详情 --> 项目配置 --> 启用 component2 编译 > - 如果需要修改 `switch`、`badge` 样式,请使用插槽自定义 > - 在 `HBuilderX` 低版本中,可能会出现组件显示 `undefined` 的问题,请升级最新的 `HBuilderX` 或者 `cli` > - 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 ### 基本用法 - 设置 `title` 属性,可以显示列表标题 - 设置 `disabled` 属性,可以禁用当前项 ```html ``` ### 多行内容显示 - 设置 `note` 属性 ,可以在第二行显示描述文本信息 ```html ``` ### 右侧显示角标、switch - 设置 `show-badge` 属性 ,可以显示角标内容 - 设置 `show-switch` 属性,可以显示 switch 开关 ```html ``` ### 左侧显示略缩图、图标 - 设置 `thumb` 属性 ,可以在列表左侧显示略缩图 - 设置 `show-extra-icon` 属性,并指定 `extra-icon` 可以在左侧显示图标 ```html ``` ### 开启点击反馈和右侧箭头 - 设置 `clickable` 为 `true` ,则表示这是一个可点击的列表,会默认给一个点击效果,并可以监听 `click` 事件 - 设置 `link` 属性,会自动开启点击反馈,并给列表右侧添加一个箭头 - 设置 `to` 属性,可以跳转页面,`link` 的值表示跳转方式,如果不指定,默认为 `navigateTo` ```html ``` ### 聊天列表示例 - 设置 `clickable` 为 `true` ,则表示这是一个可点击的列表,会默认给一个点击效果,并可以监听 `click` 事件 - 设置 `link` 属性,会自动开启点击反馈,`link` 的值表示跳转方式,如果不指定,默认为 `navigateTo` - 设置 `to` 属性,可以跳转页面 - `time` 属性,通常会设置成时间显示,但是这个属性不仅仅可以设置时间,你可以传入任何文本,注意文本长度可能会影响显示 - `avatar` 和 `avatarList` 属性同时只会有一个生效,同时设置的话,`avatarList` 属性的长度大于1 ,`avatar` 属性将失效 - 可以通过默认插槽自定义列表右侧内容 ```html 刚刚 ``` ```javascript export default { components: {}, data() { return { avatarList: [{ url: 'https://vkceyugu.cdn.bspapp.com/VKCEYUGU-dc-site/460d46d0-4fcc-11eb-8ff1-d5dcf8779628.png' },

资源文件列表:

helloUni.zip 大约有629个文件
  1. helloUni/
  2. helloUni/.hbuilderx/
  3. helloUni/.hbuilderx/launch.json 510B
  4. helloUni/App.vue 412B
  5. helloUni/compunents/
  6. helloUni/compunents/test.vue 179B
  7. helloUni/index.html 672B
  8. helloUni/main.js 352B
  9. helloUni/manifest.json 2.65KB
  10. helloUni/pages/
  11. helloUni/pages.json 2.88KB
  12. helloUni/pages/contact/
  13. helloUni/pages/contact/contact.vue 95B
  14. helloUni/pages/detail/
  15. helloUni/pages/detail/detail.vue 1.93KB
  16. helloUni/pages/home/
  17. helloUni/pages/home/home.vue 165B
  18. helloUni/pages/index/
  19. helloUni/pages/index/index.vue 1021B
  20. helloUni/pages/list/
  21. helloUni/pages/list/list.vue 1.89KB
  22. helloUni/pages/massage/
  23. helloUni/pages/massage/massage.vue 1.51KB
  24. helloUni/pages/navigator/
  25. helloUni/pages/navigator/navigator.vue 852B
  26. helloUni/pages/uni-style/
  27. helloUni/pages/uni-style/a.css 178B
  28. helloUni/pages/uni-style/uni-style.vue 325B
  29. helloUni/static/
  30. helloUni/static/fonts/
  31. helloUni/static/fonts/iconfont.css 2.09KB
  32. helloUni/static/fonts/iconfont.eot 2.09KB
  33. helloUni/static/fonts/iconfont.svg 2.56KB
  34. helloUni/static/fonts/iconfont.ttf 1.93KB
  35. helloUni/static/fonts/iconfont.woff 1.33KB
  36. helloUni/static/fonts/iconfont.woff2 956B
  37. helloUni/static/logo.png 3.93KB
  38. helloUni/static/tabs/
  39. helloUni/static/tabs/contact-active.png 2.12KB
  40. helloUni/static/tabs/contact.png 2.04KB
  41. helloUni/static/tabs/home-active.png 1.47KB
  42. helloUni/static/tabs/home.png 1.67KB
  43. helloUni/static/tabs/message-active.png 1.74KB
  44. helloUni/static/tabs/message.png 1.99KB
  45. helloUni/uni.promisify.adaptor.js 309B
  46. helloUni/uni.scss 2.24KB
  47. helloUni/uni_modules/
  48. helloUni/uni_modules/uni-badge/
  49. helloUni/uni_modules/uni-badge/changelog.md 1.87KB
  50. helloUni/uni_modules/uni-badge/components/
  51. helloUni/uni_modules/uni-badge/components/uni-badge/
  52. helloUni/uni_modules/uni-badge/components/uni-badge/uni-badge.vue 5.61KB
  53. helloUni/uni_modules/uni-badge/package.json 1.74KB
  54. helloUni/uni_modules/uni-badge/readme.md 406B
  55. helloUni/uni_modules/uni-calendar/
  56. helloUni/uni_modules/uni-calendar/changelog.md 1.15KB
  57. helloUni/uni_modules/uni-calendar/components/
  58. helloUni/uni_modules/uni-calendar/components/uni-calendar/
  59. helloUni/uni_modules/uni-calendar/components/uni-calendar/calendar.js 24.27KB
  60. helloUni/uni_modules/uni-calendar/components/uni-calendar/i18n/
  61. helloUni/uni_modules/uni-calendar/components/uni-calendar/i18n/en.json 302B
  62. helloUni/uni_modules/uni-calendar/components/uni-calendar/i18n/index.js 169B
  63. helloUni/uni_modules/uni-calendar/components/uni-calendar/i18n/zh-Hans.json 307B
  64. helloUni/uni_modules/uni-calendar/components/uni-calendar/i18n/zh-Hant.json 301B
  65. helloUni/uni_modules/uni-calendar/components/uni-calendar/uni-calendar-item.vue 5.5KB
  66. helloUni/uni_modules/uni-calendar/components/uni-calendar/uni-calendar.vue 13.45KB
  67. helloUni/uni_modules/uni-calendar/components/uni-calendar/util.js 9.07KB
  68. helloUni/uni_modules/uni-calendar/package.json 1.63KB
  69. helloUni/uni_modules/uni-calendar/readme.md 3.04KB
  70. helloUni/uni_modules/uni-card/
  71. helloUni/uni_modules/uni-card/changelog.md 1.29KB
  72. helloUni/uni_modules/uni-card/components/
  73. helloUni/uni_modules/uni-card/components/uni-card/
  74. helloUni/uni_modules/uni-card/components/uni-card/uni-card.vue 6.46KB
  75. helloUni/uni_modules/uni-card/package.json 1.7KB
  76. helloUni/uni_modules/uni-card/readme.md 289B
  77. helloUni/uni_modules/uni-collapse/
  78. helloUni/uni_modules/uni-collapse/changelog.md 1.74KB
  79. helloUni/uni_modules/uni-collapse/components/
  80. helloUni/uni_modules/uni-collapse/components/uni-collapse/
  81. helloUni/uni_modules/uni-collapse/components/uni-collapse-item/
  82. helloUni/uni_modules/uni-collapse/components/uni-collapse-item/uni-collapse-item.vue 9.18KB
  83. helloUni/uni_modules/uni-collapse/components/uni-collapse/uni-collapse.vue 3.42KB
  84. helloUni/uni_modules/uni-collapse/package.json 1.7KB
  85. helloUni/uni_modules/uni-collapse/readme.md 526B
  86. helloUni/uni_modules/uni-combox/
  87. helloUni/uni_modules/uni-combox/changelog.md 823B
  88. helloUni/uni_modules/uni-combox/components/
  89. helloUni/uni_modules/uni-combox/components/uni-combox/
  90. helloUni/uni_modules/uni-combox/components/uni-combox/uni-combox.vue 5.94KB
  91. helloUni/uni_modules/uni-combox/package.json 1.8KB
  92. helloUni/uni_modules/uni-combox/readme.md 305B
  93. helloUni/uni_modules/uni-countdown/
  94. helloUni/uni_modules/uni-countdown/changelog.md 1.17KB
  95. helloUni/uni_modules/uni-countdown/components/
  96. helloUni/uni_modules/uni-countdown/components/uni-countdown/
  97. helloUni/uni_modules/uni-countdown/components/uni-countdown/i18n/
  98. helloUni/uni_modules/uni-countdown/components/uni-countdown/i18n/en.json 112B
  99. helloUni/uni_modules/uni-countdown/components/uni-countdown/i18n/index.js 169B
  100. helloUni/uni_modules/uni-countdown/components/uni-countdown/i18n/zh-Hans.json 118B
  101. helloUni/uni_modules/uni-countdown/components/uni-countdown/i18n/zh-Hant.json 118B
  102. helloUni/uni_modules/uni-countdown/components/uni-countdown/uni-countdown.vue 6.59KB
  103. helloUni/uni_modules/uni-countdown/package.json 1.63KB
  104. helloUni/uni_modules/uni-countdown/readme.md 306B
  105. helloUni/uni_modules/uni-data-checkbox/
  106. helloUni/uni_modules/uni-data-checkbox/changelog.md 2.07KB
  107. helloUni/uni_modules/uni-data-checkbox/components/
  108. helloUni/uni_modules/uni-data-checkbox/components/uni-data-checkbox/
  109. helloUni/uni_modules/uni-data-checkbox/components/uni-data-checkbox/uni-data-checkbox.vue 20.79KB
  110. helloUni/uni_modules/uni-data-checkbox/package.json 1.7KB
  111. helloUni/uni_modules/uni-data-checkbox/readme.md 1.25KB
  112. helloUni/uni_modules/uni-data-picker/
  113. helloUni/uni_modules/uni-data-picker/changelog.md 3.5KB
  114. helloUni/uni_modules/uni-data-picker/components/
  115. helloUni/uni_modules/uni-data-picker/components/uni-data-picker/
  116. helloUni/uni_modules/uni-data-picker/components/uni-data-pickerview/
  117. helloUni/uni_modules/uni-data-picker/components/uni-data-pickerview/loading.uts 6.07KB
  118. helloUni/uni_modules/uni-data-picker/components/uni-data-pickerview/uni-data-picker.js 14.5KB
  119. helloUni/uni_modules/uni-data-picker/components/uni-data-pickerview/uni-data-picker.uts 19.03KB
  120. helloUni/uni_modules/uni-data-picker/components/uni-data-pickerview/uni-data-pickerview.css 1.16KB
  121. helloUni/uni_modules/uni-data-picker/components/uni-data-pickerview/uni-data-pickerview.uvue 2.46KB
  122. helloUni/uni_modules/uni-data-picker/components/uni-data-pickerview/uni-data-pickerview.vue 7.85KB
  123. helloUni/uni_modules/uni-data-picker/components/uni-data-picker/keypress.js 1.13KB
  124. helloUni/uni_modules/uni-data-picker/components/uni-data-picker/uni-data-picker.uvue 9.83KB
  125. helloUni/uni_modules/uni-data-picker/components/uni-data-picker/uni-data-picker.vue 14.13KB
  126. helloUni/uni_modules/uni-data-picker/package.json 1.94KB
  127. helloUni/uni_modules/uni-data-picker/readme.md 1.45KB
  128. helloUni/uni_modules/uni-data-select/
  129. helloUni/uni_modules/uni-data-select/changelog.md 1.49KB
  130. helloUni/uni_modules/uni-data-select/components/
  131. helloUni/uni_modules/uni-data-select/components/uni-data-select/
  132. helloUni/uni_modules/uni-data-select/components/uni-data-select/uni-data-select.vue 12.63KB
  133. helloUni/uni_modules/uni-data-select/package.json 1.82KB
  134. helloUni/uni_modules/uni-data-select/readme.md 362B
  135. helloUni/uni_modules/uni-dateformat/
  136. helloUni/uni_modules/uni-dateformat/changelog.md 580B
  137. helloUni/uni_modules/uni-dateformat/components/
  138. helloUni/uni_modules/uni-dateformat/components/uni-dateformat/
  139. helloUni/uni_modules/uni-dateformat/components/uni-dateformat/date-format.js 3.95KB
  140. helloUni/uni_modules/uni-dateformat/components/uni-dateformat/uni-dateformat.vue 1.74KB
  141. helloUni/uni_modules/uni-dateformat/package.json 1.86KB
  142. helloUni/uni_modules/uni-dateformat/readme.md 333B
  143. helloUni/uni_modules/uni-datetime-picker/
  144. helloUni/uni_modules/uni-datetime-picker/changelog.md 8.63KB
  145. helloUni/uni_modules/uni-datetime-picker/components/
  146. helloUni/uni_modules/uni-datetime-picker/components/uni-datetime-picker/
  147. helloUni/uni_modules/uni-datetime-picker/components/uni-datetime-picker/calendar-item.vue 4.19KB
  148. helloUni/uni_modules/uni-datetime-picker/components/uni-datetime-picker/calendar.vue 22.51KB
  149. helloUni/uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/
  150. helloUni/uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/en.json 785B
  151. helloUni/uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/index.js 169B
  152. helloUni/uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/zh-Hans.json 783B
  153. helloUni/uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/zh-Hant.json 803B
  154. helloUni/uni_modules/uni-datetime-picker/components/uni-datetime-picker/time-picker.vue 23.26KB
  155. helloUni/uni_modules/uni-datetime-picker/components/uni-datetime-picker/uni-datetime-picker.vue 28.1KB
  156. helloUni/uni_modules/uni-datetime-picker/components/uni-datetime-picker/util.js 10.23KB
  157. helloUni/uni_modules/uni-datetime-picker/package.json 1.79KB
  158. helloUni/uni_modules/uni-datetime-picker/readme.md 1.21KB
  159. helloUni/uni_modules/uni-drawer/
  160. helloUni/uni_modules/uni-drawer/changelog.md 728B
  161. helloUni/uni_modules/uni-drawer/components/
  162. helloUni/uni_modules/uni-drawer/components/uni-drawer/
  163. helloUni/uni_modules/uni-drawer/components/uni-drawer/keypress.js 1.14KB
  164. helloUni/uni_modules/uni-drawer/components/uni-drawer/uni-drawer.vue 4.05KB
  165. helloUni/uni_modules/uni-drawer/package.json 1.79KB
  166. helloUni/uni_modules/uni-drawer/readme.md 294B
  167. helloUni/uni_modules/uni-easyinput/
  168. helloUni/uni_modules/uni-easyinput/changelog.md 3.16KB
  169. helloUni/uni_modules/uni-easyinput/components/
  170. helloUni/uni_modules/uni-easyinput/components/uni-easyinput/
  171. helloUni/uni_modules/uni-easyinput/components/uni-easyinput/common.js 1.27KB
  172. helloUni/uni_modules/uni-easyinput/components/uni-easyinput/uni-easyinput.vue 17.66KB
  173. helloUni/uni_modules/uni-easyinput/package.json 1.73KB
  174. helloUni/uni_modules/uni-easyinput/readme.md 517B
  175. helloUni/uni_modules/uni-fab/
  176. helloUni/uni_modules/uni-fab/changelog.md 1.29KB
  177. helloUni/uni_modules/uni-fab/components/
  178. helloUni/uni_modules/uni-fab/components/uni-fab/
  179. helloUni/uni_modules/uni-fab/components/uni-fab/uni-fab.vue 11.38KB
  180. helloUni/uni_modules/uni-fab/package.json 1.69KB
  181. helloUni/uni_modules/uni-fab/readme.md 305B
  182. helloUni/uni_modules/uni-fav/
  183. helloUni/uni_modules/uni-fav/changelog.md 955B
  184. helloUni/uni_modules/uni-fav/components/
  185. helloUni/uni_modules/uni-fav/components/uni-fav/
  186. helloUni/uni_modules/uni-fav/components/uni-fav/i18n/
  187. helloUni/uni_modules/uni-fav/components/uni-fav/i18n/en.json 72B
  188. helloUni/uni_modules/uni-fav/components/uni-fav/i18n/index.js 169B
  189. helloUni/uni_modules/uni-fav/components/uni-fav/i18n/zh-Hans.json 71B
  190. helloUni/uni_modules/uni-fav/components/uni-fav/i18n/zh-Hant.json 71B
  191. helloUni/uni_modules/uni-fav/components/uni-fav/uni-fav.vue 3.91KB
  192. helloUni/uni_modules/uni-fav/package.json 1.7KB
  193. helloUni/uni_modules/uni-fav/readme.md 333B
  194. helloUni/uni_modules/uni-file-picker/
  195. helloUni/uni_modules/uni-file-picker/changelog.md 3.47KB
  196. helloUni/uni_modules/uni-file-picker/components/
  197. helloUni/uni_modules/uni-file-picker/components/uni-file-picker/
  198. helloUni/uni_modules/uni-file-picker/components/uni-file-picker/choose-and-upload-file.js 6.16KB
  199. helloUni/uni_modules/uni-file-picker/components/uni-file-picker/uni-file-picker.vue 17.12KB
  200. helloUni/uni_modules/uni-file-picker/components/uni-file-picker/upload-file.vue 6.85KB
  201. helloUni/uni_modules/uni-file-picker/components/uni-file-picker/upload-image.vue 6.17KB
  202. helloUni/uni_modules/uni-file-picker/components/uni-file-picker/utils.js 2.38KB
  203. helloUni/uni_modules/uni-file-picker/package.json 1.81KB
  204. helloUni/uni_modules/uni-file-picker/readme.md 423B
  205. helloUni/uni_modules/uni-forms/
  206. helloUni/uni_modules/uni-forms/changelog.md 4.62KB
  207. helloUni/uni_modules/uni-forms/components/
  208. helloUni/uni_modules/uni-forms/components/uni-forms/
  209. helloUni/uni_modules/uni-forms/components/uni-forms-item/
  210. helloUni/uni_modules/uni-forms/components/uni-forms-item/uni-forms-item.vue 15.5KB
  211. helloUni/uni_modules/uni-forms/components/uni-forms/uni-forms.vue 10.83KB
  212. helloUni/uni_modules/uni-forms/components/uni-forms/utils.js 7.8KB
  213. helloUni/uni_modules/uni-forms/components/uni-forms/validate.js 12KB
  214. helloUni/uni_modules/uni-forms/package.json 1.77KB
  215. helloUni/uni_modules/uni-forms/readme.md 1.34KB
  216. helloUni/uni_modules/uni-goods-nav/
  217. helloUni/uni_modules/uni-goods-nav/changelog.md 881B
  218. helloUni/uni_modules/uni-goods-nav/components/
  219. helloUni/uni_modules/uni-goods-nav/components/uni-goods-nav/
  220. helloUni/uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/
  221. helloUni/uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/en.json 190B
  222. helloUni/uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/index.js 170B
  223. helloUni/uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/zh-Hans.json 206B
  224. helloUni/uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/zh-Hant.json 206B
  225. helloUni/uni_modules/uni-goods-nav/components/uni-goods-nav/uni-goods-nav.vue 5.16KB
  226. helloUni/uni_modules/uni-goods-nav/package.json 1.76KB
  227. helloUni/uni_modules/uni-goods-nav/readme.md 331B
  228. helloUni/uni_modules/uni-grid/
  229. helloUni/uni_modules/uni-grid/changelog.md 728B
  230. helloUni/uni_modules/uni-grid/components/
  231. helloUni/uni_modules/uni-grid/components/uni-grid/
  232. helloUni/uni_modules/uni-grid/components/uni-grid-item/
  233. helloUni/uni_modules/uni-grid/components/uni-grid-item/uni-grid-item.vue 2.85KB
  234. helloUni/uni_modules/uni-grid/components/uni-grid/uni-grid.vue 2.93KB
  235. helloUni/uni_modules/uni-grid/package.json 1.8KB
  236. helloUni/uni_modules/uni-grid/readme.md 281B
  237. helloUni/uni_modules/uni-group/
  238. helloUni/uni_modules/uni-group/changelog.md 805B
  239. helloUni/uni_modules/uni-group/components/
  240. helloUni/uni_modules/uni-group/components/uni-group/
  241. helloUni/uni_modules/uni-group/components/uni-group/uni-group.vue 2.57KB
  242. helloUni/uni_modules/uni-group/package.json 1.72KB
  243. helloUni/uni_modules/uni-group/readme.md 349B
  244. helloUni/uni_modules/uni-icons/
  245. helloUni/uni_modules/uni-icons/changelog.md 1.73KB
  246. helloUni/uni_modules/uni-icons/components/
  247. helloUni/uni_modules/uni-icons/components/uni-icons/
  248. helloUni/uni_modules/uni-icons/components/uni-icons/uni-icons.uvue 2.2KB
  249. helloUni/uni_modules/uni-icons/components/uni-icons/uni-icons.vue 2.35KB
  250. helloUni/uni_modules/uni-icons/components/uni-icons/uniicons.css 7.96KB
  251. helloUni/uni_modules/uni-icons/components/uni-icons/uniicons.ttf 34.98KB
  252. helloUni/uni_modules/uni-icons/components/uni-icons/uniicons_file.ts 10.42KB
  253. helloUni/uni_modules/uni-icons/components/uni-icons/uniicons_file_vue.js 10.17KB
  254. helloUni/uni_modules/uni-icons/package.json 1.81KB
  255. helloUni/uni_modules/uni-icons/readme.md 297B
  256. helloUni/uni_modules/uni-indexed-list/
  257. helloUni/uni_modules/uni-indexed-list/changelog.md 878B
  258. helloUni/uni_modules/uni-indexed-list/components/
  259. helloUni/uni_modules/uni-indexed-list/components/uni-indexed-list/
  260. helloUni/uni_modules/uni-indexed-list/components/uni-indexed-list/uni-indexed-list-item.vue 3.21KB
  261. helloUni/uni_modules/uni-indexed-list/components/uni-indexed-list/uni-indexed-list.vue 8.81KB
  262. helloUni/uni_modules/uni-indexed-list/package.json 1.89KB
  263. helloUni/uni_modules/uni-indexed-list/readme.md 330B
  264. helloUni/uni_modules/uni-link/
  265. helloUni/uni_modules/uni-link/changelog.md 718B
  266. helloUni/uni_modules/uni-link/components/
  267. helloUni/uni_modules/uni-link/components/uni-link/
  268. helloUni/uni_modules/uni-link/components/uni-link/uni-link.vue 3.11KB
  269. helloUni/uni_modules/uni-link/package.json 1.84KB
  270. helloUni/uni_modules/uni-link/readme.md 408B
  271. helloUni/uni_modules/uni-list/
  272. helloUni/uni_modules/uni-list/changelog.md 2.52KB
  273. helloUni/uni_modules/uni-list/components/
  274. helloUni/uni_modules/uni-list/components/uni-list/
  275. helloUni/uni_modules/uni-list/components/uni-list-ad/
  276. helloUni/uni_modules/uni-list/components/uni-list-ad/uni-list-ad.vue 2.18KB
  277. helloUni/uni_modules/uni-list/components/uni-list-chat/
  278. helloUni/uni_modules/uni-list/components/uni-list-chat/uni-list-chat.scss 1.49KB
  279. helloUni/uni_modules/uni-list/components/uni-list-chat/uni-list-chat.vue 13.62KB
  280. helloUni/uni_modules/uni-list/components/uni-list-item/
  281. helloUni/uni_modules/uni-list/components/uni-list-item/uni-list-item.vue 12.86KB
  282. helloUni/uni_modules/uni-list/components/uni-list/uni-list.vue 2.45KB
  283. helloUni/uni_modules/uni-list/components/uni-list/uni-refresh.vue 1.52KB
  284. helloUni/uni_modules/uni-list/components/uni-list/uni-refresh.wxs 2.14KB
  285. helloUni/uni_modules/uni-list/package.json 1.68KB
  286. helloUni/uni_modules/uni-list/readme.md 15.22KB
  287. helloUni/uni_modules/uni-load-more/
  288. helloUni/uni_modules/uni-load-more/changelog.md 975B
  289. helloUni/uni_modules/uni-load-more/components/
  290. helloUni/uni_modules/uni-load-more/components/uni-load-more/
  291. helloUni/uni_modules/uni-load-more/components/uni-load-more/i18n/
  292. helloUni/uni_modules/uni-load-more/components/uni-load-more/i18n/en.json 153B
  293. helloUni/uni_modules/uni-load-more/components/uni-load-more/i18n/index.js 169B
  294. helloUni/uni_modules/uni-load-more/components/uni-load-more/i18n/zh-Hans.json 165B
  295. helloUni/uni_modules/uni-load-more/components/uni-load-more/i18n/zh-Hant.json 165B
  296. helloUni/uni_modules/uni-load-more/components/uni-load-more/uni-load-more.vue 14.82KB
  297. helloUni/uni_modules/uni-load-more/package.json 1.72KB
  298. helloUni/uni_modules/uni-load-more/readme.md 370B
  299. helloUni/uni_modules/uni-nav-bar/
  300. helloUni/uni_modules/uni-nav-bar/changelog.md 2.14KB
  301. helloUni/uni_modules/uni-nav-bar/components/
  302. helloUni/uni_modules/uni-nav-bar/components/uni-nav-bar/
  303. helloUni/uni_modules/uni-nav-bar/components/uni-nav-bar/uni-nav-bar.vue 8.36KB
  304. helloUni/uni_modules/uni-nav-bar/components/uni-nav-bar/uni-status-bar.vue 428B
  305. helloUni/uni_modules/uni-nav-bar/package.json 1.7KB
  306. helloUni/uni_modules/uni-nav-bar/readme.md 329B
  307. helloUni/uni_modules/uni-notice-bar/
  308. helloUni/uni_modules/uni-notice-bar/changelog.md 1003B
  309. helloUni/uni_modules/uni-notice-bar/components/
  310. helloUni/uni_modules/uni-notice-bar/components/uni-notice-bar/
  311. helloUni/uni_modules/uni-notice-bar/components/uni-notice-bar/uni-notice-bar.vue 10.9KB
  312. helloUni/uni_modules/uni-notice-bar/package.json 1.72KB
  313. helloUni/uni_modules/uni-notice-bar/readme.md 313B
  314. helloUni/uni_modules/uni-number-box/
  315. helloUni/uni_modules/uni-number-box/changelog.md 1.6KB
  316. helloUni/uni_modules/uni-number-box/components/
  317. helloUni/uni_modules/uni-number-box/components/uni-number-box/
  318. helloUni/uni_modules/uni-number-box/components/uni-number-box/uni-number-box.vue 5.46KB
  319. helloUni/uni_modules/uni-number-box/package.json 1.74KB
  320. helloUni/uni_modules/uni-number-box/readme.md 336B
  321. helloUni/uni_modules/uni-pagination/
  322. helloUni/uni_modules/uni-pagination/changelog.md 1.26KB
  323. helloUni/uni_modules/uni-pagination/components/
  324. helloUni/uni_modules/uni-pagination/components/uni-pagination/
  325. helloUni/uni_modules/uni-pagination/components/uni-pagination/i18n/
  326. helloUni/uni_modules/uni-pagination/components/uni-pagination/i18n/en.json 125B
  327. helloUni/uni_modules/uni-pagination/components/uni-pagination/i18n/es.json 138B
  328. helloUni/uni_modules/uni-pagination/components/uni-pagination/i18n/fr.json 141B
  329. helloUni/uni_modules/uni-pagination/components/uni-pagination/i18n/index.js 237B
  330. helloUni/uni_modules/uni-pagination/components/uni-pagination/i18n/zh-Hans.json 132B
  331. helloUni/uni_modules/uni-pagination/components/uni-pagination/i18n/zh-Hant.json 132B
  332. helloUni/uni_modules/uni-pagination/components/uni-pagination/uni-pagination.vue 11.42KB
  333. helloUni/uni_modules/uni-pagination/package.json 1.76KB
  334. helloUni/uni_modules/uni-pagination/readme.md 360B
  335. helloUni/uni_modules/uni-popup/
  336. helloUni/uni_modules/uni-popup/changelog.md 3.73KB
  337. helloUni/uni_modules/uni-popup/components/
  338. helloUni/uni_modules/uni-popup/components/uni-popup/
  339. helloUni/uni_modules/uni-popup/components/uni-popup-dialog/
  340. helloUni/uni_modules/uni-popup/components/uni-popup-dialog/keypress.js 1.13KB
  341. helloUni/uni_modules/uni-popup/components/uni-popup-dialog/uni-popup-dialog.vue 6.45KB
  342. helloUni/uni_modules/uni-popup/components/uni-popup-message/
  343. helloUni/uni_modules/uni-popup/components/uni-popup-message/uni-popup-message.vue 2.71KB
  344. helloUni/uni_modules/uni-popup/components/uni-popup-share/
  345. helloUni/uni_modules/uni-popup/components/uni-popup-share/uni-popup-share.vue 3.98KB
  346. helloUni/uni_modules/uni-popup/components/uni-popup/i18n/
  347. helloUni/uni_modules/uni-popup/components/uni-popup/i18n/en.json 167B
  348. helloUni/uni_modules/uni-popup/components/uni-popup/i18n/index.js 169B
  349. helloUni/uni_modules/uni-popup/components/uni-popup/i18n/zh-Hans.json 173B
  350. helloUni/uni_modules/uni-popup/components/uni-popup/i18n/zh-Hant.json 171B
  351. helloUni/uni_modules/uni-popup/components/uni-popup/keypress.js 1.14KB
  352. helloUni/uni_modules/uni-popup/components/uni-popup/popup.js 425B
  353. helloUni/uni_modules/uni-popup/components/uni-popup/uni-popup.uvue 1.82KB
  354. helloUni/uni_modules/uni-popup/components/uni-popup/uni-popup.vue 11.76KB
  355. helloUni/uni_modules/uni-popup/package.json 1.59KB
  356. helloUni/uni_modules/uni-popup/readme.md 388B
  357. helloUni/uni_modules/uni-rate/
  358. helloUni/uni_modules/uni-rate/changelog.md 1.09KB
  359. helloUni/uni_modules/uni-rate/components/
  360. helloUni/uni_modules/uni-rate/components/uni-rate/
  361. helloUni/uni_modules/uni-rate/components/uni-rate/uni-rate.vue 8.9KB
  362. helloUni/uni_modules/uni-rate/package.json 1.72KB
  363. helloUni/uni_modules/uni-rate/readme.md 367B
  364. helloUni/uni_modules/uni-row/
  365. helloUni/uni_modules/uni-row/changelog.md 601B
  366. helloUni/uni_modules/uni-row/components/
  367. helloUni/uni_modules/uni-row/components/uni-col/
  368. helloUni/uni_modules/uni-row/components/uni-col/uni-col.vue 7.84KB
  369. helloUni/uni_modules/uni-row/components/uni-row/
  370. helloUni/uni_modules/uni-row/components/uni-row/uni-row.vue 4.04KB
  371. helloUni/uni_modules/uni-row/package.json 1.82KB
  372. helloUni/uni_modules/uni-row/readme.md 375B
  373. helloUni/uni_modules/uni-scss/
  374. helloUni/uni_modules/uni-scss/changelog.md 239B
  375. helloUni/uni_modules/uni-scss/index.scss 31B
  376. helloUni/uni_modules/uni-scss/package.json 1.72KB
  377. helloUni/uni_modules/uni-scss/readme.md 368B
  378. helloUni/uni_modules/uni-scss/styles/
  379. helloUni/uni_modules/uni-scss/styles/index.scss 237B
  380. helloUni/uni_modules/uni-scss/styles/setting/
  381. helloUni/uni_modules/uni-scss/styles/setting/_border.scss 49B
  382. helloUni/uni_modules/uni-scss/styles/setting/_color.scss 1.46KB
  383. helloUni/uni_modules/uni-scss/styles/setting/_radius.scss 1.4KB
  384. helloUni/uni_modules/uni-scss/styles/setting/_space.scss 1.19KB
  385. helloUni/uni_modules/uni-scss/styles/setting/_styles.scss 3.18KB
  386. helloUni/uni_modules/uni-scss/styles/setting/_text.scss 394B
  387. helloUni/uni_modules/uni-scss/styles/setting/_variables.scss 3.67KB
  388. helloUni/uni_modules/uni-scss/styles/tools/
  389. helloUni/uni_modules/uni-scss/styles/tools/functions.scss 640B
  390. helloUni/uni_modules/uni-scss/theme.scss 641B
  391. helloUni/uni_modules/uni-scss/variables.scss 1.72KB
  392. helloUni/uni_modules/uni-search-bar/
  393. helloUni/uni_modules/uni-search-bar/changelog.md 1.87KB
  394. helloUni/uni_modules/uni-search-bar/components/
  395. helloUni/uni_modules/uni-search-bar/components/uni-search-bar/
  396. helloUni/uni_modules/uni-search-bar/components/uni-search-bar/i18n/
  397. helloUni/uni_modules/uni-search-bar/components/uni-search-bar/i18n/en.json 95B
  398. helloUni/uni_modules/uni-search-bar/components/uni-search-bar/i18n/index.js 169B
  399. helloUni/uni_modules/uni-search-bar/components/uni-search-bar/i18n/zh-Hans.json 95B
  400. helloUni/uni_modules/uni-search-bar/components/uni-search-bar/i18n/zh-Hant.json 95B
  401. helloUni/uni_modules/uni-search-bar/components/uni-search-bar/uni-search-bar.vue 7.43KB
  402. helloUni/uni_modules/uni-search-bar/package.json 1.71KB
  403. helloUni/uni_modules/uni-search-bar/readme.md 310B
  404. helloUni/uni_modules/uni-section/
  405. helloUni/uni_modules/uni-section/changelog.md 37B
  406. helloUni/uni_modules/uni-section/components/
  407. helloUni/uni_modules/uni-section/components/uni-section/
  408. helloUni/uni_modules/uni-section/components/uni-section/uni-section.vue 3.78KB
  409. helloUni/uni_modules/uni-section/package.json 1.65KB
  410. helloUni/uni_modules/uni-section/readme.md 344B
  411. helloUni/uni_modules/uni-segmented-control/
  412. helloUni/uni_modules/uni-segmented-control/changelog.md 867B
  413. helloUni/uni_modules/uni-segmented-control/components/
  414. helloUni/uni_modules/uni-segmented-control/components/uni-segmented-control/
  415. helloUni/uni_modules/uni-segmented-control/components/uni-segmented-control/uni-segmented-control.vue 3.82KB
  416. helloUni/uni_modules/uni-segmented-control/package.json 1.82KB
  417. helloUni/uni_modules/uni-segmented-control/readme.md 349B
  418. helloUni/uni_modules/uni-steps/
  419. helloUni/uni_modules/uni-steps/changelog.md 881B
  420. helloUni/uni_modules/uni-steps/components/
  421. helloUni/uni_modules/uni-steps/components/uni-steps/
  422. helloUni/uni_modules/uni-steps/components/uni-steps/uni-steps.vue 6.69KB
  423. helloUni/uni_modules/uni-steps/package.json 1.79KB
  424. helloUni/uni_modules/uni-steps/readme.md 321B
  425. helloUni/uni_modules/uni-swipe-action/
  426. helloUni/uni_modules/uni-swipe-action/changelog.md 2.31KB
  427. helloUni/uni_modules/uni-swipe-action/components/
  428. helloUni/uni_modules/uni-swipe-action/components/uni-swipe-action/
  429. helloUni/uni_modules/uni-swipe-action/components/uni-swipe-action-item/
  430. helloUni/uni_modules/uni-swipe-action/components/uni-swipe-action-item/bindingx.js 6.67KB
  431. helloUni/uni_modules/uni-swipe-action/components/uni-swipe-action-item/isPC.js 322B
  432. helloUni/uni_modules/uni-swipe-action/components/uni-swipe-action-item/mpalipay.js 4.16KB
  433. helloUni/uni_modules/uni-swipe-action/components/uni-swipe-action-item/mpother.js 5.76KB
  434. helloUni/uni_modules/uni-swipe-action/components/uni-swipe-action-item/mpwxs.js 1.58KB
  435. helloUni/uni_modules/uni-swipe-action/components/uni-swipe-action-item/render.js 7.09KB
  436. helloUni/uni_modules/uni-swipe-action/components/uni-swipe-action-item/uni-swipe-action-item.vue 10.57KB
  437. helloUni/uni_modules/uni-swipe-action/components/uni-swipe-action-item/wx.wxs 8.24KB
  438. helloUni/uni_modules/uni-swipe-action/components/uni-swipe-action/uni-swipe-action.vue 1.27KB
  439. helloUni/uni_modules/uni-swipe-action/package.json 1.55KB
  440. helloUni/uni_modules/uni-swipe-action/readme.md 366B
  441. helloUni/uni_modules/uni-swiper-dot/
  442. helloUni/uni_modules/uni-swiper-dot/changelog.md 711B
  443. helloUni/uni_modules/uni-swiper-dot/components/
  444. helloUni/uni_modules/uni-swiper-dot/components/uni-swiper-dot/
  445. helloUni/uni_modules/uni-swiper-dot/components/uni-swiper-dot/uni-swiper-dot.vue 6.41KB
  446. helloUni/uni_modules/uni-swiper-dot/package.json 1.79KB
  447. helloUni/uni_modules/uni-swiper-dot/readme.md 327B
  448. helloUni/uni_modules/uni-table/
  449. helloUni/uni_modules/uni-table/changelog.md 1.32KB
  450. helloUni/uni_modules/uni-table/components/
  451. helloUni/uni_modules/uni-table/components/uni-table/
  452. helloUni/uni_modules/uni-table/components/uni-table/uni-table.vue 10.18KB
  453. helloUni/uni_modules/uni-table/components/uni-tbody/
  454. helloUni/uni_modules/uni-table/components/uni-tbody/uni-tbody.vue 361B
  455. helloUni/uni_modules/uni-table/components/uni-td/
  456. helloUni/uni_modules/uni-table/components/uni-td/uni-td.vue 1.82KB
  457. helloUni/uni_modules/uni-table/components/uni-th/
  458. helloUni/uni_modules/uni-table/components/uni-thead/
  459. helloUni/uni_modules/uni-table/components/uni-thead/uni-thead.vue 2.58KB
  460. helloUni/uni_modules/uni-table/components/uni-th/filter-dropdown.vue 10.37KB
  461. helloUni/uni_modules/uni-table/components/uni-th/uni-th.vue 6.75KB
  462. helloUni/uni_modules/uni-table/components/uni-tr/
  463. helloUni/uni_modules/uni-table/components/uni-tr/table-checkbox.vue 3.45KB
  464. helloUni/uni_modules/uni-table/components/uni-tr/uni-tr.vue 4.13KB
  465. helloUni/uni_modules/uni-table/i18n/
  466. helloUni/uni_modules/uni-table/i18n/en.json 276B
  467. helloUni/uni_modules/uni-table/i18n/es.json 281B
  468. helloUni/uni_modules/uni-table/i18n/fr.json 294B
  469. helloUni/uni_modules/uni-table/i18n/index.js 226B
  470. helloUni/uni_modules/uni-table/i18n/zh-Hans.json 269B
  471. helloUni/uni_modules/uni-table/i18n/zh-Hant.json 269B
  472. helloUni/uni_modules/uni-table/package.json 1.67KB
  473. helloUni/uni_modules/uni-table/readme.md 316B
  474. helloUni/uni_modules/uni-tag/
  475. helloUni/uni_modules/uni-tag/changelog.md 1.15KB
  476. helloUni/uni_modules/uni-tag/components/
  477. helloUni/uni_modules/uni-tag/components/uni-tag/
  478. helloUni/uni_modules/uni-tag/components/uni-tag/uni-tag.vue 5.08KB
  479. helloUni/uni_modules/uni-tag/package.json 1.77KB
  480. helloUni/uni_modules/uni-tag/readme.md 363B
  481. helloUni/uni_modules/uni-title/
  482. helloUni/uni_modules/uni-title/changelog.md 501B
  483. helloUni/uni_modules/uni-title/components/
  484. helloUni/uni_modules/uni-title/components/uni-title/
  485. helloUni/uni_modules/uni-title/components/uni-title/uni-title.vue 3.33KB
  486. helloUni/uni_modules/uni-title/package.json 1.79KB
  487. helloUni/uni_modules/uni-title/readme.md 406B
  488. helloUni/uni_modules/uni-tooltip/
  489. helloUni/uni_modules/uni-tooltip/changelog.md 524B
  490. helloUni/uni_modules/uni-tooltip/components/
  491. helloUni/uni_modules/uni-tooltip/components/uni-tooltip/
  492. helloUni/uni_modules/uni-tooltip/components/uni-tooltip/uni-tooltip.vue 2.03KB
  493. helloUni/uni_modules/uni-tooltip/package.json 1.63KB
  494. helloUni/uni_modules/uni-tooltip/readme.md 410B
  495. helloUni/uni_modules/uni-transition/
  496. helloUni/uni_modules/uni-transition/changelog.md 1.1KB
  497. helloUni/uni_modules/uni-transition/components/
  498. helloUni/uni_modules/uni-transition/components/uni-transition/
  499. helloUni/uni_modules/uni-transition/components/uni-transition/createAnimation.js 3.2KB
  500. helloUni/uni_modules/uni-transition/components/uni-transition/uni-transition.vue 6.74KB
  501. helloUni/uni_modules/uni-transition/package.json 1.67KB
  502. helloUni/uni_modules/uni-transition/readme.md 314B
  503. helloUni/uni_modules/uni-ui/
  504. helloUni/uni_modules/uni-ui/changelog.md 38.3KB
  505. helloUni/uni_modules/uni-ui/components/
  506. helloUni/uni_modules/uni-ui/components/uni-ui/
  507. helloUni/uni_modules/uni-ui/components/uni-ui/uni-ui.vue 101B
  508. helloUni/uni_modules/uni-ui/package.json 2.59KB
  509. helloUni/uni_modules/uni-ui/readme.md 12.32KB
  510. helloUni/unpackage/
  511. helloUni/unpackage/dist/
  512. helloUni/unpackage/dist/dev/
  513. helloUni/unpackage/dist/dev/.automator/
  514. helloUni/unpackage/dist/dev/.automator/mp-weixin/
  515. helloUni/unpackage/dist/dev/.automator/mp-weixin/.automator.json
  516. helloUni/unpackage/dist/dev/.sourcemap/
  517. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/
  518. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/common/
  519. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/common/main.js.map 5.97KB
  520. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/common/runtime.js.map 11.84KB
  521. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/common/vendor.js.map 473.52KB
  522. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/compunents/
  523. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/compunents/test.js.map 4.15KB
  524. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/
  525. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/contact/
  526. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/contact/contact.js.map 4.28KB
  527. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/detail/
  528. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/detail/detail.js.map 6.87KB
  529. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/home/
  530. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/home/home.js.map 4.54KB
  531. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/
  532. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/index.js.map 8.31KB
  533. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/list/
  534. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/list/list.js.map 9.89KB
  535. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/massage/
  536. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/massage/massage.js.map 10.06KB
  537. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/navigator/
  538. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/navigator/navigator.js.map 5.67KB
  539. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/uni-style/
  540. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/uni-style/uni-style.js.map 7.5KB
  541. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/uni_modules/
  542. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/uni_modules/uni-calendar/
  543. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/uni_modules/uni-calendar/components/
  544. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/uni_modules/uni-calendar/components/uni-calendar/
  545. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/uni_modules/uni-calendar/components/uni-calendar/uni-calendar-item.js.map 14.59KB
  546. helloUni/unpackage/dist/dev/.sourcemap/mp-weixin/uni_modules/uni-calendar/components/uni-calendar/uni-calendar.js.map 26.06KB
  547. helloUni/unpackage/dist/dev/mp-weixin/
  548. helloUni/unpackage/dist/dev/mp-weixin/app.js 89B
  549. helloUni/unpackage/dist/dev/mp-weixin/app.json 1.24KB
  550. helloUni/unpackage/dist/dev/mp-weixin/app.wxss 118B
  551. helloUni/unpackage/dist/dev/mp-weixin/common/
  552. helloUni/unpackage/dist/dev/mp-weixin/common/main.js 19.28KB
  553. helloUni/unpackage/dist/dev/mp-weixin/common/main.wxss 11.93KB
  554. helloUni/unpackage/dist/dev/mp-weixin/common/runtime.js 12KB
  555. helloUni/unpackage/dist/dev/mp-weixin/common/vendor.js 307.75KB
  556. helloUni/unpackage/dist/dev/mp-weixin/compunents/
  557. helloUni/unpackage/dist/dev/mp-weixin/compunents/test.js 17.42KB
  558. helloUni/unpackage/dist/dev/mp-weixin/compunents/test.json 48B
  559. helloUni/unpackage/dist/dev/mp-weixin/compunents/test.wxml 22B
  560. helloUni/unpackage/dist/dev/mp-weixin/pages/
  561. helloUni/unpackage/dist/dev/mp-weixin/pages/contact/
  562. helloUni/unpackage/dist/dev/mp-weixin/pages/contact/contact.js 18.16KB
  563. helloUni/unpackage/dist/dev/mp-weixin/pages/contact/contact.json 71B
  564. helloUni/unpackage/dist/dev/mp-weixin/pages/contact/contact.wxml 25B
  565. helloUni/unpackage/dist/dev/mp-weixin/pages/detail/
  566. helloUni/unpackage/dist/dev/mp-weixin/pages/detail/detail.js 27.12KB
  567. helloUni/unpackage/dist/dev/mp-weixin/pages/detail/detail.json 68B
  568. helloUni/unpackage/dist/dev/mp-weixin/pages/detail/detail.wxml 1.06KB
  569. helloUni/unpackage/dist/dev/mp-weixin/pages/detail/detail.wxss 373B
  570. helloUni/unpackage/dist/dev/mp-weixin/pages/home/
  571. helloUni/unpackage/dist/dev/mp-weixin/pages/home/home.js 18.19KB
  572. helloUni/unpackage/dist/dev/mp-weixin/pages/home/home.json 108B
  573. helloUni/unpackage/dist/dev/mp-weixin/pages/home/home.wxml 26B
  574. helloUni/unpackage/dist/dev/mp-weixin/pages/index/
  575. helloUni/unpackage/dist/dev/mp-weixin/pages/index/index.js 27.57KB
  576. helloUni/unpackage/dist/dev/mp-weixin/pages/index/index.json 65B
  577. helloUni/unpackage/dist/dev/mp-weixin/pages/index/index.wxml 147B
  578. helloUni/unpackage/dist/dev/mp-weixin/pages/index/index.wxss 336B
  579. helloUni/unpackage/dist/dev/mp-weixin/pages/list/
  580. helloUni/unpackage/dist/dev/mp-weixin/pages/list/list.js 29.19KB
  581. helloUni/unpackage/dist/dev/mp-weixin/pages/list/list.json 141B
  582. helloUni/unpackage/dist/dev/mp-weixin/pages/list/list.wxml 518B
  583. helloUni/unpackage/dist/dev/mp-weixin/pages/list/list.wxss 33B
  584. helloUni/unpackage/dist/dev/mp-weixin/pages/massage/
  585. helloUni/unpackage/dist/dev/mp-weixin/pages/massage/massage.js 29.37KB
  586. helloUni/unpackage/dist/dev/mp-weixin/pages/massage/massage.json 270B
  587. helloUni/unpackage/dist/dev/mp-weixin/pages/massage/massage.wxml 727B
  588. helloUni/unpackage/dist/dev/mp-weixin/pages/massage/massage.wxss 31B
  589. helloUni/unpackage/dist/dev/mp-weixin/pages/navigator/
  590. helloUni/unpackage/dist/dev/mp-weixin/pages/navigator/navigator.js 19.13KB
  591. helloUni/unpackage/dist/dev/mp-weixin/pages/navigator/navigator.json 141B
  592. helloUni/unpackage/dist/dev/mp-weixin/pages/navigator/navigator.wxml 518B
  593. helloUni/unpackage/dist/dev/mp-weixin/pages/uni-style/
  594. helloUni/unpackage/dist/dev/mp-weixin/pages/uni-style/uni-style.js 29.71KB
  595. helloUni/unpackage/dist/dev/mp-weixin/pages/uni-style/uni-style.json 71B
  596. helloUni/unpackage/dist/dev/mp-weixin/pages/uni-style/uni-style.wxml 114B
  597. helloUni/unpackage/dist/dev/mp-weixin/pages/uni-style/uni-style.wxss 1.16KB
  598. helloUni/unpackage/dist/dev/mp-weixin/project.config.json 1.3KB
  599. helloUni/unpackage/dist/dev/mp-weixin/project.private.config.json 342B
  600. helloUni/unpackage/dist/dev/mp-weixin/static/
  601. helloUni/unpackage/dist/dev/mp-weixin/static/fonts/
  602. helloUni/unpackage/dist/dev/mp-weixin/static/fonts/iconfont.css 2.09KB
  603. helloUni/unpackage/dist/dev/mp-weixin/static/fonts/iconfont.eot 2.09KB
  604. helloUni/unpackage/dist/dev/mp-weixin/static/fonts/iconfont.svg 2.56KB
  605. helloUni/unpackage/dist/dev/mp-weixin/static/fonts/iconfont.ttf 1.93KB
  606. helloUni/unpackage/dist/dev/mp-weixin/static/fonts/iconfont.woff 1.33KB
  607. helloUni/unpackage/dist/dev/mp-weixin/static/fonts/iconfont.woff2 956B
  608. helloUni/unpackage/dist/dev/mp-weixin/static/img/
  609. helloUni/unpackage/dist/dev/mp-weixin/static/img/iconfont.142a1820.svg 2.56KB
  610. helloUni/unpackage/dist/dev/mp-weixin/static/logo.png 3.93KB
  611. helloUni/unpackage/dist/dev/mp-weixin/static/tabs/
  612. helloUni/unpackage/dist/dev/mp-weixin/static/tabs/contact-active.png 2.12KB
  613. helloUni/unpackage/dist/dev/mp-weixin/static/tabs/contact.png 2.04KB
  614. helloUni/unpackage/dist/dev/mp-weixin/static/tabs/home-active.png 1.47KB
  615. helloUni/unpackage/dist/dev/mp-weixin/static/tabs/home.png 1.67KB
  616. helloUni/unpackage/dist/dev/mp-weixin/static/tabs/message-active.png 1.74KB
  617. helloUni/unpackage/dist/dev/mp-weixin/static/tabs/message.png 1.99KB
  618. helloUni/unpackage/dist/dev/mp-weixin/uni_modules/
  619. helloUni/unpackage/dist/dev/mp-weixin/uni_modules/uni-calendar/
  620. helloUni/unpackage/dist/dev/mp-weixin/uni_modules/uni-calendar/components/
  621. helloUni/unpackage/dist/dev/mp-weixin/uni_modules/uni-calendar/components/uni-calendar/
  622. helloUni/unpackage/dist/dev/mp-weixin/uni_modules/uni-calendar/components/uni-calendar/uni-calendar-item.js 32.22KB
  623. helloUni/unpackage/dist/dev/mp-weixin/uni_modules/uni-calendar/components/uni-calendar/uni-calendar-item.json 48B
  624. helloUni/unpackage/dist/dev/mp-weixin/uni_modules/uni-calendar/components/uni-calendar/uni-calendar-item.wxml 3.05KB
  625. helloUni/unpackage/dist/dev/mp-weixin/uni_modules/uni-calendar/components/uni-calendar/uni-calendar-item.wxss 2.5KB
  626. helloUni/unpackage/dist/dev/mp-weixin/uni_modules/uni-calendar/components/uni-calendar/uni-calendar.js 39.42KB
  627. helloUni/unpackage/dist/dev/mp-weixin/uni_modules/uni-calendar/components/uni-calendar/uni-calendar.json 142B
  628. helloUni/unpackage/dist/dev/mp-weixin/uni_modules/uni-calendar/components/uni-calendar/uni-calendar.wxml 3.74KB
  629. helloUni/unpackage/dist/dev/mp-weixin/uni_modules/uni-calendar/components/uni-calendar/uni-calendar.wxss 4.39KB
0评论
提交 加载更多评论
其他资源 202203610326 梁涛.zip
202203610326 梁涛.zip
202203610326 梁涛.zip 202203610326 梁涛.zip 202203610326 梁涛.zip
实训模板及参考.zip
实训模板及参考.zip
实训模板及参考.zip 实训模板及参考.zip
免费下载pandoc-3.2.1-windows-x86
免费下载,github下载太慢了,提供免费下载资源
STM32 ST-LINK Utility.zip
STM32 ST-LINK Utility.zip
苹果内购凭证解析内含有前后端简单项目文件
server-- 是一个服务,用来解决跨域问题的,首先要启动这个服务 在当前文件夹打开命令窗口先进行npm install 然后再进行node server.mjs 这样就能启动服务了 接下来就是打开前端项目了 验证苹果收款文件--是模拟前端进行验证苹果返回的支付凭证,将获取到的base64进行粘贴发起请求即可
科学研究毕业论文答辩PPT模板.ppt.zip
科学研究毕业论文答辩PPT模板.ppt.zip
科学研究毕业论文答辩PPT模板.ppt.zip 科学研究毕业论文答辩PPT模板.ppt.zip 科学研究毕业论文答辩PPT模板.ppt.zip
框架完整的毕业论文答辩PPT-台阶版.ppt.zip
框架完整的毕业论文答辩PPT-台阶版.ppt.zip
框架完整的毕业论文答辩PPT-台阶版.ppt.zip 框架完整的毕业论文答辩PPT-台阶版.ppt.zip 框架完整的毕业论文答辩PPT-台阶版.ppt.zip
可爱手绘水彩花卉小清新答辩PPT模板.pptx.zip
可爱手绘水彩花卉小清新答辩PPT模板.pptx.zip
可爱手绘水彩花卉小清新答辩PPT模板.pptx.zip 可爱手绘水彩花卉小清新答辩PPT模板.pptx.zip 可爱手绘水彩花卉小清新答辩PPT模板.pptx.zip