v2.2.1 2022-10-24

1.完善抽奖助手子页面
This commit is contained in:
2022-10-24 22:37:52 +08:00
parent 5a3fe8116f
commit b2dd6e7725
13 changed files with 288 additions and 24 deletions
+9 -3
View File
@@ -4,8 +4,8 @@
<view class="classify-cards" v-for="(items,index) in tools" :key="index">
<text class="classify-name" style="margin: 10px auto;">{{items.name}}</text>
<view>
<tcard class="tool-card" v-for="(item,index1) in items.cards" :key="index1" :title="item.title" :detail="item.detail"
:color="item.color" :icon="item.icon" :url="item.url">
<tcard class="tool-card" v-for="(item,index1) in items.cards" :key="index1" :title="item.title"
:detail="item.detail" :color="item.color" :icon="item.icon" :url="item.url">
</tcard>
</view>
</view>
@@ -37,6 +37,12 @@
},
});
},
},
onShareAppMessage() {
return {
title: 'LaiLab工具箱',
path: 'pages/more/more'
}
}
}
</script>
@@ -83,7 +89,7 @@
.tool-card:nth-child(2n-1) {
margin-right: 5%;
}
.tool-card:last-child {
margin-bottom: 0;
}