Commit 46ede36b authored by 潘自豪's avatar 潘自豪

Merge remote-tracking branch 'origin/ld_databoard_fix' into ld_databoard_fix

parents 31bcfa65 d4158234
<template>
<div>
<div class="ar_nav">
<router-link class="ar_button" to="/ar_bar/company">结算单位</router-link>
<router-link class="ar_button" to="/ar_bar/monthly">开票月份</router-link>
<div class="ar_button" @click="goCompany">结算单位</div>
<div class="ar_button" @click="goMonthly">开票月份</div>
</div>
<router-view style="height: 90%"></router-view>
</div>
......@@ -14,6 +14,14 @@ export default {
data() {
return {}
},
methods: {
goCompany() {
this.$router.push({path: '/ar_bar/company'})
},
goMonthly() {
this.$router.push({path: '/ar_bar/monthly'})
},
}
}
</script>
......@@ -21,6 +29,7 @@ export default {
<style scoped>
.ar_nav {
cursor: pointer;
height: 10%;
width: 100%;
display: flex;
......
<template>
<div class="page">
<div class="head" @click="goIndex">
<div class="head">
<div class="text_left">
<input class="btn" type="button" value="返回上级" v-if="$route.fullPath !== '/index'" @click="goIndex">
<span>{{ currentDate }}</span>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment