my-order.vue 636 B

12345678910111213141516171819202122232425262728293031323334
  1. <!-- 我的订单 -->
  2. <template>
  3. <view class="">
  4. <text class="yd-quanwen" v-if="isShowAllContent" @click="toggleDescription">全文</text>
  5. <text class="yd-quanwen" v-else @click="toggleDescription">收起</text>
  6. <view class="" v-if="isShowAllContent">
  7. 111
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {
  15. isShowAllContent: false,
  16. }
  17. },
  18. methods: {
  19. toggleDescription: function() {
  20. if (this.isShowAllContent) {
  21. this.isShowAllContent = false
  22. } else {
  23. this.isShowAllContent = true
  24. }
  25. },
  26. }
  27. }
  28. </script>
  29. <style>
  30. </style>