12345678910111213141516171819202122232425262728293031323334 |
- <!-- 我的订单 -->
- <template>
- <view class="">
- <text class="yd-quanwen" v-if="isShowAllContent" @click="toggleDescription">全文</text>
- <text class="yd-quanwen" v-else @click="toggleDescription">收起</text>
- <view class="" v-if="isShowAllContent">
- 111
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- isShowAllContent: false,
-
- }
- },
- methods: {
- toggleDescription: function() {
- if (this.isShowAllContent) {
- this.isShowAllContent = false
- } else {
- this.isShowAllContent = true
- }
- },
- }
- }
- </script>
- <style>
- </style>
|