Commit 554c13af authored by 邓春圆's avatar 邓春圆

我的站内信 国际化报错 bug修复

parent 2cf7ea77
...@@ -105,11 +105,6 @@ ...@@ -105,11 +105,6 @@
<script> <script>
import { getMyInternalMessagePage ,getRedInternalMessage, deleteInternalMessage} from "@/api/system/internalMessage"; import { getMyInternalMessagePage ,getRedInternalMessage, deleteInternalMessage} from "@/api/system/internalMessage";
let type = {
1:this.$t('订单消息'),
2:this.$t('出货消息'),
3:this.$t('提醒消息'),
}
export default { export default {
name: "MyInternalMessage", name: "MyInternalMessage",
data() { data() {
...@@ -144,7 +139,11 @@ export default { ...@@ -144,7 +139,11 @@ export default {
form: {}, form: {},
dialogVisible:false, dialogVisible:false,
publicObj:{}, publicObj:{},
type, type: {
1:this.$t('订单消息'),
2:this.$t('出货消息'),
3:this.$t('提醒消息'),
},
}; };
}, },
computed:{ computed:{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment