1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <template>
- <a class="zxzx-btn" :href="linkForKefu" target="_blank">在线咨询</a>
- </template>
- <script>
- import {linkForKefu} from "~/defaultConfig"
- export default {
- name: "onlineInformation",
- props: {
- myType: {
- type: String,
- default: '1'
- }
- },
- data() {
- return {
- linkForKefu
- }
- },
- methods: {
- btnClick() {
- this.$router.push({name: 'courseware'});
- }
- },
- }
- </script>
- <style lang="scss">
- .zxzx-btn {
- width: 154px;
- height: 48px;
- line-height: 48px;
- border-radius: 24px;
- border: 1px solid #00b96b;
- cursor: pointer;
- display: inline-block;
- text-align: center;
- color: #00b96b;
- @media (max-width: 768px) {
- width: 44%;height:35px;line-height:35px;max-width: 120px;margin: 0 3%;font-size: 14px;
- }
- }
- .zxzx-btn.shouye {
- height: 55px;
- width: 180px;
- line-height: 55px;
- color: #fff;
- background: #00b96b;
- }
- </style>
|