attachList 文件下载链接

suitUpload

说明

文件下载链接组件,为了满足小程序开发时下载链接展示的样式统一

# 使用

<template>
    <template v-for="item in dataList">
        <list-card :key="item.id" :title="item.title" :rows="cardRows" :info="item" defaultValue="/">
            <view slot="cardBodyLeft" v-if="item.docId" class="attachList">
                <attach-list :docId="item.docId" :key="item.id"></attach-list>
            </view>
        </list-card>
    </template>
</template>
<script>
export default {
	data() {
		return {
			dataList: []
		}
	}
}
</script>

# 参数说明

# 属性

属性 描述 类型 可选值 默认值
label 右边文字提示 String —— 附件:
docId 链接对应文件的id Number | String —— null
showIcon 是否展示链接icon Boolean true、false true

# 组件源码及综合示例参考

组件源码 (opens new window) 综合实例 (opens new window)