mirror of
https://gitee.com/java110/WechatOwnerService.git
synced 2026-02-23 21:36:38 +08:00
46 lines
820 B
Vue
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>
|