|
|
@@ -18,6 +18,9 @@
|
|
|
<button :class="[confirm == 0 ? 'blue' : 'default']" class="admin-button-com middle" style="margin-left:30upx;" @click="showOrderList(0)">待确认</button>
|
|
|
<button :class="[confirm == 1 ? 'blue' : 'default']" class="admin-button-com middle" style="margin-left:30upx;" @click="showOrderList(1)">已确认</button>
|
|
|
</view>
|
|
|
+ <view class="debt-multi-page-tip" v-if="debtTotalPage > 1">
|
|
|
+ <text class="debt-multi-page-tip__text">注意账单有多页,请翻页查看</text>
|
|
|
+ </view>
|
|
|
<block v-if="!$util.isEmpty(detailsList)">
|
|
|
<DetailsItem v-for="(item, index) in detailsList" :key="index" :info="item" :isEdit="true" :isCheck="item.checked" @click="checkItemEvent" ></DetailsItem>
|
|
|
</block>
|
|
|
@@ -351,6 +354,20 @@ export default {
|
|
|
flex: 1;
|
|
|
padding-bottom: 280upx;
|
|
|
}
|
|
|
+ .debt-multi-page-tip {
|
|
|
+ margin-top: 20upx;
|
|
|
+ margin-bottom: 16upx;
|
|
|
+ padding: 16upx 20upx;
|
|
|
+ background: #fff7e6;
|
|
|
+ border: 1upx solid #ffd591;
|
|
|
+ border-radius: 8upx;
|
|
|
+ }
|
|
|
+ .debt-multi-page-tip__text {
|
|
|
+ font-size: 34upx;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #d48806;
|
|
|
+ line-height: 46upx;
|
|
|
+ }
|
|
|
.bar-view {
|
|
|
position: fixed;
|
|
|
bottom: 0;
|