32 lines
864 B
Vue
32 lines
864 B
Vue
<template>
|
|
<div class=" region-cell" @tap="toDetail(item)">
|
|
<div class="region-cell-unit">
|
|
<text>{{item.SERVERPART_NAME}}</text>
|
|
<div class="ct01">
|
|
<text class="strong-text">{{$util.fmoney(item.CASHPAY,2)}}</text>
|
|
<text>元</text>
|
|
</div>
|
|
</div>
|
|
<div class="region-cell-unit">
|
|
<text>上传率</text>
|
|
<div class="ct01">
|
|
<text class="strong-text">{{item.TOTAL_COUNT>0?$util.fmoney((item.UPLOAD_COUNT/item.TOTAL_COUNT)*100,2):100}}</text>
|
|
<text>%</text>
|
|
</div>
|
|
</div>
|
|
<div class="region-cell-unit" :class="{'ct-red':item.UPLOAD_COUNT!=item.TOTAL_COUNT,'weisc-ico':item.UPLOAD_COUNT!=item.TOTAL_COUNT}">
|
|
{{item.UPLOADSTATE}}
|
|
</div>
|
|
<div class="region-cell-image">
|
|
<text class="uni-icon-arrowright uni-icon" :class="{'active':item.show}"></text>
|
|
</div>
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|