WechatOwnerService/pages/invoice/invoice.vue
2023-10-17 01:25:11 +08:00

46 lines
820 B
Vue

<template>
<view>
<view class="cu-list menu">
<view class="cu-item arrow" @click="_toPage('/pages/invoice/setting')">
<view class="content">
<text class="cuIcon-mobilefill text-cyan"></text>
<text class="text-grey">发票设置</text>
</view>
<view class="action">
</view>
</view>
<view class="cu-item arrow" @click="_toPage('/pages/invoice/invoiceApply')">
<view class="content">
<text class="cuIcon-warnfill text-cyan"></text>
<text class="text-grey">开票记录</text>
</view>
<view class="action">
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
_toPage: function(_url) {
this.vc.navigateTo({
url: _url
});
},
}
}
</script>
<style>
</style>