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.
39 lines
599 B
39 lines
599 B
<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();
|
|
}else if(e.index === 1){
|
|
window.location.reload();
|
|
}
|
|
},
|
|
methods: {}
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
</style>
|
|
|