w-mine-services.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. <template>
  2. <view>
  3. <view class="mine">
  4. <view class="title">
  5. <view class="title_icon"></view>
  6. <view class="title_name">
  7. <text>矿区服务</text>
  8. </view>
  9. </view>
  10. <view class="content">
  11. <view class="list_item">
  12. <view class="item" @click="go_salary()">
  13. <view class="item_icon">
  14. <image src="./icon/w_2_1.png" mode=""></image>
  15. </view>
  16. <view class="item_title">
  17. <view class="item_title_name">
  18. <text>工资查询</text>
  19. </view>
  20. <view class="item_title_tips">
  21. <text>查看收入统计</text>
  22. </view>
  23. </view>
  24. </view>
  25. <view class="item" @click="go_invoice()">
  26. <view class="item_icon">
  27. <image src="./icon/w_2_2.png" mode=""></image>
  28. </view>
  29. <view class="item_title">
  30. <view class="item_title_name">
  31. <text>发票助手</text>
  32. </view>
  33. <view class="item_title_tips">
  34. <text>发票收据抬头</text>
  35. </view>
  36. </view>
  37. </view>
  38. <view class="item">
  39. <view class="item_icon">
  40. <image src="./icon/w_2_3.png" mode=""></image>
  41. </view>
  42. <view class="item_title">
  43. <view class="item_title_name">
  44. <text>劳保发放</text>
  45. </view>
  46. <view class="item_title_tips">
  47. <text>劳保发放记录</text>
  48. </view>
  49. </view>
  50. </view>
  51. <view class="item">
  52. <view class="item_icon">
  53. <image src="./icon/w_2_4.png" mode=""></image>
  54. </view>
  55. <view class="item_title">
  56. <view class="item_title_name">
  57. <text>生活圈</text>
  58. </view>
  59. <view class="item_title_tips">
  60. <text>煤矿朋友圈</text>
  61. </view>
  62. </view>
  63. </view>
  64. <view class="item">
  65. <view class="item_icon">
  66. <image src="./icon/w_2_5.png" mode=""></image>
  67. </view>
  68. <view class="item_title">
  69. <view class="item_title_name">
  70. <text>小助手</text>
  71. </view>
  72. <view class="item_title_tips">
  73. <text>系统问题建议</text>
  74. </view>
  75. </view>
  76. </view>
  77. </view>
  78. </view>
  79. </view>
  80. </view>
  81. </template>
  82. <script>
  83. export default {
  84. data() {
  85. return {
  86. };
  87. },
  88. methods:{
  89. go_invoice(){
  90. uni.navigateTo({
  91. url: '../../w-invoice/w-invoice',
  92. })
  93. },
  94. go_salary(){
  95. uni.navigateTo({
  96. url: '../../w-salary/w-salary',
  97. })
  98. }
  99. }
  100. }
  101. </script>
  102. <style lang="scss">
  103. .mine{
  104. margin-top: 10rpx;
  105. background-color: #fff;
  106. box-sizing: border-box;
  107. padding-top: 31rpx;
  108. padding-left: 43rpx;
  109. .title{
  110. display: flex;
  111. height: 50rpx;
  112. margin-bottom: 18rpx;
  113. .title_icon{
  114. width: 56rpx;
  115. height: 50rpx;
  116. background-image: url(icon/section2.png);
  117. background-size: cover;
  118. background-repeat: no-repeat;
  119. }
  120. .title_name{
  121. margin-left: 21rpx;
  122. height: 47rpx;
  123. font-size: 33rpx;
  124. font-family: PingFangSC-Medium, PingFang SC;
  125. font-weight: 500;
  126. color: #232627;
  127. line-height: 47rpx;
  128. }
  129. }
  130. .content{
  131. box-sizing: border-box;
  132. .list_item{
  133. display: flex;
  134. flex-wrap: wrap;
  135. justify-content: space-between;
  136. .item{
  137. box-sizing: border-box;
  138. padding: 29rpx 0;
  139. display: flex;
  140. .item_icon{
  141. width: 85rpx;
  142. height: 85rpx;
  143. image{
  144. width: 85rpx;
  145. height: 85rpx;
  146. }
  147. }
  148. .item_title{
  149. margin-left: 29rpx;
  150. border-right: 2rpx solid #e8e8e8;
  151. .item_title_name{
  152. height: 44rpx;
  153. font-size: 31rpx;
  154. font-family: PingFangSC-Medium, PingFang SC;
  155. font-weight: 500;
  156. color: #232627;
  157. line-height: 44rpx;
  158. }
  159. .item_title_tips{
  160. width: 221rpx;
  161. height: 42rpx;
  162. font-size: 29rpx;
  163. font-family: PingFangSC-Medium, PingFang SC;
  164. font-weight: 500;
  165. color: #7D7C7C;
  166. line-height: 42rpx;
  167. }
  168. }
  169. }
  170. .item .item_title:nth-child(2n){
  171. // border-right: none;
  172. }
  173. }
  174. }
  175. }
  176. </style>