1.动态生成多个uni-Card
2.在每个card下面生成多个actions
3.在每个actions下面生成多个card-actions-item
<template>
<view>
<template>
<view class="container">
<uni-card title="presser" sub-title="7" extra="min:0,max:100" :thumbnail="avatar" @click="onClick">
<view slot="actions" class="card-actions">
<view class="card-actions-item" @click="actionsClick('S')">
<uni-icons type="pengyouquan" size="18" color="#999"></uni-icons>
<h3>SP:</h3><input class="uni-input" type="digit" placeholder="70" value="70" />
</view>
<view class="card-actions-item start-loop" @click="actionsClick('Start')">
<button class="mini-btn" type="warn" size="mini">Open</button>
<button type="default" hover-start-time="20" size="mini">Close</button>
</view>
</view>
</uni-card>
</view>
</template>
</view>
</template>