Commit 94594e396930ba0d1be931fc9f89c4cf5a10075d

Authored by 杨鑫
1 parent 16524ddf

'最新'

admin-web-master/src/components/chakan/cd.vue
... ... @@ -135,7 +135,9 @@
135 135 <el-table-column label="适用资源" prop="applicableResources" min-width="100">
136 136 </el-table-column>
137 137 <el-table-column label="经营类型" prop="businessType" min-width="100">
138   -
  138 + <template slot-scope="scope">
  139 + {{scope.row.businessType != ''?scope.row.businessType:'无'}}
  140 + </template>
139 141 </el-table-column>
140 142 <el-table-column label="租金价格" prop="rentalPrice" min-width="150">
141 143 </el-table-column>
... ...
admin-web-master/src/components/resourceCommodity/index.vue
... ... @@ -175,6 +175,9 @@
175 175 </template>
176 176 </el-table-column>
177 177 <el-table-column label="付款周期" prop="leaseTerm">
  178 + <template slot-scope="scope">
  179 + {{scope.row.leaseTerm!=''?scope.row.leaseTerm:'-'}}
  180 + </template>
178 181 </el-table-column>
179 182 <!-- <el-table-column label="付款日" prop="payDay" show-overflow-tooltip></el-table-column> -->
180 183 <!-- <el-table-column label="是否出租" prop="isRental" min-width="100">
... ...
lvdao-miniapp/pages/propertyPay/propertyPayList/propertyPayList.vue
... ... @@ -186,7 +186,7 @@
186 186 num = num + Number(list[n].payPrice)
187 187 }
188 188 }
189   - return num
  189 + return num.toFixed(2)
190 190 },
191 191 allcknum() {
192 192 let num = 0
... ... @@ -198,7 +198,7 @@
198 198 }
199 199 }
200 200 }
201   - return num
  201 + return num.toFixed(2)
202 202 },
203 203 },
204 204 watch: {
... ...