mirror of
https://gitee.com/ZhongBangKeJi/crmeb_java.git
synced 2026-04-26 04:38:34 +08:00
25 lines
445 B
Vue
25 lines
445 B
Vue
<template>
|
|
<div class="divBox">
|
|
<el-card class="box-card">
|
|
<div class="acea-row row-center-wrapper">
|
|
<el-button type="primary" @click="onClick">申请授权</el-button>
|
|
</div>
|
|
</el-card>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "index",
|
|
methods:{
|
|
onClick() {
|
|
window.open('http://crmeb.com/web/auth/apply')
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|