You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@weex.apache.org by ef...@apache.org on 2018/12/26 15:20:29 UTC

[incubator-weex-site] 01/01: [WEEX][Doc] Update Error Link In List And Waterfall

This is an automated email from the ASF dual-hosted git repository.

efurture pushed a commit to branch gubaojian-patch-5
in repository https://gitbox.apache.org/repos/asf/incubator-weex-site.git

commit 23b7ff38f5492fc35cb6191f7be0e8e274c93a97
Author: jianbai.gbj <ji...@taobao.com>
AuthorDate: Wed Dec 26 23:20:13 2018 +0800

    [WEEX][Doc] Update Error Link In List And Waterfall
---
 docs/docs/components/list.md         |  8 ++++----
 docs/docs/components/waterfall.md    |  8 ++++----
 docs/zh/docs/components/list.md      |  2 +-
 docs/zh/docs/components/waterfall.md | 12 ++++++------
 4 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/docs/docs/components/list.md b/docs/docs/components/list.md
index f608555..e129ffb 100644
--- a/docs/docs/components/list.md
+++ b/docs/docs/components/list.md
@@ -41,7 +41,7 @@ Please checkout [Scroller Component Attributes](./scroller.html) to have a look
 ### Styles
 
 
-common styles: check out [common styles for components](/wiki/common-styles.html)
+common styles: check out [common styles for components](/docs/styles/common-styles.html)
 
 * support flexbox related styles
 * support box model related styles
@@ -54,10 +54,10 @@ onloadmore  0.5 used with loadmoreoffset attribute. if the view has less than lo
 
 scroll  <sup class="wx-v">0.12+</sup> used with offset-accuracy attribute. This event is fired when the list scrolls. The current contentOffset value is given in this event callback. See details in [scroll event demo](http://dotwe.org/vue/9ef0e52bacaa20182a693f2187d851aa).
 
-common events: check out the [common events](/wiki/common-events.html)
+common events: check out the [common events](/docs/events/common-events.html)
 
-* support onclick event. Check out [common events](/wiki/common-events.html)
-* support onappear / ondisappear event. Check out [common events](/wiki/common-events.html)
+* support onclick event. Check out [common events](/docs/events/common-events.html)
+* support onappear / ondisappear event. Check out [common events](/docs/events/common-events.html)
 
 
 ### API
diff --git a/docs/docs/components/waterfall.md b/docs/docs/components/waterfall.md
index 188b40d..1cbcdd5 100644
--- a/docs/docs/components/waterfall.md
+++ b/docs/docs/components/waterfall.md
@@ -27,7 +27,7 @@ To see other attributes in list,  please checkout [List Component Attributes](./
 
 ### Styles
 
-common styles: check out [common styles for components](/wiki/common-styles.html)
+common styles: check out [common styles for components](/docs/styles/common-styles.html)
 
 * support flexbox related styles
 * support box model related styles
@@ -36,10 +36,10 @@ common styles: check out [common styles for components](/wiki/common-styles.html
 
 ### Events
 
-common events: check out the [common events](/wiki/common-events.html)
+common events: check out the [common events](/docs/events/common-events.html)
 
-* support onclick event. Check out [common events](/wiki/common-events.html)
-* support onappear / ondisappear event. Check out [common events](/wiki/common-events.html)
+* support onclick event. Check out [common events](/docs/events/common-events.html)
+* support onappear / ondisappear event. Check out [common events](/docs/events/common-events.html)
 
 ### API
 
diff --git a/docs/zh/docs/components/list.md b/docs/zh/docs/components/list.md
index 1764564..5e89805 100644
--- a/docs/zh/docs/components/list.md
+++ b/docs/zh/docs/components/list.md
@@ -94,7 +94,7 @@
 
 ## 扩展
 ### `scrollToElement(node, options)`
-滚动到列表某个指定项是常见需求,`<list>` 拓展了该功能,可通过 `dom.scrollToElement()` 滚动到指定 `<cell>`。更多信息可参考 [dom module](/docs/dom.html)。  
+滚动到列表某个指定项是常见需求,`<list>` 拓展了该功能,可通过 `dom.scrollToElement()` 滚动到指定 `<cell>`。更多信息可参考 [dom module](/docs/modules/dom.html)。  
 相应的 demo 可参考 [&lt;scroller&gt; 示例](http://dotwe.org/vue/014c0dc53edf7320df7701ebf7c0b2be)中的实现。
 
 ## Demo
diff --git a/docs/zh/docs/components/waterfall.md b/docs/zh/docs/components/waterfall.md
index 41f878f..3615e28 100644
--- a/docs/zh/docs/components/waterfall.md
+++ b/docs/zh/docs/components/waterfall.md
@@ -23,11 +23,11 @@
 ```
 
 ## 子组件
-和 [`<list>`](/docs/list.html)组件一样, `<waterfall>` 组件的子组件只能包括以下四种组件或是 `fix` 定位的组件,其他形式的组件将不能被正确渲染。
-* [`<cell>`](/docs/cell.html):用于定义列表中的子列表项,类似于 HTML 中的 ul 之于 li。Weex 会对 `<cell>` 进行高效的内存回收以达到更好的性能。
+和 [`<list>`](./list.html)组件一样, `<waterfall>` 组件的子组件只能包括以下四种组件或是 `fix` 定位的组件,其他形式的组件将不能被正确渲染。
+* [`<cell>`](./cell.html):用于定义列表中的子列表项,类似于 HTML 中的 ul 之于 li。Weex 会对 `<cell>` 进行高效的内存回收以达到更好的性能。
 * `<header>`:当 `<header>` 到达屏幕顶部时,吸附在屏幕顶部。
-* [`<refresh>`](/docs/refresh.html):用于给列表添加下拉刷新的功能。
-* [`<loading>`](/docs/loading.html):`<loading>` 用法与特性和 `<refresh>` 类似,用于给列表添加上拉加载更多的功能。
+* [`<refresh>`](./refresh.html):用于给列表添加下拉刷新的功能。
+* [`<loading>`](./loading.html):`<loading>` 用法与特性和 `<refresh>` 类似,用于给列表添加上拉加载更多的功能。
 
 <div style="text-align: center"><img src="https://img.alicdn.com/tfs/TB1sa8bokvoK1RjSZFwXXciCFXa-621-678.png" width="600"></div>
 
@@ -45,7 +45,7 @@
 
 <div style="text-align: center"><img src="https://img.alicdn.com/tfs/TB1Mjk9n3TqK1RjSZPhXXXfOFXa-641-673.png" width="600"></div>
 
-其他支持的属性参见 [List 组件属性部分](/docs/list.html#%E5%B1%9E%E6%80%A7)
+其他支持的属性参见 [List 组件属性部分](./list.html#%E5%B1%9E%E6%80%A7)
 
 ## 事件
 支持所有通用事件:
@@ -64,4 +64,4 @@
 无限加载瀑布流,当瀑布流滑动到底部时请求新的瀑布流数据形成可无限滑动的瀑布流。可利用最后一个子组件 appear 时触发请求(例如上述示例代码),也可通过 loadmore 事件触发。
 
 
-<IPhoneImg imgSrc="https://img.alicdn.com/tfs/TB1iEk9nVzqK1RjSZFCXXbbxVXa-544-960.gif" />
\ No newline at end of file
+<IPhoneImg imgSrc="https://img.alicdn.com/tfs/TB1iEk9nVzqK1RjSZFCXXbbxVXa-544-960.gif" />