摘要: 效果: vue代码: 1 created() { 2 if (this.$route.query.app_id) { 3 this.app_id = this.$route.query.app_id; 4 } 5 this.GetSettings(); 6 this.GetByParams(); 7 阅读全文
posted @ 2021-03-13 16:58 小小枝子 阅读(1140) 评论(0) 推荐(0) 编辑
摘要: 1 Init() { 2 GetCUseTItems(this.type).then((res) => { 3 if (res.code == 1) { 4 res.data = JSON.parse(res.data.toString()); 5 res.data.forEach((t) => { 阅读全文
posted @ 2021-03-13 11:40 小小枝子 阅读(404) 评论(0) 推荐(0) 编辑
摘要: vue代码: 1 <template> 2 <div> 3 <div class="main"> 4 <ul> 5 <li 6 v-for="(item, index) in list" 7 :key="index" 8 :class="{ new: item.new }" 9 @click="Op 阅读全文
posted @ 2021-03-13 11:26 小小枝子 阅读(1003) 评论(0) 推荐(0) 编辑