This commit is contained in:
2026-01-19 12:36:49 +08:00
parent 7d9599b582
commit 51cfee33db
2 changed files with 6 additions and 2 deletions

View File

@@ -137,7 +137,7 @@ export default {
paymentMethods: [
{ id: 1, name: '微信', icon: 'weixin', color: '#07C160' },
{ id: 2, name: '支付宝', icon: 'redo', color: '#1677FF' },
{ id: 3, name: '银行卡', icon: 'bankcard', color: '#FF6B6B' },
{ id: 3, name: '银行卡', icon: 'camera', color: '#FF6B6B' },
{ id: 4, name: '现金', icon: 'wallet', color: '#FFA500' },
{ id: 5, name: '其他', icon: 'more', color: '#999999' }
],

View File

@@ -121,7 +121,7 @@ export default {
paymentMap: {
'微信': { name: '微信', icon: 'weixin', color: '#07C160' },
'支付宝': { name: '支付宝', icon: 'redo', color: '#1677FF' },
'银行卡': { name: '银行卡', icon: 'bankcard', color: '#FF6B6B' },
'银行卡': { name: '银行卡', icon: 'camera', color: '#FF6B6B' },
'现金': { name: '现金', icon: 'wallet', color: '#FFA500' },
'其他': { name: '其他', icon: 'more', color: '#999999' }
}
@@ -318,6 +318,9 @@ export default {
}
.info-section {
display: flex;
flex-direction: column;
gap: 20rpx;
background: #fff;
border-radius: 20rpx;
padding: 30rpx;
@@ -329,6 +332,7 @@ export default {
justify-content: space-between;
align-items: center;
border-bottom: 1rpx solid #f5f5f5;
padding-bottom: 20rpx;
&:last-child {
border-bottom: none;