Index.vue 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. <script setup>
  2. import { onMounted , ref , reactive} from 'vue';
  3. import { useRoute , useRouter} from"vue-router";
  4. import {apiLogMenu,apiLogList} from '@/api/updateLog';
  5. const MenuList = ref([])
  6. const route = useRoute()
  7. const router = useRouter()
  8. let beforeMounted = ref(false)
  9. let logList = ref([])
  10. let activeMenu = ref('')
  11. let listLoading = ref(false)
  12. function getLogList(dateStr=''){
  13. logList.value=[]
  14. listLoading.value = true
  15. apiLogList({
  16. date_flag:dateStr
  17. }).then(res=>{
  18. if(res.code!==200) return
  19. logList.value = res.data.map(list=>{
  20. list.expand = true
  21. list.list = list.list.map(item=>{
  22. item.expand = true
  23. return item
  24. })
  25. return list
  26. })
  27. listLoading.value = false
  28. })
  29. }
  30. function getLogMenu(){
  31. apiLogMenu().then(res=>{
  32. if(res.code!==200) return
  33. MenuList.value = res.data
  34. })
  35. }
  36. function changeActiveMenu(menu){
  37. activeMenu.value = menu
  38. getLogList(menu)
  39. }
  40. function changeExpand(type,index,itemIndex){
  41. if(type==='list'){
  42. logList.value[index].expand = !logList.value[index].expand
  43. }else{
  44. logList.value[index].list[itemIndex].expand = !logList.value[index].list[itemIndex].expand
  45. }
  46. }
  47. function goHelpDoc(){
  48. //获取url里的商家编码,如果有
  49. //存本地里,跳转帮助文档要用到
  50. const {bus_code} = route.query
  51. bus_code&&localStorage.setItem('bus_code',bus_code)
  52. router.push({
  53. path:'/help/index',
  54. query:{
  55. bus_code:bus_code||''
  56. }
  57. })
  58. }
  59. onMounted(()=>{
  60. getLogMenu()
  61. getLogList()
  62. beforeMounted.value = true
  63. })
  64. </script>
  65. <template>
  66. <div class="update-log-wrap">
  67. <div class="left side">
  68. <div class="menu-title"
  69. :class="{'active':activeMenu===''}"
  70. @click="changeActiveMenu('')">
  71. <strong>更新日志</strong>
  72. </div>
  73. <ul class="menu-list">
  74. <li class="list-item"
  75. v-for="menu in MenuList" :key="menu"
  76. :class="{'active':menu===activeMenu}"
  77. @click="changeActiveMenu(menu)"
  78. >{{menu}}</li>
  79. </ul>
  80. </div>
  81. <div class="right side" v-loading="listLoading">
  82. <div class="log-list-wrap" v-for="(list,index) in logList" :key="list.date_flag">
  83. <h2 class="list-title">{{list.date_flag}}
  84. <el-icon @click="changeExpand('list',index)"
  85. class="icon" :class="{'expand':list.expand}">
  86. <ArrowRight />
  87. </el-icon>
  88. </h2>
  89. <ul class="list" v-show="list.expand">
  90. <li class="list-item" v-for="(item,itemIndex) in list.list" :key="item.version">
  91. <div class="title">
  92. <span>v{{item.version}} 更新日期:{{item.update_date}}</span>
  93. <el-icon @click="changeExpand('item',index,itemIndex)"
  94. class="icon" :class="{'expand':item.expand}">
  95. <ArrowRight />
  96. </el-icon>
  97. </div>
  98. <div class="content" v-html="item.content" v-show="item.expand"></div>
  99. </li>
  100. </ul>
  101. </div>
  102. <div class="nodata" v-if="logList.length===0" style="text-align: center;">
  103. <img src="~@/assets/img/nodata.png" alt="" style="width: 300px;"/>
  104. <p>暂无信息</p>
  105. </div>
  106. </div>
  107. </div>
  108. <!-- 跳转帮助文档的按钮 -->
  109. <Teleport to=".layout-header-other" v-if="beforeMounted">
  110. <div class="update-header-btn" @click="goHelpDoc">
  111. <el-icon color="#FFF">
  112. <QuestionFilled />
  113. </el-icon>
  114. 帮助文档</div>
  115. </Teleport>
  116. </template>
  117. <style scoped lang="scss">
  118. .update-log-wrap{
  119. width:100%;
  120. height:calc(100vh - 60px);
  121. display: flex;
  122. *{
  123. box-sizing: border-box;
  124. }
  125. .left{
  126. width:300px;
  127. border-right: 1px solid #DCDFE6;
  128. padding:30px;
  129. overflow-y: auto;
  130. .menu-title{
  131. margin-bottom: 20px;
  132. cursor: pointer;
  133. &.active{
  134. color: #366EF4;
  135. }
  136. }
  137. .menu-list{
  138. .list-item{
  139. padding:10px;
  140. position:relative;
  141. cursor: pointer;
  142. &:not(:last-child){
  143. margin-bottom: 10px;
  144. }
  145. &:hover{
  146. color: #366EF4;
  147. }
  148. &.active{
  149. background-color: #F2F6FA;
  150. color: #366EF4;
  151. border-radius: 4px;
  152. overflow: hidden;
  153. &::after{
  154. content:'';
  155. position:absolute;
  156. top:0;
  157. bottom:0;
  158. left:0;
  159. width:4px;
  160. background-color: #366EF4;
  161. }
  162. }
  163. }
  164. }
  165. }
  166. .right{
  167. flex: 1;
  168. padding:60px;
  169. user-select: none;
  170. overflow-y: auto;
  171. .list-title,.title{
  172. display: flex;
  173. align-items: center;
  174. gap: 10px;
  175. }
  176. .icon{
  177. cursor: pointer;
  178. vertical-align: middle;
  179. &.expand{
  180. transform: rotate(90deg);
  181. }
  182. }
  183. .list-item{
  184. margin-left: 20px;
  185. margin-bottom: 30px;
  186. position: relative;
  187. &::before,&::after{
  188. content:'';
  189. position:absolute;
  190. }
  191. &::before{
  192. width:4px;
  193. height:4px;
  194. border-radius: 50%;
  195. border:3px solid #366EF4;
  196. top:4px;
  197. left: -20px;
  198. }
  199. &::after{
  200. width:2px;
  201. height:100%;
  202. top:22px;
  203. left:-16px;
  204. background-color: #DCDCDC;
  205. }
  206. }
  207. .content{
  208. opacity: 0.6;
  209. user-select: text;
  210. }
  211. }
  212. }
  213. .update-header-btn{
  214. display: flex;
  215. align-items: center;
  216. cursor: pointer;
  217. gap: 10px;
  218. margin-right: 48px;
  219. .el-icon{
  220. background-color: black;
  221. border-radius: 50%;
  222. }
  223. }
  224. </style>