Task.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  1. <template>
  2. <view class="content">
  3. <cu-custom bgColor="bg-blacks" :isBack="false">
  4. <block slot="right"><image src="../../static/picture/fourLine.png" style="width: 30px;height: 30px;margin-left: 2%;" @tap="openDrawer"></image></block>
  5. <block slot="right">
  6. <view class="icon cuIcon-notice text-white" v-if="badge != 0" style="margin-left: -70%;">
  7. <view class="cu-tag looknumber" style="margin-top: -2%;">
  8. <block v-if="badge != 1">{{ badge > 99 ? '99+' : badge }}</block>
  9. </view>
  10. </view>
  11. </block>
  12. <block slot="right"></block>
  13. <block slot="content">{{ address }}</block>
  14. <block slot="right"><view class="plus" @tap="showModal" data-target="viewModal">+</view></block>
  15. </cu-custom>
  16. <!-- 抽屉组件 -->
  17. <div><drawer ref="drawer"></drawer></div>
  18. <div class="plusDrawer" @tap="hideModal"><plusDrawer ref="plusDrawer"></plusDrawer></div>
  19. <scroll-view @tap="hideModal" scroll-y class="DrawerPage" :class="modalName == 'viewModal' ? 'show' : ''">
  20. <!-- 任务组件 -->
  21. <view class="taskcard solid">
  22. <view class="tasktab" @tap="common.navTo('/components/task/taskCard/taskCard?taskName=' + taskName)"><view class="cu-tag" :class="'line-white'">任务一</view></view>
  23. <view class="taskcontent solids-bottom flex align-center" style="color: #FFFFFF;" @tap="common.navTo('/components/task/taskCard/taskCard?taskName=' + taskName)">
  24. <view class="flex-subs text-center"><view class="padding">用于摘要或阅读文本页面默认字号</view></view>
  25. </view>
  26. <view class="taskbutton align-center padding">
  27. <button class="cu-btn ">确认</button>
  28. <button class="cu-btn ">取消</button>
  29. </view>
  30. </view>
  31. <!-- 任务组件 -->
  32. <view class="taskcard solid">
  33. <view class="tasktab" @tap="common.navTo('/components/task/taskCard/taskCard?taskName=' + taskName)"><view class="cu-tag" :class="'line-white'">任务二</view></view>
  34. <view class="taskcontent solids-bottom flex align-center" style="color: #FFFFFF;" @tap="common.navTo('/components/task/taskCard/taskCard?taskName=' + taskName)">
  35. <view class="flex-subs text-center"><view class="padding">用于摘要或阅读文本页面默认字号</view></view>
  36. </view>
  37. <view class="taskbutton align-center padding">
  38. <button class="cu-btn ">确认</button>
  39. <button class="cu-btn ">取消</button>
  40. </view>
  41. </view>
  42. </scroll-view>
  43. </view>
  44. </template>
  45. <script>
  46. import res from '../../common/data.json';
  47. import drawer from '../../components/drawer/threeLineDrawer.vue';
  48. import plusDrawer from '../../components/drawer/plusDrawer.vue';
  49. export default {
  50. components: {
  51. drawer: drawer,
  52. plusDrawer: plusDrawer
  53. },
  54. data: function() {
  55. return {
  56. taskName: '任务',
  57. badge: 22,
  58. inconList: ['form', 'favor', 'question', 'edit'],
  59. modalName: null,
  60. address: '宁夏新能源公司',
  61. drawerList: [
  62. {
  63. name: '首页'
  64. },
  65. {
  66. name: '状态监视'
  67. },
  68. {
  69. name: '矩阵监视'
  70. },
  71. {
  72. name: '风场监视'
  73. },
  74. {
  75. name: '人员监视'
  76. }
  77. ],
  78. plusDrawerList: [
  79. {
  80. name: '宁夏新能源公司',
  81. windPowerStationId: 'NINGXIAXINNENGYUANGONGSI'
  82. },
  83. {
  84. name: '牛首山风电场',
  85. windPowerStationId: 'NSS_FDC'
  86. },
  87. {
  88. name: '香山风电场',
  89. windPowerStationId: 'XS_FDC'
  90. },
  91. {
  92. name: '石板泉风电场',
  93. windPowerStationId: 'SBQ_FDC'
  94. },
  95. {
  96. name: '青山风电场',
  97. windPowerStationId: 'QS_FDC'
  98. },
  99. {
  100. name: '麻黄山风电场',
  101. windPowerStationId: 'MHS_FDC'
  102. }
  103. ]
  104. };
  105. },
  106. onHide() {
  107. this.$refs.drawer.closeDrawer();
  108. this.hideModal();
  109. },
  110. onShow() {
  111. this.windPowerStationId = uni.getStorageSync('windPowerStationId');
  112. this.address = this.getWindPowerStationNameToSessionStorage();
  113. },
  114. methods: {
  115. openDrawer: function() {
  116. this.$refs.drawer.openDrawer(250, this.drawerList, this.inconList);
  117. },
  118. closeDrawer: function() {
  119. this.drawerIsShow = false;
  120. },
  121. pushWindPowerStationNameToSessionStorage(windpowerstationName) {
  122. uni.setStorageSync('windpowerstationName', windpowerstationName);
  123. //sessionStorage.setItem('windpowerstationName', windpowerstationName);
  124. //alert("v"+ sessionStorage.getItem("windpowerstationName"));
  125. //this.common.goback('/pages/index/Index');
  126. },
  127. getWindPowerStationNameToSessionStorage() {
  128. uni.getStorageSync('windpowerstationName');
  129. return uni.getStorageSync('windpowerstationName');
  130. },
  131. openDrawer: function() {
  132. this.$refs.drawer.openDrawer(250, this.drawerList, this.inconList);
  133. },
  134. showModal(e) {
  135. this.modalName = e.currentTarget.dataset.target;
  136. this.$refs.plusDrawer.showModal(this.plusDrawerList, this.modalName);
  137. },
  138. hideModal() {
  139. this.modalName = null;
  140. this.$refs.plusDrawer.hideModal(this.modalName);
  141. }
  142. }
  143. };
  144. </script>
  145. <style>
  146. body {
  147. font-family: '方正兰亭细黑_GBK';
  148. font-size: 20px;
  149. color: silver;
  150. background: #fff;
  151. }
  152. @font-face {
  153. font-family: '方正兰亭细黑_GBK';
  154. src: url(../../static/fzltxh.TTF);
  155. }
  156. page {
  157. background-color: #1f1f1f;
  158. font-family: '方正兰亭细黑_GBK';
  159. overflow-x: hidden;
  160. }
  161. .top {
  162. width: 100%;
  163. height: 130upx;
  164. padding-top: 5upx;
  165. background-color: #1f1f1f;
  166. position: fixed;
  167. top: 0px;
  168. left: 0px;
  169. z-index: 100;
  170. }
  171. .threeLine {
  172. width: 50px;
  173. height: 45px;
  174. float: left;
  175. }
  176. .text {
  177. width: calc(100% - 100px);
  178. height: 45px;
  179. float: left;
  180. user-select: text;
  181. -webkit-user-select: text;
  182. -moz-user-select: text;
  183. -ms-user-select: text;
  184. color: silver;
  185. line-height: 45px;
  186. margin-top: 11px;
  187. font-size: 18px;
  188. }
  189. .notice {
  190. width: 50px;
  191. height: 45px;
  192. float: left;
  193. }
  194. .plus {
  195. width: 30px;
  196. height: 45px;
  197. float: right;
  198. color: white;
  199. font-size: 35px;
  200. line-height: 45px;
  201. text-align: right;
  202. margin-right: 2.5%;
  203. }
  204. .textWindpowerstation {
  205. width: 180px;
  206. height: 45px;
  207. float: left;
  208. text-align: center;
  209. margin-left: 18px;
  210. }
  211. .taskcard {
  212. margin-left: 10%;
  213. width: 80%;
  214. height: 200px;
  215. margin-top: 3%;
  216. border:2px solid white;
  217. }
  218. .tasktab {
  219. height: 30px;
  220. width: 100%;
  221. margin-left: 3%;
  222. margin-top: 3%;
  223. }
  224. .taskcontent {
  225. height: 100px;
  226. }
  227. .taskbutton {
  228. width: 100%;
  229. height: 50px;
  230. }
  231. .cu-tag {
  232. float: left;
  233. }
  234. .solids-bottom::after {
  235. border-bottom: 0px solid #eee;
  236. }
  237. .cu-btn {
  238. float: right;
  239. margin-left: 3px;
  240. }
  241. .DrawerPage {
  242. position: fixed;
  243. width: 100vw;
  244. height: 100vh;
  245. left: 0vw;
  246. background-color: #1f1f1f;
  247. transition: all 0.4s;
  248. }
  249. .DrawerPage.show {
  250. transform: scale(0.9, 0.9);
  251. left: 85vw;
  252. box-shadow: 0 0 60upx rgba(0, 0, 0, 0.2);
  253. transform-origin: 0;
  254. }
  255. .DrawerPage .cu-bar.tabbar .action button.cuIcon {
  256. width: 64upx;
  257. height: 64upx;
  258. line-height: 64upx;
  259. margin: 0;
  260. display: inline-block;
  261. }
  262. .DrawerPage .cu-bar.tabbar .action .cu-avatar {
  263. margin: 0;
  264. }
  265. .DrawerPage .nav {
  266. flex: 1;
  267. }
  268. .DrawerPage .nav .cu-item.cur {
  269. border-bottom: 0;
  270. position: relative;
  271. }
  272. .DrawerPage .nav .cu-item.cur::after {
  273. content: '';
  274. width: 10upx;
  275. height: 10upx;
  276. background-color: currentColor;
  277. position: absolute;
  278. bottom: 10upx;
  279. border-radius: 10upx;
  280. left: 0;
  281. right: 0;
  282. margin: auto;
  283. }
  284. .DrawerPage .cu-bar.tabbar .action {
  285. flex: initial;
  286. }
  287. </style>