添加签到页面

This commit is contained in:
2025-04-25 10:50:10 +08:00
parent 3574768aa5
commit d85ec0e861
213 changed files with 2110 additions and 1078 deletions

View File

@ -12,7 +12,7 @@
</view>
</view>
<view>
<u-button shape="circle" :hair-line="false" :customStyle="{backgroundColor: themeColor, color: '#fff', border: 'none', padding: '36rpx'}">签到</u-button>
<u-button shape="circle" :hair-line="false" hover-class="none" :customStyle="{backgroundColor: themeColor, color: '#fff', border: 'none', padding: '36rpx'}" @click="signin">签到</u-button>
</view>
</view>
@ -59,7 +59,7 @@
<view class="text-default xxl">现在点单</view>
<view class="xs text-999">下单更便捷</view>
<view class="u-flex u-row-center">
<u-image :src="cloudPath + 'img/icon_order.png'"width="132" height="133" mode="aspectFit"></u-image>
<u-image :src="cloudPath + 'img/icon_order.png'" width="132" height="133" mode="aspectFit"></u-image>
</view>
</view>
</view>
@ -93,6 +93,12 @@
},
methods: {
// 签到
signin() {
uni.navigateTo({
url: '/pages/signin/signin'
})
}
}
}
</script>