1、把.wxml扩展名改成.html
2、把wxss扩展名改成.css
3、增加body等长用项。
4、增加.css文件的链接
<link rel="stylesheet" href="css/index.css">
1、page{} 替换成 body{}
2、image 替换成 img
3、text 替换成 span
4、view 替换成 div
1、<text> 替换成 <span>
2、<image> 替换成 <img>
3、</image> 替换成 </img>
4、<view> 替换成 <div>
5、</view> 替换成 </div>