MrShi
2024-11-13 b496da6315314d9bd048ac2214d8bc95d2f1df02
company/src/views/enterprise/insuranceApply.vue
@@ -73,26 +73,31 @@
                <span>{{row.code ? row.code : '-'}}</span>
              </template>
            </el-table-column>
            <el-table-column prop="insureNum" align="center" label="投保人数"  >
              <template slot-scope="{row}">
                <span>{{(row.insureNum||0)}} 人</span>
              </template>
            </el-table-column>
            <el-table-column prop="guaranteeNum"  align="center" label="在保人数"  >
              <template slot-scope="{row}">
                <span>{{(row.guaranteeNum||0)}} 人</span>
              </template>
            </el-table-column>
<!--            <el-table-column prop="insureNum" align="center" label="投保人数"  >-->
<!--              <template slot-scope="{row}">-->
<!--                <span>{{(row.insureNum||0)}} 人</span>-->
<!--              </template>-->
<!--            </el-table-column>-->
              <el-table-column prop="guaranteeNum"  align="center" label="当前在保人数" width="120">
                  <template slot-scope="{row}">
                      <span>{{(row.guaranteeNum||0)}} 人</span>
                  </template>
              </el-table-column>
            <el-table-column label="投保时长">
              <template slot-scope="{row}">
                <span>{{(row.serviceDays - row.loseEfficacyDays) < 0 ? `-` : (row.serviceDays - row.loseEfficacyDays+'天')}}</span>
              </template>
            </el-table-column>
            <el-table-column prop="currentFee" label="已产生费用"  align="center">
              <template slot-scope="{row}">
                <span>{{row.currentFee!=null?row.currentFee+' 元': '-'}}</span>
              </template>
            </el-table-column>
<!--            <el-table-column prop="currentFee" label="已产生费用"  align="center">-->
<!--              <template slot-scope="{row}">-->
<!--                <span>{{row.currentFee!=null?row.currentFee+' 元': '-'}}</span>-->
<!--              </template>-->
<!--            </el-table-column>-->
              <el-table-column prop="fee" label="批改费用合计"  align="center" width="120">
                  <template slot-scope="{row}">
                      <span>{{row.changeMoney+' 元'}}</span>
                  </template>
              </el-table-column>
            <el-table-column prop="fee" label="总费用"  align="center">
              <template slot-scope="{row}">
                <span>{{row.fee!=null?row.fee+' 元': '-'}}</span>