|
|
@@ -8,12 +8,12 @@
|
|
|
<view class="work-list">
|
|
|
<view class="cash">现金:¥{{xjInfo.money ? parseFloat(xjInfo.money) : 0}}</view>
|
|
|
<view class="draw">
|
|
|
- <input v-model="drawCash" class="draw-input" type="digit" @focus="drawCash=''" placeholder="提取金额" />
|
|
|
- <text @click="outAmount()" style="margin-left:30upx;">提取</text>
|
|
|
+ <input v-model="drawCash" class="draw-input" type="digit" @focus="drawCash=''" placeholder="金额" />
|
|
|
+ <text @click="outAmount()" style="margin-left:30upx;font-size:34upx;">提取</text>
|
|
|
</view>
|
|
|
<view class="save">
|
|
|
- <input v-model="saveCash" type="digit" class="save-input" @focus="saveCash=''" placeholder="存入金额" />
|
|
|
- <text @click="inAmount()" style="margin-left:30upx;">存入</text>
|
|
|
+ <input v-model="saveCash" type="digit" class="save-input" @focus="saveCash=''" placeholder="金额" />
|
|
|
+ <text @click="inAmount()" style="margin-left:30upx;font-size:34upx;">存入</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
@@ -135,6 +135,7 @@ export default {
|
|
|
margin-left:50upx;
|
|
|
.draw-input{
|
|
|
width:160upx;
|
|
|
+ height:35upx;
|
|
|
border:1upx solid #ccc;
|
|
|
display: inline-block;
|
|
|
text-align: center;
|
|
|
@@ -145,6 +146,7 @@ export default {
|
|
|
margin-left:50upx;
|
|
|
.save-input{
|
|
|
width:160upx;
|
|
|
+ height:35upx;
|
|
|
border:1upx solid #ccc;
|
|
|
display: inline-block;
|
|
|
text-align: center;
|