about.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. <template>
  2. <view class="container">
  3. <view class="tui-flex">
  4. <view class="tui-cube-box">
  5. <image style="width: 100%;height: 100%;" src="../../../../static/images/basic/color.png"></image>
  6. </view>
  7. </view>
  8. <view style="text-align: center;margin-top: 60rpx;">v1.0版本</view>
  9. <view class="tui-content-box">
  10. <tui-list-view >
  11. <tui-list-cell :hover="false" :lineLeft="false">
  12. <view class="tui-goods-title">
  13. <view>开发公司</view>
  14. <view>盛世云智能科技有限公司</view>
  15. </view>
  16. </tui-list-cell>
  17. <tui-list-cell :hover="false" :lineLeft="false">
  18. <view class="tui-goods-title">
  19. <view>邮箱</view>
  20. <view>88888@ssy.com</view>
  21. </view>
  22. </tui-list-cell>
  23. <tui-list-cell :hover="false" :lineLeft="false">
  24. <view class="tui-goods-title">
  25. <view>联系电话</view>
  26. <view>400-222-8888</view>
  27. </view>
  28. </tui-list-cell>
  29. <tui-list-cell :hover="false" :lineLeft="false">
  30. <view class="tui-goods-title">
  31. <view>地址</view>
  32. <view>南宁市青秀区金旺角大酒店</view>
  33. </view>
  34. </tui-list-cell>
  35. </tui-list-view>
  36. </view>
  37. </view>
  38. </template>
  39. <script>
  40. import tuiButton from "@/components/thorui/tui-button/tui-button"
  41. import tuiListView from '@/components/thorui/tui-list-view/tui-list-view';
  42. import tuiListCell from '@/components/thorui/tui-list-cell/tui-list-cell';
  43. import tuiIcon from '@/components/thorui/tui-icon/tui-icon';
  44. import tuiTag from '@/components/thorui/tui-tag/tui-tag';
  45. import tuiBadge from '@/components/thorui/tui-badge/tui-badge';
  46. const thorui = require("@/components/common/tui-clipboard/tui-clipboard.js")
  47. import {
  48. mapState
  49. } from 'vuex'
  50. export default {
  51. components: {
  52. tuiListView,
  53. tuiListCell,
  54. tuiIcon,
  55. tuiTag,
  56. tuiButton,
  57. tuiBadge
  58. },
  59. computed: mapState(['version']),
  60. data() {
  61. return {
  62. }
  63. },
  64. methods: {
  65. copy: function(text,msg) {
  66. const that = this
  67. thorui.getClipboardData(text, (res) => {
  68. // #ifdef H5 || MP-ALIPAY
  69. if (res) {
  70. this.tui.toast(msg)
  71. } else {
  72. this.tui.toast("内容复制失败")
  73. }
  74. // #endif
  75. })
  76. },
  77. log: function() {
  78. uni.navigateTo({
  79. url: '../log/log'
  80. })
  81. }
  82. }
  83. }
  84. </script>
  85. <style>
  86. .container {
  87. box-sizing: border-box;
  88. width: 100%;
  89. background-color: #fff;
  90. }
  91. .tui-goods-title {
  92. width: 100%;
  93. font-size: 28rpx;
  94. display: flex;
  95. align-items: center;
  96. justify-content: space-between;
  97. }
  98. .tui-flex {
  99. display: flex;
  100. align-items: center;
  101. justify-content: center;
  102. padding-top: 40px;
  103. }
  104. .tui-cube-box {
  105. width: 60px;
  106. height: 60px;
  107. position: relative;
  108. -webkit-transform-style: preserve-3d;
  109. transform-style: preserve-3d;
  110. animation: tui-go 4s linear infinite;
  111. z-index: 99;
  112. }
  113. @keyframes tui-go {
  114. 0% {
  115. -webkit-transform: rotateX(0) rotateY(0);
  116. transform: rotateX(0) rotateY(0);
  117. }
  118. 100% {
  119. -webkit-transform: rotateX(360deg) rotateY(360deg);
  120. transform: rotateX(360deg) rotateY(360deg);
  121. }
  122. }
  123. .tui-cube {
  124. width: 60px;
  125. height: 60px;
  126. position: absolute;
  127. display: flex;
  128. align-items: center;
  129. justify-content: center;
  130. padding: 5px;
  131. box-sizing: border-box;
  132. font-size: 24rpx;
  133. color: #fff;
  134. text-align: center;
  135. /* word-break: break-all;
  136. word-wrap: break-word; */
  137. }
  138. .tui-cube-1 {
  139. background-color: #fff;
  140. -webkit-transform: rotateY(90deg) translateZ(-30px);
  141. transform: rotateY(90deg) translateZ(-30px);
  142. color: #333 !important;
  143. }
  144. .tui-cube-2 {
  145. background-color: #8a5966;
  146. -webkit-transform: rotateY(90deg) translateZ(30px);
  147. transform: rotateY(90deg) translateZ(30px);
  148. }
  149. .tui-cube-3 {
  150. background-color: #5c8dff;
  151. -webkit-transform: rotateX(90deg) translateZ(30px);
  152. transform: rotateX(90deg) translateZ(30px);
  153. }
  154. .tui-cube-4 {
  155. background-color: #ed3f14;
  156. -webkit-transform: rotateX(90deg) translateZ(-30px);
  157. transform: rotateX(90deg) translateZ(-30px);
  158. }
  159. .tui-cube-5 {
  160. background-color: #ff7900;
  161. -webkit-transform: translateZ(30px);
  162. transform: translateZ(30px);
  163. }
  164. .tui-cube-6 {
  165. background-color: #19be6b;
  166. -webkit-transform: translateZ(-30px);
  167. transform: translateZ(-30px);
  168. }
  169. .tui-content-box {
  170. width: 100%;
  171. margin-top: 30px;
  172. box-sizing: border-box;
  173. background-color: #fff;
  174. border-radius: 10rpx;
  175. box-shadow: 0 0 10rpx #eee;
  176. }
  177. .tui-content {
  178. color: #333;
  179. font-size: 30rpx;
  180. line-height: 44rpx;
  181. padding: 10rpx 0;
  182. text-align: justify;
  183. }
  184. .tui-content-email {
  185. color: #5677fc !important;
  186. }
  187. .tui-footer {
  188. display: flex;
  189. align-items: center;
  190. padding-top: 30rpx;
  191. }
  192. .tui-applets {
  193. width: 80px;
  194. height: 80px;
  195. display: block;
  196. }
  197. .tui-footer-text {
  198. font-size: 24rpx;
  199. color: #999;
  200. padding-left: 20rpx;
  201. width: 300rpx;
  202. }
  203. </style>