|
@@ -4,7 +4,7 @@
|
|
|
:title="needRejectReason === true ? '打回原因' : '提示'"
|
|
|
:footer="false"
|
|
|
destroy-on-close
|
|
|
- :width="550"
|
|
|
+ :width="needRejectReason === true ? 550 : 330"
|
|
|
>
|
|
|
<template v-if="needRejectReason === true">
|
|
|
<base-form ref="formRef" :model="model" :items="items" :rules="rules" label-width="72px">
|
|
@@ -16,7 +16,7 @@
|
|
|
|
|
|
<!-- <base-form ref="formRef" :model="model" :items="items" :rules="rules" :label-width="useVW(72)"> -->
|
|
|
<template v-else-if="needRejectReason === false">
|
|
|
- <h3 style="margin-top: 25px; margin-bottom: 40px">确定打回吗?</h3>
|
|
|
+ <h3 style="margin-top: 10px; margin-bottom: 40px">确定打回吗?</h3>
|
|
|
<el-form-item>
|
|
|
<confirm-button @confirm="onSendBack" @cancel="onCancel"></confirm-button>
|
|
|
</el-form-item>
|
|
@@ -92,7 +92,7 @@ const items: any[] = [
|
|
|
labelWidth: '80px',
|
|
|
prop: 'description',
|
|
|
slotType: 'input',
|
|
|
- slot: { type: 'textarea', maxlength: 200, resize: 'none', rows: 6, showWordLimit: true },
|
|
|
+ slot: { type: 'textarea', maxlength: 50, resize: 'none', rows: 6, showWordLimit: true },
|
|
|
},
|
|
|
]
|
|
|
|