中台集成前台任务新增字段

This commit is contained in:
hyt 2024-09-25 16:51:31 +08:00
parent a0f64edf2e
commit 7c9b0746bc
3 changed files with 9 additions and 2 deletions

View File

@ -119,6 +119,10 @@ const operationTableColumn= [
label: '推送人名称', label: '推送人名称',
prop: 'create_user_id', prop: 'create_user_id',
}, },
{
label: '任务状态',
prop: 'status',
},
] ]
export default { export default {
tableColumnData, tableColumnData,

View File

@ -160,6 +160,9 @@
:tableData="tableData" :tableData="tableData"
:funWidth="80" :funWidth="80"
> >
<template #status="{row}">
{{ row.status == 1 ? '执行中' : '执行完成' }}
</template>
</base-table> </base-table>
</template> </template>

View File

@ -45,8 +45,8 @@ module.exports = {
// target: `http://192.168.2.78:9999`, // target: `http://192.168.2.78:9999`,
// target: `http://192.168.2.85:9999`, // target: `http://192.168.2.85:9999`,
// target: `http://192.168.2.78:8080`, // target: `http://192.168.2.78:8080`,
// target: `http://192.168.2.78:10086`, target: `http://192.168.2.78:10086`,
target: `http://192.168.2.185:10086`, // target: `http://192.168.2.185:10086`,
// target: `http://192.168.2.83:9999`, // target: `http://192.168.2.83:9999`,
// target:'http://127.0.0.1:9999/', // target:'http://127.0.0.1:9999/',
changeOrigin: true, changeOrigin: true,