|
@@ -101,7 +101,7 @@
|
|
|
:wrapperCol="BaseTool.Constant.wrapperCol"
|
|
|
>
|
|
|
<a-input
|
|
|
- disabled='disabled'
|
|
|
+ disabled="disabled"
|
|
|
v-decorator="['actualUser', {initialValue: userInfo.realName, rules: [{required: true, message: '报修人不能为空'}]}]"/>
|
|
|
</a-form-item>
|
|
|
</row-item>
|
|
@@ -174,14 +174,14 @@
|
|
|
</a-upload>
|
|
|
</a-form-item>
|
|
|
</row-item>
|
|
|
- <row-item v-show='refusedFlag'>
|
|
|
+ <row-item v-show="refusedFlag">
|
|
|
<a-form-item
|
|
|
label="驳回原因"
|
|
|
:labelCol="BaseTool.Constant.labelCol"
|
|
|
:wrapperCol="BaseTool.Constant.wrapperCol"
|
|
|
>
|
|
|
<a-input
|
|
|
- disabled='disabled'
|
|
|
+ disabled="disabled"
|
|
|
v-decorator="['remark']"/>
|
|
|
</a-form-item>
|
|
|
</row-item>
|
|
@@ -408,6 +408,10 @@ export default {
|
|
|
if (this.BaseTool.String.isBlank(values.id)) {
|
|
|
addRepairApplicationForm(values)
|
|
|
.then(() => {
|
|
|
+ this.$notification.success({
|
|
|
+ message: '报修成功!',
|
|
|
+ duration: 3
|
|
|
+ })
|
|
|
this.handleCancel(values)
|
|
|
}).catch(() => {
|
|
|
this.confirmLoading = false
|