|
@@ -205,13 +205,13 @@
|
|
<el-dialog :close-on-click-modal='false' title="账单" :visible.sync="billShow" width="500px" :before-close="billClose">
|
|
<el-dialog :close-on-click-modal='false' title="账单" :visible.sync="billShow" width="500px" :before-close="billClose">
|
|
<div style="height: 450px" class="bill_css">
|
|
<div style="height: 450px" class="bill_css">
|
|
<div class="user" v-for="(item, index) in billInfo" :key="index">
|
|
<div class="user" v-for="(item, index) in billInfo" :key="index">
|
|
- <div class="flex">
|
|
|
|
- <div>订单编号:{{ item.orderNo }}</div>
|
|
|
|
- <div>{{ item.types }}</div>
|
|
|
|
|
|
+ <div class="flex order">
|
|
|
|
+ <div class="left">订单编号:{{ item.orderNo }}</div>
|
|
|
|
+ <div class="right">{{ item.types }}</div>
|
|
</div>
|
|
</div>
|
|
- <div class="flex">
|
|
|
|
- <div>{{ item.updateDate }}</div>
|
|
|
|
- <div>{{ item.amountMoney }}</div>
|
|
|
|
|
|
+ <div class="flex order">
|
|
|
|
+ <div class="left">{{ item.updateDate }}</div>
|
|
|
|
+ <div class="right">{{ item.amountMoney }} {{item.amountMoney?"元":""}}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div v-show="billInfo.length == 0">暂无账单信息</div>
|
|
<div v-show="billInfo.length == 0">暂无账单信息</div>
|
|
@@ -644,6 +644,7 @@
|
|
this.getList();
|
|
this.getList();
|
|
},
|
|
},
|
|
find() {
|
|
find() {
|
|
|
|
+ this.currentPage = 1
|
|
this.getList();
|
|
this.getList();
|
|
},
|
|
},
|
|
adopt(row) {
|
|
adopt(row) {
|
|
@@ -907,6 +908,17 @@
|
|
width: 100%;
|
|
width: 100%;
|
|
border: 1px solid #f0f1f2;
|
|
border: 1px solid #f0f1f2;
|
|
}
|
|
}
|
|
|
|
+ .order{
|
|
|
|
+ margin-top: 8px;
|
|
|
|
+ display: flex;
|
|
|
|
+ .left,.right{
|
|
|
|
+ width: 50%;
|
|
|
|
+ }
|
|
|
|
+ .right{
|
|
|
|
+ text-align: right;
|
|
|
|
+ margin-right: 20px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
::v-deep .el-table--border .el-table__header th {
|
|
::v-deep .el-table--border .el-table__header th {
|