开放平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

134 lines
3.3 KiB

  1. <template>
  2. <div class="steps-box">
  3. <div v-for="(item, index) in setpsData" :key="index">
  4. <div class="for-item">
  5. <span class="item-time">{{ item.time }}</span>
  6. <span class="item-yuan" :class="{'itemCotnent-top': index === 0 }"></span>
  7. <span class="item-title">{{ item.title }}</span>
  8. <span style="color: #2f89fc">查看该版本</span>
  9. <span class="item-border"></span>
  10. </div>
  11. <div v-html="item.content" class="item-content" :class="{'itemCotnent-bottom': index === setpsData.length - 1}"></div>
  12. </div>
  13. </div>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. setpsData: [
  20. {
  21. title: "版本:V1.2.0.3212",
  22. content: `工具箱<br />
  23. 优化虚拟定位功能<br />
  24. 优化下载中心下载应用逻辑<br />
  25. 优化投屏工具的稳定性<br />
  26. 修复IPA签名失败和个人签名登录失败的问题<br />
  27. 主程序<br />
  28. 设置界面增加关闭验机选项`,
  29. time: "2020-12-23",
  30. },
  31. {
  32. title: "版本:V1.2.0.31",
  33. content: `工具箱<br />
  34. 优化虚拟定位功能<br />
  35. 优化下载中心下载应用逻辑<br />
  36. 优化投屏工具的稳定性<br />
  37. 修复IPA签名失败和个人签名登录失败的问题<br />
  38. 主程序<br />
  39. 设置界面增加关闭验机选项`,
  40. time: "2020-12-23",
  41. },
  42. {
  43. title: "版本:V1.2.0.31",
  44. content: `工具箱<br />
  45. 优化虚拟定位功能<br />
  46. 优化下载中心下载应用逻辑<br />
  47. 优化投屏工具的稳定性<br />
  48. 修复IPA签名失败和个人签名登录失败的问题<br />
  49. 主程序<br />
  50. 设置界面增加关闭验机选项`,
  51. time: "2020-12-22",
  52. },
  53. {
  54. title: "版本:V1.2.0.31",
  55. content: `工具箱<br />
  56. 优化虚拟定位功能<br />
  57. 优化下载中心下载应用逻辑<br />
  58. 优化投屏工具的稳定性<br />
  59. 修复IPA签名失败和个人签名登录失败的问题<br />
  60. 主程序<br />
  61. 设置界面增加关闭验机选项`,
  62. time: "2020-12-23",
  63. },
  64. {
  65. title: "版本:V1.2.0.32",
  66. content: `工具箱<br />
  67. 优化虚拟定位功能<br />
  68. 优化下载中心下载应用逻辑<br />
  69. 优化投屏工具的稳定性<br />
  70. 修复IPA签名失败和个人签名登录失败的问题<br />
  71. 主程序<br />
  72. 设置界面增加关闭验机选项`,
  73. time: "2020-12-23",
  74. },
  75. ],
  76. };
  77. },
  78. };
  79. </script>
  80. <style lang="scss" scoped>
  81. .steps-box {
  82. display: flex;
  83. flex-flow: column;
  84. font-size: 14px;
  85. .for-item {
  86. display: flex;
  87. align-items: center;
  88. .item-time {
  89. color: #333333;
  90. }
  91. .item-yuan {
  92. margin: 0 18px;
  93. width: 20px;
  94. height: 20px;
  95. background: #f7f8fa;
  96. border: 4px solid #c2cad4;
  97. border-radius: 50%;
  98. }
  99. .itemCotnent-top {
  100. background: #F7F8FA;
  101. border: 4px solid #2F89FC;
  102. }
  103. .item-title {
  104. color: #333333;
  105. margin-right: 10px;
  106. }
  107. .item-border {
  108. border-top: 1px solid #e5e5e5;
  109. width: 100%;
  110. flex: 1;
  111. margin-left: 20px;
  112. }
  113. }
  114. .item-content {
  115. margin-left: 107px;
  116. color: #999999;
  117. font-size: 12px;
  118. line-height: 20px;
  119. border-left: 6px solid #F7F8FA;
  120. padding: 5px 0 30px 25px;
  121. }
  122. .itemCotnent-bottom {
  123. border: none;
  124. }
  125. }
  126. </style>