shu-ui - 更新日志

1.0.14(2023-07-27)

调整

1.0.13(2023-06-16)

细节更新

1.0.12(2023-05-29)

增加 移动端table - 对应组件 s-list-row

1.0.11(2022-05-23)

更新了啥 我忘了

1.0.10(2022-04-21)

优化组件 更多自定义 新增多选查询组件

1.0.9(2022-04-08)

新增 表单封装组件 底部弹出组件 popup组件 范围查询组件 查询选择组件 及优化其他组件

1.0.8(2022-03-17)

优化

1.0.7(2022-03-14)

table更新

1.0.6(2022-03-03)

优化细节 使用exp:

<!-- 浮动按钮 -->
    <su-fab @click="test" :ismore="true" :btns="[{name: '系统设置',image: ''}]"></su-fab>

    <!-- 长列表 row类型下建议4个字段 width-单位自定义如50% 28rpx -->
    <su-table :data='list'
        type="row"  
        :top="92"
        :loadStatus="loadStatus"
        :columns="[{
            label: '单位',
            prop: 'name',
            width: '17%',
        },{
            label: '上期余额',
            prop: 'fprior',
            width: '28%',
            float: true,
            sort: true
        },{
            label: '本期增加',
            prop: 'fdebit_for',
            width: '27%',
            float: true,
            sort: true
        },{
            label: '期末余额',
            prop: 'fbalance',
            width: '28%',
            theme: 'u-type-error',
            float: true,
            sort: true
        }]" 
        @click="go"
    ></su-table>

    <!-- 长列表 block类型 width-限定为数字如 50 -->
    <su-table :data='list'
        type="block"
        :isClick="true"
        :loadStatus="loadStatus"
        :head="{
            title: 'code',
            subtitle: '',
            status: 'status_name',
            condition: '',
            judge: ''
        }"
        :children=""
        :columns="[{
            label: '单位',
            prop: 'name',
            width: '17%',
        },{
            label: '上期余额',
            prop: 'fprior',
            width: '28',
            float: true
        },{
            label: '本期增加',
            prop: 'fdebit_for',
            width: '27',
            float: true
        },{
            label: '期末余额',
            prop: 'fbalance',
            width: '28',
            theme: 'u-type-error',
            float: true
        }]"
        :buttons="[{
            label: '明细',                //按钮名称
            icon: 'attach',             // 按钮图标
            disable: checkPerm().edit   // 是否显示 可做权限校验
        },{
            label: '审核',
            icon: 'order',
        }]"
        @click="go"
    ></su-table>

    <!-- 版权组件 -->
    <su-copyright></su-copyright>

    <!-- 价格组件 -->
    <su-price :text="100"></su-price>

1.0.5(2022-02-15)

移除多余代码 添加block组件的按钮组

1.0.4(2022-01-12)

增加购物车等小组件

1.0.3(2022-01-08)

更新su-list为su-table 调用更简单

1.0.2(2022-01-03)

增加底部版权组件

1.0.1(2022-01-03)

新增分段式长列表 - 解决view标签达上限问题

1.0.0(2021-12-29)

【Add】 su-fab 组件