w-one.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. <template>
  2. <view>
  3. <view class="inner">
  4. <view class="list_item">
  5. <view class="item" @click="go_w_infolist()">
  6. <view class="left">
  7. <view class="icon">
  8. <image src="./icon/w_1_1.png" mode=""></image>
  9. </view>
  10. <view class="title">
  11. <view class="name">
  12. <text>通知公告</text>
  13. </view>
  14. <view class="tips">
  15. <text>矿内紧急通知</text>
  16. </view>
  17. </view>
  18. </view>
  19. <view class="prev">
  20. <uni-icons type="arrowright"></uni-icons>
  21. </view>
  22. </view>
  23. <view class="item">
  24. <view class="left">
  25. <view class="icon">
  26. <image src="./icon/w_1_2.png" mode=""></image>
  27. </view>
  28. <view class="title">
  29. <view class="name">
  30. <text>待办工作</text>
  31. </view>
  32. <view class="tips">
  33. <text>85条工作事项需处理</text>
  34. </view>
  35. </view>
  36. </view>
  37. <view class="prev">
  38. <uni-icons type="arrowright"></uni-icons>
  39. </view>
  40. </view>
  41. <view class="item" @click="go_Onduty()">
  42. <view class="left">
  43. <view class="icon">
  44. <image src="./icon/w_1_3.png" mode=""></image>
  45. </view>
  46. <view class="title">
  47. <view class="name">
  48. <text>值班信息</text>
  49. </view>
  50. <view class="tips">
  51. <text>值班查询</text>
  52. </view>
  53. </view>
  54. </view>
  55. <view class="prev">
  56. <uni-icons type="arrowright"></uni-icons>
  57. </view>
  58. </view>
  59. <view class="item">
  60. <view class="left">
  61. <view class="icon">
  62. <image src="./icon/w_1_4.png" mode=""></image>
  63. </view>
  64. <view class="title">
  65. <view class="name">
  66. <text>会议安排</text>
  67. </view>
  68. <view class="tips">
  69. <text>近期无会议安排</text>
  70. </view>
  71. </view>
  72. </view>
  73. <view class="prev">
  74. <uni-icons type="arrowright"></uni-icons>
  75. </view>
  76. </view>
  77. <view class="item">
  78. <view class="left">
  79. <view class="icon">
  80. <image src="./icon/w_1_5.png" mode=""></image>
  81. </view>
  82. <view class="title">
  83. <view class="name">
  84. <text>通讯录</text>
  85. </view>
  86. <view class="tips">
  87. <text>全矿人员通讯</text>
  88. </view>
  89. </view>
  90. </view>
  91. <view class="prev">
  92. <uni-icons type="arrowright"></uni-icons>
  93. </view>
  94. </view>
  95. </view>
  96. </view>
  97. </view>
  98. </template>
  99. <script>
  100. export default {
  101. data() {
  102. return {
  103. };
  104. },
  105. methods:{
  106. go_Onduty(){
  107. uni.navigateTo({
  108. url: '../../w-Onduty/w-Onduty',
  109. animationType: 'fade-in',
  110. animationDuration: 200
  111. });
  112. },
  113. go_w_infolist(){
  114. uni.navigateTo({
  115. url: '../../w-infolist/w-infolist',
  116. animationType: 'fade-in',
  117. animationDuration: 200
  118. });
  119. }
  120. }
  121. }
  122. </script>
  123. <style lang="scss">
  124. .inner{
  125. .list_item{
  126. .item{
  127. display: flex;
  128. justify-content: space-between;
  129. width: 750rpx;
  130. height: 144rpx;
  131. background-color: #fff;
  132. margin-bottom: 5rpx;
  133. box-sizing: border-box;
  134. padding-left: 41rpx;
  135. padding-top: 32rpx;
  136. padding-right: 27rpx;
  137. .left{
  138. display: flex;
  139. .icon{
  140. width: 81rpx;
  141. height: 81rpx;
  142. image{
  143. width: 81rpx;
  144. height: 81rpx;
  145. }
  146. }
  147. .title{
  148. margin-left: 31rpx;
  149. .name{
  150. height: 42rpx;
  151. font-size: 29rpx;
  152. font-family: PingFangSC-Medium, PingFang SC;
  153. font-weight: 500;
  154. color: #232627;
  155. line-height: 42rpx;
  156. }
  157. .tips{
  158. height: 39rpx;
  159. font-size: 27rpx;
  160. font-family: PingFangSC-Medium, PingFang SC;
  161. font-weight: 500;
  162. color: #7D7C7C;
  163. line-height: 39rpx;
  164. }
  165. }
  166. }
  167. .prev{
  168. height: 81rpx;
  169. line-height: 81rpx;
  170. }
  171. }
  172. }
  173. }
  174. </style>