datasys.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <template>
  2. <view class="container">
  3. <view class="u-m-18">
  4. <u-image width="690" height="300" src="https://xj.chuanghai-tech.com/image/f6ac3cbb2d2d2f29d769cec3b051e05.png"></u-image>
  5. </view>
  6. <view class="tit">宜春市大数据中心</view>
  7. <view class="content">
  8. 宜春市大数据产业集团有限公司(原宜春市大数据产业运营有限公司)成立于2017年11月,是宜春市政府、宜阳新区为建设新城区而组建的国有独资公司,注册资本金1亿元,公司经营范围为:第二类增值电信业务,大数据服务,技术服务、技术开发、技术咨询、技术交流、技术转让、技术推广,数据处理和存储支持服务,信息系统集成服务,计算机软硬件及辅助设备批发,软件开发,园区管理服务,信息咨询服务(不含许可类信息咨询服务),以自有资金从事投资活动,财务咨询,餐饮管理,创业空间服务。
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. // import banner from '@/static/img/banner.png'
  14. export default {
  15. data() {
  16. return {
  17. // banner: banner
  18. }
  19. }
  20. }
  21. </script>
  22. <style>
  23. .container {
  24. display: flex;
  25. flex-direction: column;
  26. align-items: center;
  27. width: 100%;
  28. height: 100%;
  29. }
  30. .tit {
  31. width: 690rpx;
  32. height: 33rpx;
  33. margin: 27rpx 0;
  34. font-size: 32rpx;
  35. font-family: Microsoft YaHei-3970(82674968);
  36. font-weight: bold;
  37. color: #000000;
  38. line-height: 32rpx;
  39. text-align: left;
  40. }
  41. .content {
  42. width: 690rpx;
  43. height: 100%;
  44. font-size: 28rpx;
  45. font-family: Microsoft YaHei-3970(82674968);
  46. font-weight: 400;
  47. color: #333333;
  48. line-height: 40rpx;
  49. text-indent: 50rpx;
  50. }
  51. </style>