| @@ -5,7 +5,7 @@ | |||
| <link rel="icon" type="image/svg+xml" href="/logo_1.jpg" /> | |||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |||
| <title>菊城人才市场后台管理</title> | |||
| <script type="module" crossorigin src="/assets/index-B5q0MWGO.js"></script> | |||
| <script type="module" crossorigin src="/assets/index-Bftge5-K.js"></script> | |||
| <link rel="stylesheet" crossorigin href="/assets/index-DSahY579.css"> | |||
| </head> | |||
| <body> | |||
| @@ -15,6 +15,7 @@ export const cols = <ColType.type[]>[ | |||
| { | |||
| title: '审核状态', | |||
| dataIndex: 'status_txt', | |||
| slots: { customRender: 'status' }, | |||
| }, { | |||
| title: '操作', | |||
| @@ -3,6 +3,10 @@ | |||
| <a-c-operation @refresh="clearData" :need_add="false"></a-c-operation> | |||
| <a-c-table :data="commomParams.table.data" :columns="commomParams.table.columns" :pagination="commomParams.page" | |||
| @page="getPage" :loading="loading"> | |||
| <template #status="{ record }"> | |||
| {{record.status_txt}} | |||
| <span v-if="record.audit_memo">({{record.audit_memo}})</span> | |||
| </template> | |||
| <template #default="{ record }"> | |||
| <a-row :gutter="10"> | |||
| <a-col><a-button type="primary" size="small" primary @click="edit(record)">编辑</a-button></a-col> | |||