company.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. <template>
  2. <view>
  3. <view class="main">
  4. <view class="ms" @click="detail()">
  5. <image src="../../../static/favicon.png" mode="widthFix"></image>
  6. <view class="con">
  7. <view class="mti">广西龙坚贸易有限公司</view>
  8. <view class="address">南宁青秀山航洋城1433</view>
  9. </view>
  10. </view>
  11. </view>
  12. <view class="bos">
  13. <view class="mtitle">公司介绍</view>
  14. <view class="item">淘宝店-有料素材店是一个基于UI界面设计师的素材模板售卖网店,面向设计社区,设计师、平面设计师和创意行业人员,在这里可以买到自己需要或者学习的设计素材,可供于学习使用。</view>
  15. <view class="item">这里是公司介绍信息文字示例,淘宝店-有料素材店是一个基于UI界面设计师的素材模板售卖网店,是要来面向设计社区,设计师、平面设计师和创意行业人员</view>
  16. <view class="rows">
  17. <view class="r50">
  18. <view class="int">
  19. <view class="out">
  20. <image src="../../../static/a1.png" mode="widthFix"></image>
  21. </view>
  22. </view>
  23. </view>
  24. <view class="r50">
  25. <view class="int">
  26. <view class="out">
  27. <image src="../../../static/a1.png" mode="widthFix"></image>
  28. </view>
  29. </view>
  30. </view>
  31. </view>
  32. <view class="mtitle">更多信息</view>
  33. <view class="item b">公司地址:</view>
  34. <view class="item">北京市海淀区银谷大厦某某号楼某</view>
  35. <view class="item b">法定代表人:</view>
  36. <view class="item">杨从</view>
  37. <view class="item b">注册资金:</view>
  38. <view class="item">100万人民币</view>
  39. <view class="item b">公司行业:</view>
  40. <view class="item">传媒</view>
  41. <map style="width: 100%; height: 150px" :latitude="latitude" :longitude="longitude" :markers="covers"></map>
  42. </view>
  43. </view>
  44. </template>
  45. <script>
  46. export default {
  47. data() {
  48. return {
  49. latitude: 39.909,
  50. longitude: 116.39742,
  51. covers: [
  52. {
  53. latitude: 39.909,
  54. longitude: 116.39742,
  55. iconPath: '../../../static/location.png'
  56. },
  57. {
  58. latitude: 39.9,
  59. longitude: 116.39,
  60. iconPath: '../../../static/location.png'
  61. }
  62. ]
  63. };
  64. },
  65. methods: {
  66. detail() {
  67. uni.navigateTo({
  68. url: '/pages/clsd/job/company'
  69. });
  70. }
  71. }
  72. };
  73. </script>
  74. <style lang="scss">
  75. .ms {
  76. overflow: hidden;
  77. .mtitle {
  78. font-weight: bold;
  79. margin-bottom: 10px;
  80. }
  81. image {
  82. float: left;
  83. width: 55px;
  84. height: 55px;
  85. border-radius: 50%;
  86. }
  87. .con {
  88. float: left;
  89. padding-left: 10px;
  90. .mti {
  91. font-weight: bold;
  92. padding-bottom: 5px;
  93. }
  94. .address {
  95. font-size: 14px;
  96. }
  97. }
  98. }
  99. .bos {
  100. background-color: white;
  101. padding: 20px;
  102. border-radius: 25px 25px 0px 0px;
  103. .mtitle {
  104. font-weight: bold;
  105. margin-bottom: 10px;
  106. }
  107. .item {
  108. font-size: 14px;
  109. padding-top: 7px;
  110. }
  111. .b{
  112. font-weight: bold;
  113. }
  114. .rows {
  115. overflow: hidden;
  116. margin-left: -5px;
  117. margin-right: -5px;
  118. margin-top: 15px;
  119. .r50 {
  120. .int {
  121. .out {
  122. padding: 5px;
  123. image{
  124. width: 100%;
  125. border-radius: 5px;
  126. }
  127. }
  128. }
  129. }
  130. }
  131. map {
  132. border-radius: 8px;
  133. overflow: hidden;
  134. margin-top: 15px;
  135. }
  136. }
  137. </style>