sasp-flow-render 1.1.10 → 1.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
</el-input>
|
|
20
20
|
</el-form-item>
|
|
21
21
|
<el-form-item label="当前任务" v-if="isShow('pending,processed,flowQuery')">
|
|
22
|
-
<el-select v-model="crud.searchForm.currentNode" filterable clearable style="width: 130px
|
|
22
|
+
<el-select v-model="crud.searchForm.currentNode" filterable clearable :style="{'width': flowIds.includes(',') ? '200px' : '130px'}">
|
|
23
23
|
<el-option v-for="(nodeName,nodeIdStr) in flowNodeNameObj" :key="nodeIdStr" :value="nodeIdStr"
|
|
24
24
|
:label="nodeName"></el-option>
|
|
25
25
|
</el-select>
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
<el-button type="primary" icon="el-icon-document-copy" size="small" round v-if="isShow('pending')"
|
|
83
83
|
@click="openFlowBatchPendingDialog">批量处理
|
|
84
84
|
</el-button>
|
|
85
|
-
<el-button type="warning" icon="el-icon-document-copy" size="small" round v-if="isShow('pending') && getFormDataByDataIds"
|
|
85
|
+
<el-button type="warning" icon="el-icon-document-copy" size="small" round v-if="isShow('pending') && getFormDataByDataIds && flowDefine.openBatch === '1'"
|
|
86
86
|
@click="openFlowBatchPendingDialogNew">快捷处理
|
|
87
87
|
</el-button>
|
|
88
88
|
</el-header>
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
v-if="!isShow('draft')" show-overflow-tooltip :sortable="tabType === 'pending' ? 'custom' : false">
|
|
112
112
|
<template slot-scope="scope">
|
|
113
113
|
{{formatterCurrentNodeName(scope.row)}}
|
|
114
|
-
<span v-if="scope.row.operateStatus == '0' && scope.row.agentType == '0'"
|
|
114
|
+
<span v-if="scope.row.operateStatus == '0' && scope.row.agentType == '0'"></span>
|
|
115
115
|
<span v-if="scope.row.operateStatus == '1'"
|
|
116
116
|
style="color: rgba(14,192,82,1);">(加签)</span>
|
|
117
117
|
<span v-if="scope.row.operateStatus == '3'"
|