|  |  |  | 
|---|
|  |  |  | </el-form-item> | 
|---|
|  |  |  | <section> | 
|---|
|  |  |  | <el-button type="primary" @click="search">搜索</el-button> | 
|---|
|  |  |  | <el-button type="primary" :loading="isWorking.export" v-permissions="['business:ywcustomer:exportExcel']" | 
|---|
|  |  |  | @click="exportExcel">导出</el-button> | 
|---|
|  |  |  | <el-button @click="reset">重置</el-button> | 
|---|
|  |  |  | </section> | 
|---|
|  |  |  | </el-form> | 
|---|
|  |  |  | 
|---|
|  |  |  | <el-table-column prop="memberName" label="联系人" min-width="100px"></el-table-column> | 
|---|
|  |  |  | <el-table-column prop="memberPhone" label="联系电话" min-width="100px"></el-table-column> | 
|---|
|  |  |  | <!-- <el-table-column prop="idcardNo" label="身份证号" min-width="100px"></el-table-column> --> | 
|---|
|  |  |  | <el-table-column prop="creditCard" label="统一信用代码" min-width="100px"></el-table-column> | 
|---|
|  |  |  | <el-table-column prop="" label="统一信用代码" min-width="100px"> | 
|---|
|  |  |  | <template v-slot="{row}"> | 
|---|
|  |  |  | <span>{{ row.creditCard || '-' }}</span> | 
|---|
|  |  |  | </template> | 
|---|
|  |  |  | </el-table-column> | 
|---|
|  |  |  | <el-table-column prop="validity" label="营业期限" min-width="100px"> | 
|---|
|  |  |  | <template slot-scope="{row}"> | 
|---|
|  |  |  | <span>{{ row.validity == '2099-12-31' ? '长期' : row.validity }}</span> | 
|---|
|  |  |  | <span>{{ row.validity == '2099-12-31' ? '长期' : row.validity ? row.validity : '-' }}</span> | 
|---|
|  |  |  | </template> | 
|---|
|  |  |  | </el-table-column> | 
|---|
|  |  |  | <el-table-column label="默认发票类型" min-width="100px"> | 
|---|