java110 2022-05-17 09:12:19 +08:00
commit 3bc3d4cab9
2 changed files with 7 additions and 6 deletions

View File

@ -5,18 +5,18 @@
<view class="flex text-center"> <view class="flex text-center">
<view class="cu-item flex-sub" :class="item.contractId==curContract.contractId?'text-green cur':''" v-for="(item,index) in contracts" <view class="cu-item flex-sub" :class="item.contractId==curContract.contractId?'text-green cur':''" v-for="(item,index) in contracts"
:key="index" @tap="switchContract(item)" :data-id="index"> :key="index" @tap="switchContract(item)" :data-id="index">
{{item.contractCode}} {{item.contractName}}
</view> </view>
</view> </view>
</scroll-view> </scroll-view>
<scroll-view v-if="contracts.length >4" scroll-x class="bg-white nav" scroll-with-animation scroll-left="true"> <scroll-view v-if="contracts.length >4" scroll-x class="bg-white nav" scroll-with-animation scroll-left="true">
<view class="cu-item flex-sub" :class="item.contractId==curContract.contractId?'text-green cur':''" v-for="(item,index) in contracts" <view class="cu-item flex-sub" :class="item.contractId==curContract.contractId?'text-green cur':''" v-for="(item,index) in contracts"
:key="index" @tap="switchContract(item)" :data-id="index"> :key="index" @tap="switchContract(item)" :data-id="index">
{{item.contractCode}} {{item.contractName}}
</view> </view>
</scroll-view> </scroll-view>
</view> </view>
<view v-if="contracts.length == 1" class="block__title">{{contracts[0].contractCode}}</view> <view v-if="contracts.length == 1" class="block__title">{{contracts[0].contractName}}</view>
<view v-if="contracts.length > 1" class="margin-header-top"></view> <view v-if="contracts.length > 1" class="margin-header-top"></view>
<view v-if="noData == false"> <view v-if="noData == false">
<view class="cu-list menu" v-if="moreContracts.length > 0" v-for="(fee, idx) in moreContracts" :key="idx" :data-item="fee" <view class="cu-list menu" v-if="moreContracts.length > 0" v-for="(fee, idx) in moreContracts" :key="idx" :data-item="fee"
@ -33,11 +33,11 @@
<view v-else> <view v-else>
<no-data-page></no-data-page> <no-data-page></no-data-page>
</view> </view>
<view class=" bg-white border flex justify-end" style="position: fixed;width: 100%; bottom: 0;"> <!-- <view class=" bg-white border flex justify-end" style="position: fixed;width: 100%; bottom: 0;">
<view class="btn-group line-height"> <view class="btn-group line-height">
<button class="cu-btn bg-red shadow-blur lgplus sharp" @click="toContractOweFee()">欠费缴费</button> <button class="cu-btn bg-red shadow-blur lgplus sharp" @click="toContractOweFee()">欠费缴费</button>
</view> </view>
</view> </view> -->
</view> </view>
</template> </template>

View File

@ -69,7 +69,8 @@
objType: this.objType, objType: this.objType,
qaId: this.qaId, qaId: this.qaId,
page: 1, page: 1,
row: 100 row: 100,
objId:''
}) })
.then(_data => { .then(_data => {
_data.data.forEach(item => { _data.data.forEach(item => {