VersionInformation.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. <template>
  2. <el-card class="version-information" shadow="hover">
  3. <template #header>
  4. <vab-icon icon="information-line" />
  5. 信息
  6. <el-tag class="card-header-tag">部署时间:{{ updateTime }}</el-tag>
  7. </template>
  8. <el-scrollbar>
  9. <table class="table">
  10. <tr>
  11. <td>vue</td>
  12. <td>{{ dependencies['vue'] }}</td>
  13. <td>@vue/cli</td>
  14. <td>{{ devDependencies['@vue/cli-service'] }}</td>
  15. </tr>
  16. <tr>
  17. <td>vuex</td>
  18. <td>{{ dependencies['vuex'] }}</td>
  19. <td>vue-router</td>
  20. <td>{{ dependencies['vue-router'] }}</td>
  21. </tr>
  22. <tr>
  23. <td>element-ui</td>
  24. <td>{{ dependencies['element-ui'] }}</td>
  25. <td>axios</td>
  26. <td>{{ dependencies['axios'] }}</td>
  27. </tr>
  28. <tr>
  29. <td>授权渠道</td>
  30. <td colspan="3">
  31. <el-popover trigger="hover" width="400">
  32. <div style="text-align: center">
  33. <el-image
  34. :src="require('@/assets/zfb_699.jpg')"
  35. style="width: 200px"
  36. />
  37. <p style="font-size: 13px">
  38. 付款后加QQ 1204505056
  39. 获取下载权限,是否购买pro填是即可(赠送VIP专属问题解答群,包含PRO详细文档、PRO基础版源码、PRO标准版源码、绑定git后拥有随时克隆及更新权限,拥有完整的登录鉴权和前后端多种配置的动态路由流程,仅限自己及团队使用,源码不得二次出售转卖,恶意分享取消使用资格
  40. )
  41. </p>
  42. </div>
  43. <template #reference>
  44. <a
  45. target="_blank"
  46. href="http://vue-admin-beautiful.com/authorization"
  47. >
  48. <el-button style="margin-left: 10px" type="primary">
  49. PRO付费版本 购买源码 ¥699
  50. </el-button>
  51. </a>
  52. </template>
  53. </el-popover>
  54. <el-popover trigger="hover" width="400">
  55. <div style="text-align: center">
  56. <el-image
  57. :src="require('@/assets/zfb_799.jpg')"
  58. style="width: 200px"
  59. />
  60. <p style="font-size: 13px">
  61. 付款后加QQ 1204505056
  62. 获取下载权限,是否购买pro填是即可(赠送VIP专属问题解答群,包含Plus详细文档、Plus基础版源码、Plus标准版源码、绑定git后拥有随时克隆及更新权限,拥有完整的登录鉴权和前后端多种配置的动态路由流程,仅限自己及团队使用,源码不得二次出售转卖,恶意分享取消使用资格
  63. )
  64. </p>
  65. </div>
  66. <template #reference>
  67. <a
  68. target="_blank"
  69. href="http://vue-admin-beautiful.com/authorization"
  70. >
  71. <el-button style="margin-left: 10px" type="primary">
  72. Plus付费版本 购买源码 ¥799
  73. </el-button>
  74. </a>
  75. </template>
  76. </el-popover>
  77. <el-popover trigger="hover" width="400">
  78. <div style="text-align: center">
  79. <el-image
  80. :src="require('@/assets/zfb_100.jpg')"
  81. style="width: 200px"
  82. />
  83. <p style="font-size: 13px">
  84. 付款后加QQ 1204505056
  85. 获取VIP群加群资格,是否购买VIP填是即可(包含开源版及PRO版技术支持、开源版及PRO版问题解答、开源版详细文档,PRO版用户(已付699)无需购买此项!!!(此项不包含PRO版源码))
  86. </p>
  87. </div>
  88. <template #reference>
  89. <el-button style="margin-left: 10px" type="primary">
  90. 开源版技术支持
  91. </el-button>
  92. </template>
  93. </el-popover>
  94. <a
  95. href="https://github.com/chuzhixin/vue-admin-beautiful/"
  96. target="_blank"
  97. >
  98. <el-button style="margin-left: 10px" type="warning">
  99. 开源免费版
  100. </el-button>
  101. </a>
  102. </td>
  103. </tr>
  104. </table>
  105. </el-scrollbar>
  106. </el-card>
  107. </template>
  108. <script>
  109. import { dependencies, devDependencies } from '../../../../package.json'
  110. export default {
  111. data() {
  112. return {
  113. updateTime: process.env.VUE_APP_UPDATE_TIME,
  114. dependencies,
  115. devDependencies,
  116. }
  117. },
  118. }
  119. </script>
  120. <style lang="scss" scoped>
  121. .version-information {
  122. .table {
  123. width: 100%;
  124. color: #666;
  125. border-collapse: collapse;
  126. background-color: #fff;
  127. td {
  128. position: relative;
  129. padding: 9px 15px;
  130. overflow: hidden;
  131. font-size: 14px;
  132. line-height: 20px;
  133. text-overflow: ellipsis;
  134. white-space: nowrap;
  135. border: 1px solid #e6e6e6;
  136. &:nth-child(odd) {
  137. width: 20%;
  138. text-align: right;
  139. background-color: #f7f7f7;
  140. }
  141. }
  142. }
  143. }
  144. </style>