You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
2.9 KiB
111 lines
2.9 KiB
<!-- 变更记录组件 -->
|
|
<template>
|
|
<div class="annex">
|
|
<div class="title flex items-center">
|
|
<div class="title-txt">变更记录</div>
|
|
</div>
|
|
<div class="list">
|
|
<el-steps direction="vertical" class="mt-16px" :space="90">
|
|
<el-step v-for="(item, index) in data.changeRecordList" :key="index">
|
|
<template #icon>
|
|
<slot>
|
|
<Icon color="#9e9e9e"
|
|
:icon="item.type == 1 ? 'ep:document-add' : item.type == 2 ? 'ep:edit' : item.type == 3 ? 'ep:document' : ''"
|
|
class="cursor-pointer" size="20" />
|
|
</slot>
|
|
</template>
|
|
<template #title>
|
|
<slot>
|
|
<span class="color-#9e9e9e font-size-16px time">{{ item.time }}</span>
|
|
</slot>
|
|
</template>
|
|
<template #description>
|
|
<slot>
|
|
<div class="dic color-#303133" v-if="item.type == 1">
|
|
{{ item.name }} <span>创建了</span> 记录
|
|
</div>
|
|
<div class="dic color-#303133" v-else-if="item.type == 2">
|
|
{{ item.name }} <span>修改了</span> 状态
|
|
</div>
|
|
<div class="dic color-#303133" v-else-if="item.type == 3">
|
|
{{ item.name }} <span>添加了</span> 附件
|
|
</div>
|
|
<div class="tips" v-if="item.type == 2">
|
|
<span class="color-#f56c6c" style="text-decoration:line-through">原值</span>><span
|
|
class="color-#67c23a">新值</span>
|
|
</div>
|
|
<div class="file" v-if="item.type == 3">
|
|
<div class="flex mt-8px items-center" v-for="(cur, key) in item.file" :key="key" @click="downFile(cur)">
|
|
<Icon color="#70b6ff" icon="ep:document" size="20" style="display:bloc"/>
|
|
<div class="file-text" type="primary">{{cur.name}}</div>
|
|
</div>
|
|
</div>
|
|
|
|
</slot>
|
|
</template>
|
|
</el-step>
|
|
</el-steps>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import download from '@/utils/download'
|
|
defineComponent({
|
|
name: 'Annex'
|
|
})
|
|
// 接收父组件数据
|
|
const { data } = defineProps({
|
|
data: {
|
|
type: Object,
|
|
required: true
|
|
}
|
|
})
|
|
// 下载文件
|
|
const downFile = (cur)=>{
|
|
download.excel(cur.url, cur.name)
|
|
}
|
|
</script>
|
|
|
|
|
|
<style scoped lang="scss">
|
|
.title {
|
|
border-bottom: 1px solid #dedede;
|
|
justify-content: space-between;
|
|
|
|
.title-txt {
|
|
width: 80px;
|
|
text-align: center;
|
|
color: rgb(63, 158, 255);
|
|
border-bottom: 2px solid rgb(63, 158, 255);
|
|
height: 30px;
|
|
}
|
|
}
|
|
|
|
.time {
|
|
font-weight: normal !important;
|
|
;
|
|
}
|
|
|
|
.dic {
|
|
font-size: 16px;
|
|
|
|
span {
|
|
color: #9e9e9e;
|
|
}
|
|
}
|
|
|
|
.tips {
|
|
font-size: 16px;
|
|
margin-top: 6px;
|
|
}
|
|
.file{
|
|
.file-text{
|
|
margin-left: 6px;
|
|
color: #70b6ff;
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
</style>
|
|
|