You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

41 lines
689 B

<template>
<page-meta root-font-size="16px"></page-meta>
<view>
<issue :isByFIFO="false"></issue>
<comMessage ref="comMessage"></comMessage>
</view>
</template>
<script>
import {
goHome
} from '@/common/basic.js';
import issue from './issue.vue';
import comMessage from '@/mycomponents/common/comMessage.vue'
export default {
name: 'issueNoFIFO',
components: {
issue,
comMessage
},
data() {
return {};
},
onShow: function() {
},
//返回首页
onNavigationBarButtonTap(e) {
if (e.index === 0) {
goHome();
}else if(e.index === 1){
window.location.reload();
}
},
methods: {}
};
</script>
<style scoped lang="scss">
</style>