wux-button 样式扩展 增加shape属性

1、原来的写法界面图如下

  <wux-button block type="orange">拍照确认</wux-button>

wux-button 样式扩展 增加shape属性
2、现在的写法只需要增加一个shape="round"参数,可以实现按钮边框为半圆

 <wux-button block type="orange" shape="round">拍照确认</wux-button>

wux-button 样式扩展 增加shape属性
3、改造方法
button/index.js增加

 shape: {
   type: String,
   value: 'rect',
 }

button/index.wxml增加

{{ shape ? 'wux-button--' + shape : '' }}

button/index.wxss增加

.wux-button--round {
  border-radius: 84rpx;
}

搞定