优化动态单价问题

This commit is contained in:
Your Name 2023-09-15 10:29:55 +08:00
parent a67f90eff9
commit ca59e51665
3 changed files with 33 additions and 2 deletions

View File

@ -43,7 +43,7 @@
<text class="margin-right-xs">房号:{{item.payerObjName}}</text>
</view>
<view class="sub-info-item text-gray text-sm" >
<text class="margin-right-xs">单价:{{item.squarePrice}}</text>
<text class="margin-right-xs">单价:{{item.mwPrice && item.mwPrice>0?item.mwPrice:item.squarePrice}}</text>
</view>
</view>
</view>

View File

@ -703,6 +703,15 @@
}
}
,{
"path" : "pages/car/ownerCar",
"style" :
{
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}
],
"globalStyle": {
"navigationBarTextStyle": "white",

22
pages/car/ownerCar.vue Normal file
View File

@ -0,0 +1,22 @@
<template>
<view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
</style>