MrShi
2024-03-05 6f1ad9bcb73a415f1d45f1adc6bdeb3e80ddf95f
company/src/views/enterprise/entrustedInvoicing.vue
@@ -18,10 +18,14 @@
                        <span>{{scope.$index + 1}}</span>
                    </template>
                </el-table-column>
                <el-table-column prop="statusInfo" label="状态"></el-table-column>
                <el-table-column prop="statusInfo" label="状态">
                  <template slot-scope="{row}">
                    <span :class="'apply-status'+row.status" >{{row.statusInfo}}</span>
                  </template>
                </el-table-column>
                <el-table-column prop="solutionsName" label="保险方案"></el-table-column>
                <el-table-column prop="code" label="保单号"></el-table-column>
                <el-table-column label="产生费用(元)">
                <el-table-column label="已产生费用(元)">
                    <template slot-scope="{row}">
                        <span>{{row.currentFee}}</span>
                    </template>
@@ -72,7 +76,8 @@
        data () {
            return {
                searchForm: {
                    type: 1
                    type: 1,
                    status: '5,7'
                }
            }
        },