|
|
@@ -211,7 +211,9 @@ export default {
|
|
|
rules: {},
|
|
|
type: null,
|
|
|
showBox: false,
|
|
|
- boxFormData: {},
|
|
|
+ boxFormData: {
|
|
|
+ name: ''
|
|
|
+ },
|
|
|
collectionOptions: [],
|
|
|
caseStatusOptions: [
|
|
|
{ label: '未审核', value: 'UNDO' },
|
|
|
@@ -268,7 +270,7 @@ export default {
|
|
|
.then(res => {
|
|
|
this.showBox = true;
|
|
|
if (res.bindName) {
|
|
|
- this.boxFormData.name = res.bindName;
|
|
|
+ this.$set(this.boxFormData, 'name', res.bindName);
|
|
|
}
|
|
|
if (res.orderInfoId) {
|
|
|
this.boxFormData.orderInfoId = res.orderInfoId;
|