mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-11-30 11:17:54 +08:00
* [bugfix]Replace favicon icon with png * Cancel the initial value of the node cache
This commit is contained in:
parent
07a6aec1fc
commit
5bfcdd2af1
@ -109,7 +109,7 @@ const pages = glob.sync(['*/!(_*).html'], { cwd: viewDir }).map(p => {
|
||||
filename: newPagePath || path.join('view', p),
|
||||
template: `${path.join('src/view', p)}`,
|
||||
cache: true,
|
||||
favicon:'./favicon.ico',
|
||||
favicon:'./favicon.png',
|
||||
inject: true,
|
||||
hash: version,
|
||||
chunks: chunks,
|
||||
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
@ -563,7 +563,8 @@
|
||||
cacheTaskInfo({item, fromThis}) {
|
||||
self.cacheTasks(item)
|
||||
},
|
||||
close ({ flag, fromThis }) {
|
||||
close ({ item,flag, fromThis }) {
|
||||
self.addTasks(item)
|
||||
// Edit status does not allow deletion of nodes
|
||||
if (flag) {
|
||||
jsPlumb.remove(id)
|
||||
|
@ -305,6 +305,7 @@
|
||||
description: '',
|
||||
// Node echo data
|
||||
backfillItem: {},
|
||||
cacheBackfillItem: {},
|
||||
// Resource(list)
|
||||
resourcesList: [],
|
||||
successNode: 'success',
|
||||
@ -580,17 +581,34 @@
|
||||
this.isContentBox = false
|
||||
// flag Whether to delete a node this.$destroy()
|
||||
this.$emit('close', {
|
||||
item: {
|
||||
type: this.cacheBackfillItem.type,
|
||||
id: this.cacheBackfillItem.id,
|
||||
name: this.cacheBackfillItem.name,
|
||||
params: this.cacheBackfillItem.params,
|
||||
description: this.cacheBackfillItem.description,
|
||||
runFlag: this.cacheBackfillItem.runFlag,
|
||||
conditionResult: this.cacheBackfillItem.conditionResult,
|
||||
dependence: this.cacheBackfillItem.dependence,
|
||||
maxRetryTimes: this.cacheBackfillItem.maxRetryTimes,
|
||||
retryInterval: this.cacheBackfillItem.retryInterval,
|
||||
timeout: this.cacheBackfillItem.timeout,
|
||||
taskInstancePriority: this.cacheBackfillItem.taskInstancePriority,
|
||||
workerGroup: this.cacheBackfillItem.workerGroup,
|
||||
status: this.cacheBackfillItem.status,
|
||||
branch: this.cacheBackfillItem.branch
|
||||
},
|
||||
flag: flag,
|
||||
fromThis: this
|
||||
})
|
||||
}
|
||||
},
|
||||
},
|
||||
watch: {
|
||||
/**
|
||||
* Watch the item change, cache the value it changes
|
||||
**/
|
||||
_item (val) {
|
||||
this._cacheItem()
|
||||
// this._cacheItem()
|
||||
}
|
||||
},
|
||||
created () {
|
||||
@ -653,6 +671,7 @@
|
||||
} else {
|
||||
this.workerGroup = this.store.state.security.workerGroupsListAll[0].id
|
||||
}
|
||||
this.cacheBackfillItem = o
|
||||
this.isContentBox = true
|
||||
},
|
||||
mounted () {
|
||||
|
@ -32,7 +32,7 @@
|
||||
<span>{{$t('Executor')}}</span>
|
||||
</th>
|
||||
<th scope="col" style="min-width: 70px">
|
||||
<span>{{$t('Node Type')}}</span>
|
||||
<span style="margin-left: 5px">{{$t('Node Type')}}</span>
|
||||
</th>
|
||||
<th scope="col" style="min-width: 30px">
|
||||
<span>{{$t('State')}}</span>
|
||||
@ -73,7 +73,7 @@
|
||||
<span v-if="item.executorName">{{item.executorName}}</span>
|
||||
<span v-else>-</span>
|
||||
</td>
|
||||
<td><span>{{item.taskType}}</span></td>
|
||||
<td><span style="margin-left: 5px">{{item.taskType}}</span></td>
|
||||
<td><span v-html="_rtState(item.state)" style="cursor: pointer;"></span></td>
|
||||
<td>
|
||||
<span v-if="item.submitTime">{{item.submitTime | formatDate}}</span>
|
||||
|
Loading…
Reference in New Issue
Block a user