adtec-core-package 2.0.2 → 2.0.4

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": "adtec-core-package",
3
- "version": "2.0.2",
3
+ "version": "2.0.4",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "scripts": {
@@ -17,10 +17,10 @@
17
17
  </el-col>
18
18
  </el-row>
19
19
  <el-row>
20
- <el-col :span="24">开始时间:{{ item.createTime }}</el-col>
20
+ <el-col :span="24">开始时间:{{ item.createTime?.substring(0, 19) }}</el-col>
21
21
  </el-row>
22
22
  <el-row v-if="item.finishTime">
23
- <el-col :span="24">结束时间:{{ item.finishTime }}</el-col>
23
+ <el-col :span="24">结束时间:{{ item.finishTime.substring(0, 19) }}</el-col>
24
24
  </el-row>
25
25
  <el-row v-if="item.commentList?.[0]?.fullMessage">
26
26
  <el-col :span="24"
@@ -149,7 +149,7 @@ const open = async (taskVo: IWfTaskVo, type: string, params: ITaskOperate, comme
149
149
  if (type === 'complete') {
150
150
  //同意
151
151
  dialogLabel.value = '审批意见'
152
- dialogTitle.value = '同意审批'
152
+ dialogTitle.value = '流程审批'
153
153
  task.value.comment = task.value.comment ? task.value.comment : '同意。'
154
154
  } else if (type === 'refuse') {
155
155
  //终止
@@ -195,7 +195,7 @@ defineExpose({
195
195
  </el-flex>
196
196
 
197
197
  <span style="display: block; color: #909399" v-if="task.comment">{{
198
- task.finishTime
198
+ task.finishTime?.substring(0, 19)
199
199
  }}</span>
200
200
  </el-flex>
201
201
  </el-flex>