|
|
@@ -48,9 +48,9 @@
|
|
|
<view class="finance-label">账户余额(元)</view>
|
|
|
<view class="finance-amount">¥{{ moneyFormat(myInfo.balance) }}</view>
|
|
|
<view class="finance-actions">
|
|
|
- <view class="pill-btn" @click="pageTo({ url: '/pagesStore/me/shopYeChange' })">变动明细</view>
|
|
|
+ <view class="pill-btn" @click="pageTo({ url: '/pagesStore/me/shopYeChange' })">明细</view>
|
|
|
<view class="pill-btn" @click="pageTo({ url: '/pagesStore/me/withdraw' })">提现记录</view>
|
|
|
- <view class="pill-btn pill-btn-solid" v-if="Number(myInfo.txBalance) > 0" @click="checkToApplyCash">提现</view>
|
|
|
+ <view class="pill-btn" v-if="Number(myInfo.txBalance) > 0" @click="checkToApplyCash">提现</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
@@ -60,7 +60,7 @@
|
|
|
<view class="finance-label">现金(元)</view>
|
|
|
<view class="finance-amount">¥{{ moneyFormat(myInfo.money) }}</view>
|
|
|
<view class="finance-actions">
|
|
|
- <view class="pill-btn" @click="pageTo({ url: '/admin/home/moneyChangeList' })">变动明细</view>
|
|
|
+ <view class="pill-btn" @click="pageTo({ url: '/admin/home/moneyChangeList' })">明细</view>
|
|
|
<view class="pill-btn" @click="outAmountFn">取出</view>
|
|
|
<view class="pill-btn" @click="inAmountFn">存入</view>
|
|
|
</view>
|
|
|
@@ -783,19 +783,20 @@ export default {
|
|
|
font-weight: 800;
|
|
|
}
|
|
|
|
|
|
-.cash-col .finance-actions {
|
|
|
+.finance-col .finance-actions {
|
|
|
flex-wrap: nowrap;
|
|
|
justify-content: space-between;
|
|
|
margin-bottom: 0;
|
|
|
}
|
|
|
|
|
|
-.cash-col .pill-btn {
|
|
|
+.finance-col .pill-btn {
|
|
|
min-width: 0;
|
|
|
height: 46upx;
|
|
|
padding: 0 12upx;
|
|
|
margin-right: 0;
|
|
|
margin-bottom: 0;
|
|
|
font-size: 22upx;
|
|
|
+ white-space: nowrap;
|
|
|
}
|
|
|
|
|
|
.finance-actions {
|
|
|
@@ -812,10 +813,6 @@ export default {
|
|
|
margin-bottom: 0;
|
|
|
}
|
|
|
|
|
|
-.finance-col:not(.cash-col) .finance-actions .pill-btn {
|
|
|
- font-size: 24upx;
|
|
|
-}
|
|
|
-
|
|
|
.pill-btn {
|
|
|
min-width: 108upx;
|
|
|
height: 50upx;
|