12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <template>
- <span class="zxzx-btn" @click="btnClick">在线咨询</span>
- </template>
- <script>
- export default {
- name: "onlineInformation",
- props: {
- myType: {
- type: String,
- default: '1'
- }
- },
- 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;
- @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>
|