MrShi
2024-02-23 1e72942aa4848ae4835e7f30bb4adc01f9ce5bdc
company/src/views/enterprise/entrustedInvoicing.vue
@@ -18,7 +18,11 @@
                        <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="产生费用(元)">
@@ -41,7 +45,7 @@
                <el-table-column prop="endTime" label="投保失效日期"></el-table-column>
                <el-table-column label="操作" min-width="180px">
                    <template slot-scope="{row}">
                        <el-button type="text" @click="$refs.entrustmentHistory.open('开票历史', row)">开票历史</el-button>
                        <el-button type="text" @click="$refs.entrustmentHistory.open('开票历史', {...row, determine: 1})">开票历史</el-button>
                    </template>
                </el-table-column>
            </el-table>
@@ -72,7 +76,8 @@
        data () {
            return {
                searchForm: {
                    type: 1
                    type: 1,
                    status: '5,7'
                }
            }
        },