评价需求修改
This commit is contained in:
parent
d5b2125f39
commit
1425e5c635
|
@ -28,38 +28,25 @@
|
||||||
v-for="item in contentList.data"
|
v-for="item in contentList.data"
|
||||||
:key="item.index"
|
:key="item.index"
|
||||||
>
|
>
|
||||||
<div class="content-body-title">
|
|
||||||
<span>
|
|
||||||
申请单号:{{
|
|
||||||
item.applyNumber || item.GUID || item.BSNUM || '--'
|
|
||||||
}}
|
|
||||||
</span>
|
|
||||||
<div></div>
|
|
||||||
</div>
|
|
||||||
<a-tooltip>
|
<a-tooltip>
|
||||||
<template #title>
|
<template #title>
|
||||||
{{ item.system }}
|
{{ item.system }}
|
||||||
</template>
|
</template>
|
||||||
<div class="content-body-title">
|
<div class="content-body-title" style="font-size: 18px">
|
||||||
<span>名称:{{ item.system }}</span>
|
<span>{{ item.system }}</span>
|
||||||
<div></div>
|
<div></div>
|
||||||
</div>
|
</div>
|
||||||
</a-tooltip>
|
</a-tooltip>
|
||||||
<div class="content-body-content">
|
<div class="description">
|
||||||
<p class="content-body-content-son">
|
<span>描述:{{ item.description || '--' }}</span>
|
||||||
审核结果:{{ item.approveStatus }}
|
<div></div>
|
||||||
</p>
|
|
||||||
<div>
|
|
||||||
申请日期:{{
|
|
||||||
item.createDate ||
|
|
||||||
item.startTime ||
|
|
||||||
item.tbsj ||
|
|
||||||
(item.CREATE_TIME &&
|
|
||||||
moment(item.CREATE_TIME.time + 480 * 60 * 1000).format(
|
|
||||||
'YYYY-MM-DD HH:mm:ss'
|
|
||||||
))
|
|
||||||
}}
|
|
||||||
</div>
|
</div>
|
||||||
|
<div class="content-body-content" style="display: flex">
|
||||||
|
<div style="margin-right: 20px">
|
||||||
|
申请日期:{{ item.createDate }}
|
||||||
|
</div>
|
||||||
|
<div style="margin-right: 20px">类型:{{ item.resourceTYpe }}</div>
|
||||||
|
<div>提供单位:{{ item.resourceDept }}</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="button-box">
|
<div class="button-box">
|
||||||
<div class="button" @click="showDetail(item)">查看详情</div>
|
<div class="button" @click="showDetail(item)">查看详情</div>
|
||||||
|
@ -613,6 +600,16 @@
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
.description {
|
||||||
|
min-width: 100px;
|
||||||
|
max-width: 900px;
|
||||||
|
font-size: 14px;
|
||||||
|
height: 40px;
|
||||||
|
overflow: hidden;
|
||||||
|
display: -webkit-box;
|
||||||
|
-webkit-line-clamp: 2;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
}
|
||||||
|
|
||||||
.content-body-content {
|
.content-body-content {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
|
|
Loading…
Reference in New Issue