评价需求修改
This commit is contained in:
parent
d5b2125f39
commit
1425e5c635
|
@ -28,38 +28,25 @@
|
|||
v-for="item in contentList.data"
|
||||
:key="item.index"
|
||||
>
|
||||
<div class="content-body-title">
|
||||
<span>
|
||||
申请单号:{{
|
||||
item.applyNumber || item.GUID || item.BSNUM || '--'
|
||||
}}
|
||||
</span>
|
||||
<div></div>
|
||||
</div>
|
||||
<a-tooltip>
|
||||
<template #title>
|
||||
{{ item.system }}
|
||||
</template>
|
||||
<div class="content-body-title">
|
||||
<span>名称:{{ item.system }}</span>
|
||||
<div class="content-body-title" style="font-size: 18px">
|
||||
<span>{{ item.system }}</span>
|
||||
<div></div>
|
||||
</div>
|
||||
</a-tooltip>
|
||||
<div class="content-body-content">
|
||||
<p class="content-body-content-son">
|
||||
审核结果:{{ item.approveStatus }}
|
||||
</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 class="description">
|
||||
<span>描述:{{ item.description || '--' }}</span>
|
||||
<div></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 class="button-box">
|
||||
<div class="button" @click="showDetail(item)">查看详情</div>
|
||||
|
@ -613,6 +600,16 @@
|
|||
text-overflow: ellipsis;
|
||||
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 {
|
||||
margin-top: 10px;
|
||||
|
|
Loading…
Reference in New Issue