|  |  |  | 
|---|
|  |  |  | > | 
|---|
|  |  |  | <template #code="{ row }"> | 
|---|
|  |  |  | <el-button | 
|---|
|  |  |  | v-if="row.status === EnumContractTemplateStatus.Completed && !!row.code" | 
|---|
|  |  |  | v-if="row.status === EnumContractTemplateStatus.Completed && !!row.wxmpQrCode" | 
|---|
|  |  |  | link | 
|---|
|  |  |  | type="primary" | 
|---|
|  |  |  | @click="handlePreviewQrcode(row)" | 
|---|
|  |  |  | 
|---|
|  |  |  | createdTime: { type: 'date' }, | 
|---|
|  |  |  | completedTime: { type: 'date' }, | 
|---|
|  |  |  | status: { type: 'enum', valueEnum: EnumContractTemplateStatusText }, | 
|---|
|  |  |  | isAutoSign: { | 
|---|
|  |  |  | formatter: (row: API.GetEnterpriseContractTemplatesQueryResultItem) => | 
|---|
|  |  |  | row.isAutoSign ? '是' : '否', | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | } | 
|---|
|  |  |  | ); | 
|---|