├── README.md ├── app.js ├── app.json ├── app.wxss ├── images ├── UI_DEMO │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ └── 6.png ├── ditu.png ├── ico_ditu.png ├── icon │ ├── ico_gouxuan.png │ ├── ico_huiyi@2x.png │ ├── ico_huiyi_.png │ ├── ico_huiyi_A.png │ ├── ico_huiyi_B.png │ ├── ico_weixin@2x.png │ ├── ico_yuding@2x.png │ ├── ico_yuding_p@2x.png │ ├── ico_zuowei_.png │ ├── ico_zuowei_A.png │ ├── ico_zuowei_B.png │ ├── index_A.png │ ├── index_B.png │ ├── nav_fanhui_A.png │ ├── nav_fanhui_B.png │ ├── nav_xiala_lan_B.png │ ├── notice_A.png │ ├── notice_B.png │ ├── orders_A.png │ ├── orders_B.png │ ├── personal_A.png │ └── personal_B.png ├── index-focus-1.png ├── index-focus-2.png ├── notice-1.png ├── notice-2.png ├── notice-3.png ├── unuserhead.jpg ├── userhead.jpg ├── vankelogo.png └── zuowei.png ├── pages ├── article │ ├── article.js │ ├── article.json │ ├── article.wxml │ └── article.wxss ├── booking-detail │ ├── booking-detail.js │ ├── booking-detail.json │ ├── booking-detail.wxml │ └── booking-detail.wxss ├── booking │ ├── booking.js │ ├── booking.json │ ├── booking.wxml │ └── booking.wxss ├── conference │ ├── conference.js │ ├── conference.json │ ├── conference.wxml │ └── conference.wxss ├── index │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── login │ ├── login.js │ ├── login.json │ ├── login.wxml │ └── login.wxss ├── notice │ ├── notice.js │ └── notice.wxml ├── orders │ ├── orders.js │ ├── orders.json │ ├── orders.wxml │ └── orders.wxss ├── personal │ ├── personal.js │ ├── personal.json │ ├── personal.wxml │ └── personal.wxss ├── scanning │ ├── scanning.js │ ├── scanning.json │ ├── scanning.wxml │ └── scanning.wxss └── sitting │ ├── sitting.js │ ├── sitting.json │ ├── sitting.wxml │ └── sitting.wxss ├── template └── template.wxml ├── utils └── util.js └── wxParse ├── html2json.js ├── htmlparser.js ├── showdown.js ├── wxDiscode.js ├── wxParse.js ├── wxParse.wxml └── wxParse.wxss /README.md: -------------------------------------------------------------------------------- 1 | ## 此会议室为小程序的一个demo 2 | 3 | ### [我的博客](http://blog.csdn.net/m0_37541331) 4 | ### 现在为大家介绍一下效果图 5 | 6 | ![效果图1](https://raw.githubusercontent.com/zengxianlin/huiyishi/master/images/UI_DEMO/1.png) 7 | ![效果图2](https://raw.githubusercontent.com/zengxianlin/huiyishi/master/images/UI_DEMO/2.png) 8 | ![效果图3](https://raw.githubusercontent.com/zengxianlin/huiyishi/master/images/UI_DEMO/3.png) 9 | ![效果图4](https://raw.githubusercontent.com/zengxianlin/huiyishi/master/images/UI_DEMO/4.png) 10 | ![效果图5](https://raw.githubusercontent.com/zengxianlin/huiyishi/master/images/UI_DEMO/5.png) 11 | ![效果图6](https://raw.githubusercontent.com/zengxianlin/huiyishi/master/images/UI_DEMO/6.png) 12 | 13 | -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | //app.js 2 | App({ 3 | onLaunch: function () { 4 | 5 | }, 6 | getRequest: function(url,callback){ 7 | wx.showToast({ 8 | title: '加载中', 9 | icon: 'loading', 10 | duration: 10000 11 | }) 12 | wx.request({ 13 | url: url, //仅为示例,并非真实的接口地址 14 | success: function(res) { 15 | if(callback && typeof callback == 'function'){ 16 | callback(res) 17 | wx.hideToast() 18 | } 19 | } 20 | }) 21 | }, 22 | getScanning: function(){ 23 | wx.scanCode({ 24 | success: (res) => { 25 | var result = res.result 26 | result = result.replace('http://','') 27 | wx.navigateTo({ 28 | url: '../'+result 29 | }) 30 | } 31 | }) 32 | }, 33 | setStorageUser: function(params,callback){ 34 | wx.setStorage({ 35 | key: params.key, 36 | data: params.data, 37 | success: function(res) { 38 | if(callback && typeof callback == 'function'){ 39 | callback(res) 40 | } 41 | } 42 | }); 43 | // console.log(params) 44 | 45 | } 46 | }) -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages":[ 3 | "pages/index/index", 4 | "pages/orders/orders", 5 | "pages/notice/notice", 6 | "pages/personal/personal", 7 | "pages/login/login", 8 | "pages/scanning/scanning", 9 | "pages/booking/booking", 10 | "pages/sitting/sitting", 11 | "pages/conference/conference", 12 | "pages/article/article", 13 | "pages/booking-detail/booking-detail" 14 | ], 15 | "tabBar":{ 16 | "selectedColor": "#b02923", 17 | "color": "#666", 18 | "borderStyle": "black", 19 | "backgroundColor": "#fff", 20 | "list": [{ 21 | "pagePath": "pages/index/index", 22 | "text": "首页", 23 | "iconPath": "images/icon/index_A.png", 24 | "selectedIconPath": "images/icon/index_B.png" 25 | },{ 26 | "pagePath": "pages/orders/orders", 27 | "text": "我的预订", 28 | "iconPath": "images/icon/orders_A.png", 29 | "selectedIconPath": "images/icon/orders_B.png" 30 | },{ 31 | "pagePath": "pages/notice/notice", 32 | "text": "公告", 33 | "iconPath": "images/icon/notice_A.png", 34 | "selectedIconPath": "images/icon/notice_B.png" 35 | },{ 36 | "pagePath": "pages/personal/personal", 37 | "text": "我的", 38 | "iconPath": "images/icon/personal_A.png", 39 | "selectedIconPath": "images/icon/personal_B.png" 40 | }] 41 | }, 42 | "window":{ 43 | "backgroundTextStyle":"light", 44 | "navigationBarBackgroundColor": "#b02923", 45 | "navigationBarTitleText": "万科会议室", 46 | "navigationBarTextStyle":"white", 47 | "backgroundColor": "#eeeeee" 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /app.wxss: -------------------------------------------------------------------------------- 1 | /**app.wxss**/ 2 | @import "/wxParse/wxParse.wxss"; 3 | page{ 4 | background-color: #eee; 5 | font-size: 12px; 6 | font-family:"Helvetica Neue",Helvetica,Arial,sans-serif,"微软雅黑","宋体"; 7 | } 8 | view,navigator{ 9 | box-sizing: border-box; 10 | } 11 | @font-face { 12 | font-family: 'iconfont'; /* project id 225123 */ 13 | src: url('https://at.alicdn.com/t/font_vkd3bl42t0zoajor.eot'); 14 | src: url('https://at.alicdn.com/t/font_vkd3bl42t0zoajor.eot?#iefix') format('embedded-opentype'), 15 | url('https://at.alicdn.com/t/font_vkd3bl42t0zoajor.woff') format('woff'), 16 | url('https://at.alicdn.com/t/font_vkd3bl42t0zoajor.ttf') format('truetype'), 17 | url('https://at.alicdn.com/t/font_vkd3bl42t0zoajor.svg#iconfont') format('svg'); 18 | } 19 | .iconfont { 20 | font-family:"iconfont" !important; 21 | font-size:16px; 22 | font-style:normal; 23 | -webkit-font-smoothing: antialiased; 24 | -moz-osx-font-smoothing: grayscale; 25 | } 26 | .icon-more:before { content: "\e6a7"; } 27 | 28 | .icon-less:before { content: "\e6a5"; } 29 | 30 | .icon-moreunfold:before { content: "\e6a6"; } 31 | 32 | .icon-account:before { content: "\e6b8"; } 33 | 34 | .icon-clock:before { content: "\e6bb"; } 35 | 36 | .icon-zuowei:before { content: "\e604"; } 37 | 38 | .icon-electronics:before { content: "\e6da"; } 39 | 40 | .icon-qrcode:before { content: "\e631"; } 41 | 42 | .icon-map:before { content: "\e715"; } 43 | 44 | .icon-mobilephone:before { content: "\e72a"; } 45 | 46 | .icon-huiyishi:before { content: "\e603"; } 47 | 48 | .icon-phone:before { content: "\e639"; } 49 | 50 | .icon-floor:before { content: "\e600"; } 51 | 52 | .icon-name:before { content: "\e714"; } 53 | 54 | .icon-seat:before { content: "\e65d"; } 55 | 56 | .icon-time:before { content: "\e88f"; } 57 | 58 | .icon-password:before { content: "\e9af"; } 59 | 60 | .icon-feedback:before { content: "\e62f"; } 61 | 62 | .icon-about:before { content: "\e67a"; } 63 | 64 | .icon-reserve:before { content: "\e716"; } 65 | 66 | .icon-edition:before { content: "\e649"; } 67 | 68 | 69 | 70 | /* 共用的小样式 */ 71 | .bg-white{ 72 | background-color: #fff; 73 | } 74 | .clearfix:before, .clearfix:after { 75 | content: ""; 76 | display: table; 77 | } 78 | .clearfix:after { 79 | clear: both; 80 | } 81 | .pull-left{ 82 | float: left; 83 | } 84 | .pull-right{ 85 | float: right; 86 | } 87 | 88 | /* 公告列表样式 */ 89 | .noticeList{ 90 | margin-top: 20rpx; 91 | padding: 0 16rpx; 92 | } 93 | .noticeList-item{ 94 | padding: 24rpx 6rpx 16rpx; 95 | border-bottom: 1px solid #f3f3f3; 96 | display: -webkit-box; 97 | display: -webkit-flex; 98 | display: flex; 99 | } 100 | .noticeList-item-r{ 101 | padding-left: 8px; 102 | -webkit-box-flex: 1; 103 | -webkit-flex: 1; 104 | flex:1; 105 | overflow: hidden; 106 | } 107 | .noticeList-item-r text{ 108 | display: block; 109 | } 110 | .noticeList-item-title{ 111 | overflow: hidden; 112 | white-space: nowrap; 113 | text-overflow: ellipsis; 114 | font-weight: bold; 115 | color: #393939; 116 | font-size:28rpx; 117 | } 118 | .noticeList-item-desc{ 119 | overflow: hidden; 120 | word-break: break-all; 121 | text-overflow: ellipsis; 122 | text-overflow: -o-ellipsis-lastline; 123 | display: -webkit-box; 124 | -webkit-line-clamp: 3; 125 | -webkit-box-orient: vertical; 126 | color: #999; 127 | line-height: 1.3; 128 | margin-top: 5px; 129 | height: 46px; 130 | font-size:26rpx; 131 | } 132 | 133 | .button-hover { 134 | background-color: #b02923; 135 | } 136 | /** 添加自定义button点击态样式类**/ 137 | .other-button-hover { 138 | background-color: #b02923; 139 | color:#fff; 140 | } 141 | button{ 142 | background-color: #b02923; 143 | color:#fff; 144 | width:80%; 145 | margin-top:80px; 146 | 147 | } 148 | /* 二维码浮标 */ 149 | .qrcode{ 150 | position: fixed; 151 | right: 10px; 152 | bottom: 50px; 153 | color: #b02923; 154 | font-size: 30px; 155 | width: 40px; 156 | height: 40px; 157 | background-color: rgba(255, 255, 255, 1); 158 | text-align: center; 159 | line-height: 40px; 160 | } 161 | .qrcode span{ 162 | font-size: 30px; 163 | font-weight: bold; 164 | } -------------------------------------------------------------------------------- /images/UI_DEMO/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/UI_DEMO/1.png -------------------------------------------------------------------------------- /images/UI_DEMO/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/UI_DEMO/2.png -------------------------------------------------------------------------------- /images/UI_DEMO/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/UI_DEMO/3.png -------------------------------------------------------------------------------- /images/UI_DEMO/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/UI_DEMO/4.png -------------------------------------------------------------------------------- /images/UI_DEMO/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/UI_DEMO/5.png -------------------------------------------------------------------------------- /images/UI_DEMO/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/UI_DEMO/6.png -------------------------------------------------------------------------------- /images/ditu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/ditu.png -------------------------------------------------------------------------------- /images/ico_ditu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/ico_ditu.png -------------------------------------------------------------------------------- /images/icon/ico_gouxuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/icon/ico_gouxuan.png -------------------------------------------------------------------------------- /images/icon/ico_huiyi@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/icon/ico_huiyi@2x.png -------------------------------------------------------------------------------- /images/icon/ico_huiyi_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/icon/ico_huiyi_.png -------------------------------------------------------------------------------- /images/icon/ico_huiyi_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/icon/ico_huiyi_A.png -------------------------------------------------------------------------------- /images/icon/ico_huiyi_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/icon/ico_huiyi_B.png -------------------------------------------------------------------------------- /images/icon/ico_weixin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/icon/ico_weixin@2x.png -------------------------------------------------------------------------------- /images/icon/ico_yuding@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/icon/ico_yuding@2x.png -------------------------------------------------------------------------------- /images/icon/ico_yuding_p@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/icon/ico_yuding_p@2x.png -------------------------------------------------------------------------------- /images/icon/ico_zuowei_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/icon/ico_zuowei_.png -------------------------------------------------------------------------------- /images/icon/ico_zuowei_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/icon/ico_zuowei_A.png -------------------------------------------------------------------------------- /images/icon/ico_zuowei_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/icon/ico_zuowei_B.png -------------------------------------------------------------------------------- /images/icon/index_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/icon/index_A.png -------------------------------------------------------------------------------- /images/icon/index_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/icon/index_B.png -------------------------------------------------------------------------------- /images/icon/nav_fanhui_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/icon/nav_fanhui_A.png -------------------------------------------------------------------------------- /images/icon/nav_fanhui_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/icon/nav_fanhui_B.png -------------------------------------------------------------------------------- /images/icon/nav_xiala_lan_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/icon/nav_xiala_lan_B.png -------------------------------------------------------------------------------- /images/icon/notice_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/icon/notice_A.png -------------------------------------------------------------------------------- /images/icon/notice_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/icon/notice_B.png -------------------------------------------------------------------------------- /images/icon/orders_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/icon/orders_A.png -------------------------------------------------------------------------------- /images/icon/orders_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/icon/orders_B.png -------------------------------------------------------------------------------- /images/icon/personal_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/icon/personal_A.png -------------------------------------------------------------------------------- /images/icon/personal_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/icon/personal_B.png -------------------------------------------------------------------------------- /images/index-focus-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/index-focus-1.png -------------------------------------------------------------------------------- /images/index-focus-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/index-focus-2.png -------------------------------------------------------------------------------- /images/notice-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/notice-1.png -------------------------------------------------------------------------------- /images/notice-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/notice-2.png -------------------------------------------------------------------------------- /images/notice-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/notice-3.png -------------------------------------------------------------------------------- /images/unuserhead.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/unuserhead.jpg -------------------------------------------------------------------------------- /images/userhead.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/userhead.jpg -------------------------------------------------------------------------------- /images/vankelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/vankelogo.png -------------------------------------------------------------------------------- /images/zuowei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengxianlin/huiyishi/4c182e5a2d7b5e1bafe925fd879ccff91a713838/images/zuowei.png -------------------------------------------------------------------------------- /pages/article/article.js: -------------------------------------------------------------------------------- 1 | // pages/article/article.js 2 | var WxParse = require('../../wxParse/wxParse.js'); 3 | Page({ 4 | data:{ 5 | article: '' 6 | }, 7 | onLoad:function(options){ 8 | // 页面初始化 options为页面跳转所带来的参数 9 | var article = '

(万周社7月20日大梅沙电)2016年7月20日,《财富》“世界500强”企业排行榜出炉,万科企业股份有限公司凭借2015年度1843.18亿元(293.29亿美元)的营收首次跻身《财富》“世界500强”,位列榜单第356位。

“世界500强”(Fortune Global 500)是中国人对《财富》杂志评选的“全球最大五百家公司”排行榜的一种约定俗成的叫法。自1955年开始发布以来,《财富》“世界500强”排行榜一直是衡量全球大型公司的最著名、最权威榜单,是世界知名企业用来判断自身实力、规模和国际竞争力的重要指标。

《财富》“世界500强”的排行榜以企业年度营业收入和利润作为主要评定指标,每年发布一次。根据万科2015年年度报告(按国际财务报告准则),公司在2015年实现营业收入1843.18亿元(293.29亿美元),实现净利润181.19亿元(28.83亿美元)。

万科成立于1984年,1988年进入房地产行业,经过三十余年的发展,已成为世界最大的住宅开发企业。截至2015年底,万科业务覆盖全球71个城市,物业服务住宅社区843个。2015年,万科实现销售面积2067.1万平方米,销售金额2614.7亿元,同比分别增长14.3%和20.7%。在全国商品房市场的占有率进一步上升至3%。无论销售金额还是市场占有率,都创造了行业有史以来的新纪录。

1991年,万科成为深圳证券交易所首批上市公司,持续增长的业绩回报以及规范透明的公司治理结构,使公司赢得了投资者的广泛认可。公司在发展过程中先后入选《福布斯》“全球200家最佳中小企业”、“亚洲最佳上市公司50强”等排行榜;多次获得《投资者关系》等国际权威媒体评出的最佳公司治理、最佳投资者关系等奖项。

万科创始人、董事长王石表示:32年来,万科与中国经济共同成长,是改革开放提供了历史机遇,是深圳特区提供了发展沃土。上榜“世界500强”,要感谢业主客户的信赖,感谢投资者的支持,感谢合作伙伴的信任,感谢万科全体员工的不懈努力,感谢所有关心万科、激励万科不断完善、砥砺前行的人们。

' 10 | var that = this; 11 | WxParse.wxParse('article', 'html', article, that); 12 | } 13 | }) -------------------------------------------------------------------------------- /pages/article/article.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/article/article.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |