123456789101112131415161718192021222324252627282930 |
- <template>
- <view class="head-icon" >
- <text @click.stop="activeStatus = !activeStatus" :class="['iconfont' , activeStatus ? 'active-collect' : '']"></text>
- </view>
- </template>
- <script>
- export default {
-
- data() {
- return {
- activeStatus:false
- };
- },
- methods:{
- // getService(){
- // uni.navigateTo({
- // url:'/pages/content/customer-service'
- // })
- // }
- }
- }
- </script>
- <style lang="scss" scoped>
- .active-collect{
- color: $Theme-Color !important;
- }
- </style>
|