company/src/views/enterprise/myPolicy.vue
@@ -116,17 +116,17 @@
                </el-table-column>
                <el-table-column prop="currentFee" label="已产生费用"  align="center">
                    <template slot-scope="{row}">
                      <span>{{row.currentFee!=null?row.currentFee+'元': '-'}}</span>
                      <span>{{row.currentFee!=null?row.currentFee+' 元': '-'}}</span>
                    </template>
                  </el-table-column>
                <el-table-column prop="fee" label="总费用"  align="center">
                  <template slot-scope="{row}">
                    <span>{{row.fee!=null?row.fee+'元': '-'}}</span>
                    <span>{{row.fee!=null?row.fee+' 元': '-'}}</span>
                  </template>
                </el-table-column>
                <el-table-column prop="createDate" label="提交日期"  align="center"min-width="150"></el-table-column>
                <el-table-column prop="startTime" label="投保生效日期"  align="center"min-width="150"></el-table-column>
                <el-table-column prop="endTime" label="投保失效日期"  align="center"min-width="150"></el-table-column>
                <el-table-column prop="createDate" label="提交日期"  align="center" min-width="150"></el-table-column>
                <el-table-column prop="startTime" label="投保生效日期"  align="center" min-width="150"></el-table-column>
                <el-table-column prop="endTime" label="投保失效日期"  align="center" min-width="150"></el-table-column>
                <el-table-column
                    v-if="containPermissions(['business:insuranceapply:update', 'business:insuranceapply:delete'])"
                    label="操作"
@@ -136,8 +136,8 @@
                >
                    <template slot-scope="{row}">
                        <el-button type="text" @click="godetail(row)" v-permissions="['business:insuranceapply:update']">查看详情</el-button>
                        <el-button type="text" @click="$refs.OperaApplyChangeMonthWindow.open('加减保月度费用统计',row)" v-permissions="['business:applychange:query']">加减保费用</el-button>
<!--                        <template v-if="row.statusCollect === 2">-->
                      <!--                        <el-button type="text" @click="$refs.OperaApplyChangeMonthWindow.open('加减保月度费用统计',row)" v-permissions="['business:applychange:query']">加减保费用</el-button>
                                          <template v-if="row.statusCollect === 2">-->
<!--                            <el-button type="text" @click="$refs.additionSubtractionApplication.open('加减保申请', { id: row.id })">加减保申请</el-button>-->
<!--                        </template>-->
                    </template>
@@ -158,7 +158,7 @@
        <!--    加减保申请    -->
        <additionSubtractionApplication ref="additionSubtractionApplication" @success="handlePageChange" />
        <!--    续保弹窗    -->
        <OperaApplyChangeMonthWindow ref="OperaApplyChangeMonthWindow" @success="handlePageChange" />
<!--        <OperaApplyChangeMonthWindow ref="OperaApplyChangeMonthWindow" @success="handlePageChange" />-->
        <renewalInsurance ref="renewalInsurance" @success="handlePageChange" />
    </TableLayout>
</template>
@@ -184,7 +184,7 @@
    OperaInsuranceApplyWindow,
    OperaInsuranceApplyDetails,
    renewalInsurance,
    OperaApplyChangeMonthWindow,
    // OperaApplyChangeMonthWindow,
    additionSubtractionApplication,
    OperaWtbApplyShopWindow
  },