|
|
@ -323,6 +323,7 @@ export default {
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
inputType: 'textarea',
|
|
|
|
inputType: 'textarea',
|
|
|
|
|
|
|
|
customClass: 'custom-prompt'
|
|
|
|
}).then(({ value }) => {
|
|
|
|
}).then(({ value }) => {
|
|
|
|
applyBack(this.applyId, value).then(res => {
|
|
|
|
applyBack(this.applyId, value).then(res => {
|
|
|
|
if (res.code === 200){
|
|
|
|
if (res.code === 200){
|
|
|
@ -352,6 +353,13 @@ export default {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
|
|
|
.custom-prompt{
|
|
|
|
|
|
|
|
.el-textarea__inner{
|
|
|
|
|
|
|
|
min-height: 120px !important;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
<style scoped lang="scss">
|
|
|
|
::v-deep .el-dialog--center .el-dialog__body {
|
|
|
|
::v-deep .el-dialog--center .el-dialog__body {
|
|
|
|
padding-bottom: 0;
|
|
|
|
padding-bottom: 0;
|
|
|
@ -360,7 +368,6 @@ export default {
|
|
|
|
::v-deep .el-dialog__footer {
|
|
|
|
::v-deep .el-dialog__footer {
|
|
|
|
padding: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.fullscreen-dialog {
|
|
|
|
.fullscreen-dialog {
|
|
|
|
.el-dialog__wrapper {
|
|
|
|
.el-dialog__wrapper {
|
|
|
|
position: fixed;
|
|
|
|
position: fixed;
|
|
|
@ -371,7 +378,6 @@ export default {
|
|
|
|
z-index: 1000;
|
|
|
|
z-index: 1000;
|
|
|
|
background-color: rgba(0, 0, 0, 0.5); /* 遮罩层透明度 */
|
|
|
|
background-color: rgba(0, 0, 0, 0.5); /* 遮罩层透明度 */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.el-dialog {
|
|
|
|
.el-dialog {
|
|
|
|
width: 100%;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
height: 100%;
|
|
|
|