fix
pyt
2025-03-25 13aa1e43391bf3999aaa7a9a4662ade8072275ff
fix
1个文件已修改
12 ■■■■ 已修改文件
src/views/compensation-standard/index.vue 12 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/compensation-standard/index.vue
@@ -425,12 +425,12 @@
      // 更新显示价格
      updateDisplayPrices() {
        this.standardsBefore2014.forEach(row => {
          row.newPrice = row.newPriceNum + '万元/㎡';
          row.secondHandPrice = row.secondHandPriceNum + '万元/㎡';
          row.newPrice = row.newPriceNum * 1 + '万元/㎡';
          row.secondHandPrice = row.secondHandPriceNum * 1 + '万元/㎡';
        });
        this.standardsAfter2014.forEach(row => {
          row.newPrice = row.newPriceNum + '万元/㎡';
          row.secondHandPrice = row.secondHandPriceNum + '万元/㎡';
          row.newPrice = row.newPriceNum * 1 + '万元/㎡';
          row.secondHandPrice = row.secondHandPriceNum * 1 + '万元/㎡';
        });
      },
@@ -633,13 +633,13 @@
      // 处理价格变更
      handlePriceChange(row, field) {
        const numField = field + 'Num';
        row[field] = row[numField].toFixed(6) + '万元/㎡';
        row[field] = (row[numField].toFixed(6) * 1) + '万元/㎡';
      },
      // 处理价格输入框失焦
      handlePriceBlur(row, field) {
        const numField = field + 'Num';
        row[field] = row[numField].toFixed(6) + '万元/㎡';
        row[field] = (row[numField].toFixed(6) * 1) + '万元/㎡';
      }
    }
  };