|
@@ -50,8 +50,8 @@
|
|
|
<svg-icon v-if="data.itemName" icon-class="file-bg"/>
|
|
|
<svg-icon v-else-if="data.id == -1" icon-class="groups"/>
|
|
|
<template v-else>
|
|
|
- <svg-icon v-if="data.runState == 1" icon-class="group"/>
|
|
|
- <svg-icon v-else icon-class="group_stop"/>
|
|
|
+ <svg-icon v-if="data.runState == 1" icon-class="green"/>
|
|
|
+ <svg-icon v-else icon-class="red"/>
|
|
|
</template>
|
|
|
<span :title='data.groupName || data.itemName'
|
|
|
style="margin-left: 2px;">{{ data.groupName || data.itemName }}</span>
|
|
@@ -1415,6 +1415,7 @@ export default {
|
|
|
this.itemDataList = JSON.parse(JSON.stringify(data))
|
|
|
this.itemDataListByTree = data
|
|
|
this.itemDataListByTreeF = JSON.parse(JSON.stringify(this.itemDataListByTree))
|
|
|
+ this.dataItemDialogTitle = '选择数据项'
|
|
|
this.dataItemDialogVisible = true
|
|
|
}).catch((e) => {
|
|
|
loading.close()
|
|
@@ -1636,6 +1637,7 @@ export default {
|
|
|
})
|
|
|
return
|
|
|
}
|
|
|
+ this.dataItemDialogTitle = '数据项表达式设置'
|
|
|
let itemList = []
|
|
|
// let itemNameList = this.chooseItemDataListByTree.map(map => { return map.label })
|
|
|
for (let i in this.chooseItemDataListByTree) {
|