中台集成前台任务新增字段
This commit is contained in:
parent
a0f64edf2e
commit
7c9b0746bc
|
@ -119,6 +119,10 @@ const operationTableColumn= [
|
|||
label: '推送人名称',
|
||||
prop: 'create_user_id',
|
||||
},
|
||||
{
|
||||
label: '任务状态',
|
||||
prop: 'status',
|
||||
},
|
||||
]
|
||||
export default {
|
||||
tableColumnData,
|
||||
|
|
|
@ -160,6 +160,9 @@
|
|||
:tableData="tableData"
|
||||
:funWidth="80"
|
||||
>
|
||||
<template #status="{row}">
|
||||
{{ row.status == 1 ? '执行中' : '执行完成' }}
|
||||
</template>
|
||||
</base-table>
|
||||
</template>
|
||||
|
||||
|
|
|
@ -45,8 +45,8 @@ module.exports = {
|
|||
// target: `http://192.168.2.78:9999`,
|
||||
// target: `http://192.168.2.85:9999`,
|
||||
// target: `http://192.168.2.78:8080`,
|
||||
// target: `http://192.168.2.78:10086`,
|
||||
target: `http://192.168.2.185:10086`,
|
||||
target: `http://192.168.2.78:10086`,
|
||||
// target: `http://192.168.2.185:10086`,
|
||||
// target: `http://192.168.2.83:9999`,
|
||||
// target:'http://127.0.0.1:9999/',
|
||||
changeOrigin: true,
|
||||
|
|
Loading…
Reference in New Issue