ZhangXianQiang
2024-04-26 e9f8a9835fbcba98f9d18f1089990f884b20c957
fix:修改核算报告合计问题
2个文件已修改
9 ■■■■■ 已修改文件
src/views/system/calculate/report/index.vue 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
vue.config.js 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/calculate/report/index.vue
@@ -348,18 +348,16 @@
              return prev;
            }
          }, 0);
          sums[index] += ' 元';
          if (column.property === 'score') {
            sums[index] = '-'; // 或者其他你想要显示的内容
            sums[index] = '-';
          }
          if (column.property === 'value') {
            sums[index] = '-'; // 或者其他你想要显示的内容
            sums[index] += '元';
          }
        } else {
          sums[index] = '-';
        }
      });
      return sums;
    },
    toScorePage() {
vue.config.js
@@ -35,9 +35,10 @@
    proxy: {
      // detail: https://cli.vuejs.org/config/#devserver-proxy
      [process.env.VUE_APP_BASE_API]: {
        target: `http://localhost:8080`,
        // target: `http://localhost:8080`,
        // target: `http://192.168.3.64:8080`,
        // target: `http://192.168.3.87:8080`,
        target: `http://192.168.3.88:8085`,
        changeOrigin: true,
        pathRewrite: {
          ['^' + process.env.VUE_APP_BASE_API]: ''