|
|
|
@ -303,9 +303,11 @@ function previewHandler(event: MouseEvent) {
|
|
|
|
|
watch(
|
|
|
|
|
() => [taskStore.activeId],
|
|
|
|
|
() => {
|
|
|
|
|
packageId.value = taskStore.getPackageid
|
|
|
|
|
taskId.value = taskStore.getActiveId
|
|
|
|
|
getDetail()
|
|
|
|
|
if (!isEmpty(taskStore.getActiveId)) {
|
|
|
|
|
packageId.value = taskStore.getPackageid
|
|
|
|
|
taskId.value = taskStore.getActiveId
|
|
|
|
|
getDetail()
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
@ -456,6 +458,9 @@ function reloadList(param, text) {
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="big-mark" />
|
|
|
|
|
<div class="preview" @click="previewHandler">
|
|
|
|
|
<SvgIcon size="16" name="zoom-out" />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="info img-info">
|
|
|
|
|
<n-grid x-gap="12" y-gap="10" :cols="12">
|
|
|
|
|
<n-gi span="4" class="gi1">
|
|
|
|
@ -740,6 +745,22 @@ function reloadList(param, text) {
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
.preview {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 10px;
|
|
|
|
|
top: 10px;
|
|
|
|
|
z-index: 3;
|
|
|
|
|
width: 30px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
background: rgba(255, 255, 255, 0.20);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
backdrop-filter: blur(10px);
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.big-mark{
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 151px;
|
|
|
|
|