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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sasp-flow-render",
3
- "version": "1.1.10",
3
+ "version": "1.1.11",
4
4
  "description": "业务应用支撑平台-智慧流程渲染组件",
5
5
  "scripts": {
6
6
  "build": "vue-cli-service build"
@@ -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'">(正常)</span>
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'"
@@ -3313,7 +3313,7 @@
3313
3313
  }
3314
3314
  });
3315
3315
  }catch (e) {
3316
- // console.log(e);
3316
+ console.log(e);
3317
3317
  result=false;
3318
3318
  }
3319
3319