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.
40 lines
631 B
40 lines
631 B
2 years ago
|
<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();
|
||
|
}
|
||
|
},
|
||
|
methods: {}
|
||
|
};
|
||
|
</script>
|
||
|
<style scoped lang="scss">
|
||
|
</style>
|