adtec-core-package 2.4.7 → 2.4.8
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
|
@@ -265,7 +265,6 @@ defineExpose({
|
|
|
265
265
|
:vertical="true"
|
|
266
266
|
v-for="task in item.tasks"
|
|
267
267
|
:key="task.taskId"
|
|
268
|
-
:style="{border:task.taskId===taskId?'1px solid var(--el-color-primary)':''}"
|
|
269
268
|
style="
|
|
270
269
|
margin-bottom: 5px;
|
|
271
270
|
padding: 5px;
|
|
@@ -273,7 +272,7 @@ defineExpose({
|
|
|
273
272
|
border-radius: 8px;
|
|
274
273
|
background: #f8f8f8;
|
|
275
274
|
"
|
|
276
|
-
:style="{ width: task.taskDefKey === 'tech_approval' ? '100%' : '31%' }"
|
|
275
|
+
:style="{ width: task.taskDefKey === 'tech_approval' ? '100%' : '31%',border:task.taskId===taskId?'1px solid var(--el-color-primary)':'' }"
|
|
277
276
|
>
|
|
278
277
|
<el-flex height="30px" align="center" justify="space-between">
|
|
279
278
|
<el-auto-tool-tip :content="task.assigneeName"> </el-auto-tool-tip>
|