|
|
|
@ -19,7 +19,7 @@ const props = defineProps({
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
console.log(props.listItem,'listItem')
|
|
|
|
|
console.log(props.listItem, "listItem");
|
|
|
|
|
const svgName = computed(() => {
|
|
|
|
|
return props.selected ? "taskpack-select" : "taskpack";
|
|
|
|
|
});
|
|
|
|
@ -37,14 +37,18 @@ const svgName = computed(() => {
|
|
|
|
|
>
|
|
|
|
|
{{ listItem.packagename }}
|
|
|
|
|
</span>
|
|
|
|
|
<span class="list-item-header-selected"
|
|
|
|
|
>({{ listItem.pictureno }})</span
|
|
|
|
|
>
|
|
|
|
|
<span class="list-item-header-selected">({{ listItem.pictureno }})</span>
|
|
|
|
|
</div>
|
|
|
|
|
<SvgIcon v-show="selected" size="14" name="more-ver" />
|
|
|
|
|
</div>
|
|
|
|
|
<ul class="list-item-detail" v-else>
|
|
|
|
|
{{ item.name }}:{{ listItem[item.id] }}
|
|
|
|
|
<li>
|
|
|
|
|
{{
|
|
|
|
|
item.name
|
|
|
|
|
}}:{{
|
|
|
|
|
listItem[item.id]
|
|
|
|
|
}}
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- <div class="list-item-header">
|
|
|
|
@ -95,10 +99,15 @@ const svgName = computed(() => {
|
|
|
|
|
margin-left: 36px;
|
|
|
|
|
|
|
|
|
|
li {
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
color: #666666;
|
|
|
|
|
line-height: 18px;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-family: PingFang SC, PingFang SC-Regular;
|
|
|
|
|
font-weight: Regular;
|
|
|
|
|
text-align: left;
|
|
|
|
|
color: #666666;
|
|
|
|
|
line-height: 18px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|