| | |
| | | <el-table-column property="name" label="任务名称" show-overflow-tooltip /> |
| | | <el-table-column property="regionName" label="所属区域"> |
| | | <template #default="scope"> |
| | | <span>{{scope.row.regionName ? scope.row.regionName :'--'}}</span> |
| | | <span>{{scope.row.city_name ? scope.row.city_name :'--'}}{{scope.row.area_name ? scope.row.area_name :'--'}}</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column property="nickname" label="所属机巢" > |
| | |
| | | const apiParams = { |
| | | ...FolderListParams, |
| | | }; |
| | | console.log('apiParams',apiParams); |
| | | getJobIdsBySnApi(apiParams) |
| | | .then(res => { |
| | | folderList.value = res.data.data.records.map(i => ({ ...i, checked: false })) |
| | |
| | | switchFolders.value = true |
| | | viewDetails.value = false |
| | | jobListParams.current = 1; |
| | | FolderListParams.page = 1; |
| | | FolderListParams.page = 1; |
| | | fetchData(); |
| | | |
| | | } |