fix: 企标制修订计划管控-审批意见

This commit is contained in:
zyn
2023-11-24 15:14:58 +08:00
parent 2335a6b046
commit b0a53b6d1c
8 changed files with 177 additions and 103 deletions
@@ -0,0 +1,51 @@
<template>
<!--意见-->
<el-form>
<div class="title">{{ title }}</div>
<el-form-item :prop="prop" label-width="0">
<el-input :disabled="disabled"
type="textarea"
:rows="3"
resize="none"
placeholder="请输入意见"
:value="value"
@input="handleChange">
</el-input>
</el-form-item>
</el-form>
</template>
<script>
export default {
name: "ReceiptDescription",
props: {
value: {
type: String,
default: true
},
disabled: {
type: Boolean,
default: false
},
title: {
type: String,
default: '回执说明'
},
prop: {
type: String
}
},
methods: {
handleChange (event) {
this.$emit('input', event)
}
}
}
</script>
<style scoped>
.title {
height: 48px;
line-height: 48px;
}
</style>