inforSign.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. <!-- 安全信息牌 -->
  2. <template>
  3. <view class="examine">
  4. <scroll-view scroll-y @scrolltolower="scrollGet" class="info-max-box">
  5. <view class="basics">
  6. <view class="grade">
  7. <text>责任单位:</text>
  8. <text>环境与测绘学院</text>
  9. </view>
  10. <view class="grade">
  11. <text>实验室负责人:</text>
  12. <text>姓名-13233556655</text>
  13. </view>
  14. <view class="duty">
  15. <view class="duty_l">安全责任人:</view>
  16. <view class="duty_r">
  17. <text>姓名-13233556655</text>
  18. <text>姓名-13233556655</text>
  19. </view>
  20. </view>
  21. </view>
  22. <view class="category">
  23. <view class="title">主要危险类别</view>
  24. <view class="category_li"><text></text><text>火灾</text></view>
  25. <view class="category_li"><text></text><text>火灾盗窃高温化学试剂使用不当引发的燃烧、爆炸等风险室内通风不畅及尾气排放引发的健康风险废液处理不当引发的燃烧、爆炸等风险</text></view>
  26. </view>
  27. <view class="category">
  28. <view class="title">安全警示标识</view>
  29. <view class="identify_img">
  30. <img src="@/images/Version3.3.3/icon_cg.png"/>
  31. <img src="@/images/Version3.3.3/icon_cg.png"/>
  32. <img src="@/images/Version3.3.3/icon_cg.png"/>
  33. <img src="@/images/Version3.3.3/icon_cg.png"/>
  34. <img src="@/images/Version3.3.3/icon_cg.png"/>
  35. <img src="@/images/Version3.3.3/icon_cg.png"/>
  36. </view>
  37. </view>
  38. <view class="category">
  39. <view class="title">紧急报警电话</view>
  40. <view class="telephone_li">设备处:83590983</view>
  41. </view>
  42. </scroll-view>
  43. <view class="bottom_btn" @click="handleClick('start')">开展检查</view>
  44. </view>
  45. </template>
  46. <script>
  47. import { config } from '@/api/request/config.js'
  48. import { getSelectInfoByRoom} from '@/api/index.js'
  49. export default {
  50. name: "rectifyList",
  51. components: {
  52. },
  53. data() {
  54. return {
  55. configURL:config.base_url,
  56. pageType:2,
  57. }
  58. },
  59. onLoad(option) {
  60. },
  61. onShow() {
  62. },
  63. mounted(){
  64. },
  65. methods: {
  66. //滚动事件
  67. scrollGet(){},
  68. handleClick(doType){
  69. let self=this;
  70. if(doType=='start'){//提交
  71. uni.navigateTo({
  72. url: '/pages/pages_safetyExamine/examineManage/examineAdd'
  73. });
  74. }
  75. },
  76. }
  77. }
  78. </script>
  79. <style lang="stylus" scoped>
  80. .examine{
  81. height:100%;
  82. display flex;
  83. box-sizing: border-box;
  84. .info-max-box{
  85. flex: 1;
  86. overflow: scroll;
  87. padding-bottom: 128rpx;
  88. box-sizing: border-box;
  89. }
  90. .basics{
  91. width: 690rpx;
  92. background: #FFFFFF;
  93. border-radius: 20rpx;
  94. padding: 0rpx 30rpx;
  95. box-sizing: border-box;
  96. margin: 20rpx 30rpx ;
  97. .grade{
  98. height: 100rpx;
  99. display: flex;
  100. justify-content: space-between;
  101. border-bottom: 1rpx solid #D8D8D8;
  102. >text:nth-of-type(1){
  103. font-size: 28rpx;
  104. font-family: PingFang SC-Medium, PingFang SC;
  105. font-weight: 400;
  106. color: #333333;
  107. line-height: 100rpx;
  108. }
  109. >text:nth-of-type(2){
  110. flex: 1;
  111. font-size: 28rpx;
  112. font-family: PingFang SC-Medium, PingFang SC;
  113. font-weight: 400;
  114. color: #666666;
  115. line-height: 100rpx;
  116. text-align: right;
  117. }
  118. }
  119. .duty{
  120. display: flex;
  121. justify-content: space-between;
  122. padding: 20rpx 0rpx;
  123. box-sizing: border-box;
  124. .duty_l{
  125. font-size: 28rpx;
  126. font-family: PingFang SC-Medium, PingFang SC;
  127. font-weight: 400;
  128. color: #333333;
  129. line-height: 60rpx;
  130. }
  131. .duty_r{
  132. flex: 1;
  133. >text{
  134. display: block;
  135. font-size: 28rpx;
  136. font-family: PingFang SC-Medium, PingFang SC;
  137. font-weight: 400;
  138. color: #666666;
  139. line-height: 60rpx;
  140. text-align: right;
  141. }
  142. }
  143. }
  144. }
  145. .category{
  146. width: 690rpx;
  147. background: #FFFFFF;
  148. border-radius: 20rpx;
  149. margin: 20rpx 30rpx ;
  150. padding-bottom: 20rpx;
  151. box-sizing: border-box;
  152. .title{
  153. width: 690rpx;
  154. height: 80rpx;
  155. background: #133E93;
  156. border-radius: 10rpx 10rpx 0rpx 0rpx;
  157. font-size: 30rpx;
  158. font-family: PingFang SC-Medium, PingFang SC;
  159. font-weight: 400;
  160. color: #FFFFFF;
  161. line-height: 80rpx;
  162. text-align: center;
  163. margin-bottom:20rpx;
  164. }
  165. .category_li{
  166. margin-left: 34rpx;
  167. display: flex;
  168. justify-content: flex-start;
  169. >text:nth-of-type(1){
  170. display: inline-block;
  171. width: 20rpx;
  172. height: 20rpx;
  173. border-radius: 50%;
  174. background: #D8D8D8;
  175. margin-right: 14rpx;
  176. margin-top: 20rpx;
  177. }
  178. >text:nth-of-type(2){
  179. flex: 1;
  180. font-size: 28rpx;
  181. font-family: PingFang SC-Medium, PingFang SC;
  182. font-weight: 400;
  183. color: #666666;
  184. line-height: 60rpx;
  185. }
  186. }
  187. /* 安全警示标识 */
  188. .identify_img{
  189. display: flex;
  190. justify-content: flex-start;
  191. flex-wrap:wrap;
  192. margin-left: 34rpx;
  193. >img{
  194. width: 67rpx;
  195. height: 90rpx;
  196. margin-right: 24rpx;
  197. margin-bottom: 20rpx;
  198. }
  199. }
  200. /* 紧急报警电话 */
  201. .telephone_li{
  202. flex: 1;
  203. font-size: 28rpx;
  204. font-family: PingFang SC-Medium, PingFang SC;
  205. font-weight: 400;
  206. color: #333333;
  207. line-height: 60rpx;
  208. margin-left: 34rpx;
  209. }
  210. }
  211. /* 待整改 */
  212. .bottom_btn{
  213. position: fixed;
  214. bottom: 26rpx;
  215. left: 30rpx;
  216. font-size: 30rpx;
  217. font-family: PingFang SC-Medium, PingFang SC;
  218. font-weight: 400;
  219. color: #FFFFFF;
  220. line-height: 90rpx;
  221. width: 690rpx;
  222. height: 90rpx;
  223. background: #0183FA;
  224. border-radius: 20rpx;
  225. text-align: center;
  226. }
  227. }
  228. </style>