浏览代码

修改合同金额列表

Min 1 年之前
父节点
当前提交
34fc4a074b
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      fhKeeper/formulahousekeeper/timesheet/src/views/project/list.vue

+ 3 - 3
fhKeeper/formulahousekeeper/timesheet/src/views/project/list.vue

@@ -337,9 +337,9 @@
                 </template>
             </el-table-column>
             <!-- 合同金额 -->
-            <el-table-column prop="contractAmount" :label="'合同金额'"  width="200" v-if="user.company.packageProject==1">
-                <template slot-scope="scope">
-                    <span>¥{{scope.row.contractAmount}}</span>
+            <el-table-column prop="contractAmount" :label="'合同金额'"  width="200" v-if="user.company.packageProject==1" align="right">
+                <template slot-scope="scope" >
+                    <span>¥{{Number(scope.row.contractAmount).toFixed(2)}}</span>
                 </template>
             </el-table-column>
             <!-- 供应商 -->