1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <template>
- <span class="btn" v-bind="$attrs" @click="btnClick"> 免费试用 </span>
- </template>
- <script>
- export default {
- name: "freeTrialBtn",
- props: {
- myType: {
- type: String,
- default: 'kaoshi'
- }
- },
- methods: {
- isPC() {
- const browserWidth = document.documentElement.clientWidth;
- if (browserWidth <= 768) {
- return false;
- } else {
- return true;
- }
- },
- btnClick() {
- // 执行业务
- this.FreeTrial();
- // 执行通知
- if (this.isPC()) {
- this.$emit('active-pc', this.myType)
- } else {
- this.$emit('active-h5', this.myType)
- }
- },
- FreeTrial() {
- if (!this.isPC()) {
- // H5
- if (this.myType === 'kaoshi') {
- window.open('https://cdnks.mtavip.com/mdist/#/webRegister?flug=1')
- } else {
- window.open('https://cdnks.mtavip.com/mdist/#/webRegister?flug=2')
- }
- } else {
- if (this.myType === 'kaoshi') {
- window.open('https://cdnks.mtavip.com/a/register?flug=1')
- } else {
- window.open('https://cdnks.mtavip.com/a/register?flug=2')
- }
- }
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .btn {
- width: 154px;
- height: 47px;
- background: #00b96b;
- border-radius: 24px;
- padding: 10px 30px;
- color: #fff;
- cursor: pointer;
- }
- </style>
|