|
@@ -38,7 +38,7 @@
|
|
|
<img :src="record.taskIcon" />
|
|
|
</a-avatar>
|
|
|
</template>
|
|
|
- <template #passengerFlowWay="{ record }">
|
|
|
+ <template #categoryCode="{ record }">
|
|
|
<GiCellTag :value="record.categoryCode" :dict="task_type" />
|
|
|
</template>
|
|
|
<template #action="{ record }">
|
|
@@ -80,11 +80,14 @@ const columns: TableInstanceColumns[] = [
|
|
|
align: 'center',
|
|
|
render: ({ rowIndex }) => h('span', {}, rowIndex + 1 + (pagination.current - 1) * pagination.pageSize),
|
|
|
},
|
|
|
+ { title: '任务id', dataIndex: 'id', slotName: 'id', align: 'center', width: 180 },
|
|
|
{ title: '任务图标', dataIndex: 'taskIcon', slotName: 'taskIcon', align: 'center', width: 180 },
|
|
|
{ title: '任务分类', dataIndex: 'categoryCode', slotName: 'categoryCode', align: 'center', width: 180 },
|
|
|
|
|
|
{ title: '名称', dataIndex: 'name', slotName: 'name', align: 'center', width: 180 },
|
|
|
{ title: '金币数量', dataIndex: 'goldCoin', slotName: 'goldCoin', align: 'center', width: 180 },
|
|
|
+ { title: '自动关闭阈值', dataIndex: 'autoCloseThreshold', slotName: 'autoCloseThreshold', align: 'center', width: 180 },
|
|
|
+ { title: '访问次数', dataIndex: 'doneCount', slotName: 'doneCount', align: 'center', width: 180 },
|
|
|
{ title: '创建时间', dataIndex: 'createTime', slotName: 'createTime', align: 'center', width: 180 },
|
|
|
{
|
|
|
title: '操作',
|