company.vue 2.1 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. 江西省邮电建设工程有限公司是经建设部审定的电信专业承包壹级企业,我公司现有人数达675人,其中一级建造师17人,工程技术人员和经济管理人员181人,其工程技术及经济管理类人员中高级职称人员共85人、初级职称人员96人、通信项目工程师资格人员16人、通信概预算人数121人、安全员86人、安全技术防范技术员22人、人力资源管理师5人、建设工程项目经理30人、防雷专业施工技术人员5人、防雷专业设计技术人员5人。可直接对外承接通信工程项目,提供工程承包服务,在通信工程施工方面积累了丰富的经验,具备雄厚的技术实力。全公司设有南昌分公司、通信工程分公司5个、4个事业部共11个生产单位。公司注册资本10000万元,公司现拥有“电信工程专业承包壹级”、“通信信息网络系统集成乙级”“建筑智能化三级”“防雷专业设计资质丙级”“防雷专业施工资质丙级”“江西省安全技术防范工程设计、施工三级资质”“对外承包工程资格证书”“中国电信CDMA无线网络优化企业资质证书”共8项资质。
  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>