|
|
|
@ -80,7 +80,7 @@ |
|
|
|
<div class="item" :key="item.processId" v-for="(item, index) in projectProcess" |
|
|
|
:class="[index === 0 ? 'z-on' : '', { 'item-vis': source === 'visiual' }]"> |
|
|
|
<div class="item-row"> |
|
|
|
<template v-if="item.agencyId"> |
|
|
|
<!-- <template v-if="item.agencyId"> |
|
|
|
<div class="name">指派</div> |
|
|
|
</template> |
|
|
|
<template v-if="!item.timeLimit"> |
|
|
|
@ -89,6 +89,10 @@ |
|
|
|
<template v-if="!item.agencyId && item.timeLimit"> |
|
|
|
<div class="name">{{ item.processName }}</div> |
|
|
|
</template> |
|
|
|
<div class="date"> |
|
|
|
{{ item.processTime }} |
|
|
|
</div> --> |
|
|
|
<div class="name">{{ item.processName }}</div> |
|
|
|
<div class="date"> |
|
|
|
{{ item.processTime }} |
|
|
|
</div> |
|
|
|
@ -164,24 +168,24 @@ |
|
|
|
<span class="u-info-title-2">附件/图片:</span> |
|
|
|
<template v-if="item.internalFile && item.internalFile.length > 0" |
|
|
|
v-for="i in item.internalFile"> |
|
|
|
<template v-if="i.type === 'image'"> |
|
|
|
<template v-if="i.attachmentType === 'image'"> |
|
|
|
|
|
|
|
<img :src="i.url" :key="i.url" |
|
|
|
style="width: 150px; height: 150px; padding-right: 10px" |
|
|
|
@click="watchImg(i.url)" /> |
|
|
|
<img :src="i.attachmentUrl" :key="i.attachmentUrl" |
|
|
|
style="width: 50px; height: 50px; padding-right: 10px" |
|
|
|
@click="watchImg(i.attachmentUrl)" /> |
|
|
|
|
|
|
|
</template> |
|
|
|
<template v-if="i.type === 'voice'"> |
|
|
|
<template v-if="i.attachmentType === 'voice'"> |
|
|
|
|
|
|
|
<audio controls> |
|
|
|
<source :src="i.url" type="" :key="i.url" /> |
|
|
|
<source :src="i.attachmentUrl" type="" :key="i.attachmentUrl" /> |
|
|
|
</audio> |
|
|
|
|
|
|
|
</template> |
|
|
|
<template v-if="i.type === 'doc'"> |
|
|
|
<template v-if="i.attachmentType === 'doc'"> |
|
|
|
|
|
|
|
<audio controls> |
|
|
|
<source :src="i.url" type="" :key="i.url" /> |
|
|
|
<source :src="i.attachmentUrl" type="" :key="i.attachmentUrl" /> |
|
|
|
</audio> |
|
|
|
|
|
|
|
</template> |
|
|
|
@ -212,31 +216,31 @@ |
|
|
|
<div class="detail-field">附件/图片:</div> |
|
|
|
<template v-if="item.internalFile && item.internalFile.length > 0" |
|
|
|
v-for="i in item.internalFile"> |
|
|
|
<template v-if="i.type === 'image'"> |
|
|
|
<template v-if="i.attachmentType === 'image'"> |
|
|
|
|
|
|
|
<div |
|
|
|
:class="['m-info-prop', { 'm-info-prop-vis': source === 'visiual' },]"> |
|
|
|
<img :src="i.url" :key="i.url" |
|
|
|
<img :src="i.attachmentUrl" :key="i.attachmentUrl" |
|
|
|
style="width: 50px; height: 50px; padding-right: 10px" |
|
|
|
@click="watchImg(i.url)" /> |
|
|
|
@click="watchImg(i.attachmentUrl)" /> |
|
|
|
</div> |
|
|
|
|
|
|
|
</template> |
|
|
|
<template v-if="i.type === 'voice'"> |
|
|
|
<template v-if="i.attachmentType === 'voice'"> |
|
|
|
|
|
|
|
<div |
|
|
|
:class="['m-info-prop', { 'm-info-prop-vis': source === 'visiual' },]"> |
|
|
|
<audio controls> |
|
|
|
<source :src="i.url" type="" :key="i.url" /> |
|
|
|
<source :src="i.attachmentUrl" type="" :key="i.attachmentUrl" /> |
|
|
|
</audio> |
|
|
|
</div> |
|
|
|
|
|
|
|
</template> |
|
|
|
<template v-if="i.type === 'doc'"> |
|
|
|
<template v-if="i.attachmentType === 'doc'"> |
|
|
|
|
|
|
|
<div |
|
|
|
:class="['m-info-prop', { 'm-info-prop-vis': source === 'visiual' },]"> |
|
|
|
<a :href="i.url">{{ i.name }}</a> |
|
|
|
<a :href="i.attachmentUrl">{{ i.name }}</a> |
|
|
|
</div> |
|
|
|
|
|
|
|
</template> |
|
|
|
|