提交基础页面

This commit is contained in:
zhoulingpo
2023-04-17 10:31:08 +08:00
parent 4ed0752b86
commit 61e01291fd
12 changed files with 2838 additions and 630 deletions
File diff suppressed because it is too large Load Diff
+62
View File
@@ -0,0 +1,62 @@
<!-- 流程信息公共头部 -->
<template>
<div>
<div class="prc-header-wrap">
<div class="processtitle">{{title}}</div>
<div class="processnum" v-if="proceesNum">流程编号:xcsdsds{{proceesNum}}</div>
</div>
</div>
</template>
<script>
export default {
name: 'ProcessHeader',
mixins: [],
props: {
// 渲染的名称
title: {
type: String,
required: true
},
// 渲染编号
proceesNum: {
type: String,
required: false
}
},
components: {},
data () {
return {
opacityStyle: {},
headerFixed: false
}
},
methods: {
},
computed: {
},
watch: {},
mounted () {
}
}
</script>
<style lang="scss" scoped>
.prc-header-wrap{
display: flex;
justify-content: space-between;
width: 100%;
border-bottom: 1px dotted #ccc;
line-height: 40px;
color: #555;
}
.processtitle{
font-weight: 700;
font-size: 16px;
}
.processnum{
font-size: 13px;
}
</style>