|
|
@ -55,7 +55,7 @@ |
|
|
|
</el-select> |
|
|
|
</el-select> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</m-list-box-f> |
|
|
|
</m-list-box-f> |
|
|
|
<div class="alertForm"> |
|
|
|
<div class="alertForm"> |
|
|
|
<template> |
|
|
|
<template> |
|
|
|
<form-create v-model="$f" :rule="rule" :option="{submitBtn:false}" size="mini"></form-create> |
|
|
|
<form-create v-model="$f" :rule="rule" :option="{submitBtn:false}" size="mini"></form-create> |
|
|
|
</template> |
|
|
|
</template> |
|
|
@ -127,6 +127,10 @@ |
|
|
|
if (item.title.indexOf('$t') !== -1) { |
|
|
|
if (item.title.indexOf('$t') !== -1) { |
|
|
|
item.title = this.$t(item.field) |
|
|
|
item.title = this.$t(item.field) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// fix null pointer exception |
|
|
|
|
|
|
|
if (!item.props) { |
|
|
|
|
|
|
|
item.props = {} |
|
|
|
|
|
|
|
} |
|
|
|
}) |
|
|
|
}) |
|
|
|
}).catch(e => { |
|
|
|
}).catch(e => { |
|
|
|
this.$message.error(e.msg || '') |
|
|
|
this.$message.error(e.msg || '') |
|
|
|