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