🎈 perf(登陆页面): 调整登陆页面样式
This commit is contained in:
parent
c0d3f61806
commit
aa68e2ae94
@ -65,7 +65,9 @@ page {
|
||||
color: #909090;
|
||||
}
|
||||
&-button {
|
||||
height: 90px;
|
||||
margin-top: 120px;
|
||||
font-size: 32px;
|
||||
}
|
||||
}
|
||||
.isRememberPwd {
|
||||
|
@ -1,3 +1,4 @@
|
||||
import { formatMillionYuan, toDecimal2 } from '@/common/format'
|
||||
import NormalButton from '@/components/normalButton'
|
||||
import { View, Text } from '@tarojs/components'
|
||||
import { memo } from 'react'
|
||||
@ -22,7 +23,9 @@ export default props => {
|
||||
<Text className={styles.moneyText}>预估金额:</Text>
|
||||
<Text className={styles.moneyNumber}>
|
||||
<Text className={styles.unit}>¥</Text>
|
||||
{amount.toFixed(2)}
|
||||
{Number(Number(amount)
|
||||
.toFixed(2))
|
||||
.toLocaleString()}
|
||||
</Text>
|
||||
</View>
|
||||
<View className={styles.bottomRight}>
|
||||
|
@ -52,9 +52,9 @@ const ShoppingCartContainer: FC<InternalContainer> = () => {
|
||||
|
||||
// 管理
|
||||
const onStartToManage = () => {
|
||||
if (isManageStatus) {
|
||||
handleSelectAllCheckbox(false) // 取消全选
|
||||
}
|
||||
// if (isManageStatus) {
|
||||
// handleSelectAllCheckbox(false) // 取消全选
|
||||
// }
|
||||
dispatch({ type: ShoppingDispatchType.UPDATE_MANAGE_STATUS, data: !isManageStatus })
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user