49 lines
892 B
Plaintext
49 lines
892 B
Plaintext
<template>
|
|
<div class="comment-info">
|
|
<el-form :model="statusList" class="demo-form-inline" size="small">
|
|
<el-form-item label="Comment:">
|
|
<el-input
|
|
v-model="statusList.AdminComment"
|
|
type="textarea"
|
|
autosize
|
|
readonly
|
|
/>
|
|
</el-form-item>
|
|
</el-form>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
|
|
export default {
|
|
props: {
|
|
statusList: {
|
|
type: Object,
|
|
default() {
|
|
return {}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.comment-info{
|
|
padding:5px 15px;
|
|
font-size:13px;
|
|
.el-form-item--mini.el-form-item{
|
|
margin-bottom: 0px;
|
|
}
|
|
.el-form-item--small.el-form-item{
|
|
margin-bottom: 0px;
|
|
}
|
|
.el-form-item__content{
|
|
font-size: 13px;
|
|
}
|
|
.el-form-item__label{
|
|
font-size: 13px;
|
|
color: #303133;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
</style>
|