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.
38 lines
541 B
38 lines
541 B
2 years ago
|
<template>
|
||
|
<view class="">
|
||
|
<tjReceipt :isOrderReceipt="true"></tjReceipt>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import tjReceipt from '@/pages/store/tjReceipt.vue'
|
||
|
import {
|
||
|
goHome,
|
||
|
} from '@/common/basic.js';
|
||
|
export default {
|
||
|
name: 'receiptRandom',
|
||
|
components: {
|
||
|
tjReceipt
|
||
|
},
|
||
|
data() {
|
||
|
return {};
|
||
|
},
|
||
|
props: {},
|
||
|
mounted: function() {
|
||
|
|
||
|
},
|
||
|
onLoad() {},
|
||
|
//返回首页
|
||
|
onNavigationBarButtonTap(e) {
|
||
|
if (e.index === 0) {
|
||
|
goHome();
|
||
|
}
|
||
|
},
|
||
|
methods: {}
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
|
||
|
</style>
|