摘要:
computed: { // 实时搜索数据展示 filterList() { var arr = [] this.caseList.forEach((value) => arr.push(value)) if (this.keyword) { arr = this.caseList.filter(v 阅读全文
摘要:
// 给手续费计算出的金额显示为小数点后2位 count() { return parseFloat((this.poundage / 100 * this.money)).toFixed(2) }, <view class="formalities">{{count()}}<text>(手续费{{ 阅读全文