home.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532
  1. <template>
  2. <view class="home-wrap">
  3. <view class="home-title">
  4. <view class="title-bac">
  5. <view class="roomt">
  6. <span class="rom-spn">当前所在仓库</span>
  7. <span class="quit-spn" @click.stop="loginOff()"></span>
  8. </view>
  9. <view class="rom-set">
  10. <view class="park"></view>
  11. <view class="houseName">
  12. <uni-data-picker popup-title="请选择仓库" :localdata="houseData" @change="onchange">
  13. <span class='romtitle'>{{houseSelectData.houseName}}</span>
  14. </uni-data-picker>
  15. </view>
  16. <view class="down"></view>
  17. </view>
  18. <view class="section-view">
  19. <view class="user-cont">
  20. <span class="user-spn">欢迎</span>
  21. <span class="user-spn spnr">{{userData.userName}}</span>
  22. </view>
  23. <view class="sec-data">
  24. <view class="sec-item" v-for="(item,index) in romDetData" :key="index">
  25. <span class="item-spn spnVal">{{item.value}}</span>
  26. <span class="item-spn">{{item.name}}</span>
  27. </view>
  28. </view>
  29. </view>
  30. <view class="app-view">
  31. <view class="app-item">
  32. <view class="app-title">
  33. 商品检索
  34. </view>
  35. <view class="app-item-mut">
  36. <view class="app-item-spn">
  37. 商品所在位置及属性信息查询
  38. </view>
  39. <view class="app-item-img">
  40. </view>
  41. </view>
  42. </view>
  43. <view class="app-item">
  44. <view class="app-title">
  45. 库存盘点
  46. </view>
  47. <view class="app-item-mut">
  48. <view class="app-item-spn">
  49. 多种方式盘点核对库内商品
  50. </view>
  51. <view class="app-item-img">
  52. </view>
  53. </view>
  54. </view>
  55. </view>
  56. <view class="message-view">
  57. <view class="all-message">
  58. 全部消息 >>
  59. </view>
  60. <view>
  61. <view class="message-item" v-for="(item,index) in messageData" :key="index">
  62. <span>{{item.text}}</span>
  63. <span>详情 >></span>
  64. </view>
  65. </view>
  66. </view>
  67. <view class="all-app">
  68. <view class="all-title">
  69. 全部应用
  70. </view>
  71. <view class="all-app-view">
  72. <view class="app-view-item" v-for="(item,index) in appData" :key="index">
  73. <view class="app-item-img" :style="{background: item.bgColor}" @click.stop="appView(item)">
  74. <view class="app-item-svg" :style="{'background':`url(${item.iconUrl})`}">
  75. </view>
  76. </view>
  77. <view class="app-item-text">
  78. {{item.name}}
  79. </view>
  80. </view>
  81. </view>
  82. </view>
  83. </view>
  84. </view>
  85. <uni-popup ref="message" type="dialog">
  86. <uni-popup-dialog type="warn" cancelText="取消" confirmText="确定" content="确定退出当前账号?" @confirm="dialogConfirm"
  87. @close="dialogClose"></uni-popup-dialog>
  88. </uni-popup>
  89. </view>
  90. </template>
  91. <script>
  92. import {
  93. listData
  94. } from "./list.js";
  95. import {
  96. mapState,
  97. mapMutations,
  98. mapActions
  99. } from 'vuex';
  100. export default {
  101. components: {},
  102. mounted() {
  103. this.getHouseData();
  104. },
  105. computed: {
  106. ...mapState(['houseData', 'houseSelectData', 'userData'])
  107. },
  108. data() {
  109. return {
  110. listData: listData,
  111. messageData: [{
  112. text: '通知:您有新的出库单【出库单号】待确认,请注意及时确认。'
  113. }, {
  114. text: '通知:您有新的出库单【出库单号】待确认,请注意及时确认。'
  115. }],
  116. romDetData: [{
  117. name: "待验收",
  118. value: 23,
  119. },
  120. {
  121. name: "待上架",
  122. value: 23,
  123. },
  124. {
  125. name: "待出库",
  126. value: 23,
  127. },
  128. {
  129. name: "待配送",
  130. value: 23,
  131. }
  132. ],
  133. appData: [{
  134. iconUrl: "../../static/yanshou.svg",
  135. name: "验收",
  136. bgColor: "#F4CE98",
  137. path: "/pages/groundetials/groundetials"
  138. },
  139. {
  140. iconUrl: "../../static/shangjia.svg",
  141. name: "上架",
  142. bgColor: "#7DCEFF",
  143. path: "/pages/grounding/grounding"
  144. },
  145. {
  146. iconUrl: "../../static/peisong.svg",
  147. name: "配送",
  148. bgColor: "#FFB298",
  149. path: "/pages/grounding/grounding"
  150. },
  151. {
  152. iconUrl: "../../static/jianhuo.svg",
  153. name: "拣货",
  154. bgColor: "#2CE4BF",
  155. path: "/pages/Inventory/Inventory"
  156. },
  157. {
  158. iconUrl: "../../static/pandian.svg",
  159. name: "盘点",
  160. bgColor: "#2CE4BF",
  161. path: "/pages/Inventory/Inventory"
  162. },
  163. {
  164. iconUrl: "../../static/jiansuo.svg",
  165. name: "检索",
  166. bgColor: "#FFB867",
  167. path: "/pages/query/query"
  168. },
  169. {
  170. iconUrl: "../../static/xiaohao.svg",
  171. name: "商品消耗",
  172. bgColor: "#94BE5B",
  173. path: "/pages/consume/consume"
  174. },
  175. ]
  176. }
  177. },
  178. onLoad() {
  179. },
  180. mounted() {
  181. this.getHouseData()
  182. },
  183. methods: {
  184. ...mapActions(['getHouseData']),
  185. ...mapMutations(['setHouseName']),
  186. //跳转页面
  187. appView(item) {
  188. uni.navigateTo({
  189. url: item.path,
  190. success: function(res) {}
  191. });
  192. },
  193. //退出当前账号
  194. dialogConfirm() {
  195. uni.redirectTo({
  196. url: '/pages/login/index',
  197. success: function(res) {}
  198. });
  199. uni.removeStorageSync('token')
  200. },
  201. dialogClose() {
  202. this.$refs.message.close();
  203. },
  204. //退出确认
  205. loginOff() {
  206. this.$refs.message.open();
  207. },
  208. onchange(e) {
  209. this.setHouseName({
  210. houseName: e.detail.value[0].text,
  211. houseId: e.detail.value[0].value
  212. })
  213. },
  214. //跳转更多页面
  215. moreView() {
  216. uni.navigateTo({
  217. url: '/pages/grounding/grounding',
  218. success: function(res) {}
  219. });
  220. },
  221. dateChange(slectd) {
  222. this.getDataList({
  223. type: slectd[0][0].value
  224. });
  225. },
  226. // 获取数据
  227. getDataList(data) {
  228. this.getGroundData(data);
  229. }
  230. }
  231. }
  232. </script>
  233. <style lang="scss" scoped>
  234. .home-wrap {
  235. width: 100%;
  236. height: 100%;
  237. overflow-y: auto;
  238. background-color: #F5F5F5;
  239. .home-title {
  240. width: 100%;
  241. height: auto;
  242. .title-bac {
  243. width: 100%;
  244. height: 392rpx;
  245. border-radius: 0rpx 0rpx 40rpx 40rpx;
  246. background: linear-gradient(180deg, rgba(1, 169, 146, 1) 0%, rgba(1, 176, 164, 0.54) 46%, rgba(2, 181, 176, 0.24) 100%, rgba(2, 185, 185, 0) 100%);
  247. padding: 20rpx;
  248. box-sizing: border-box;
  249. .roomt {
  250. width: 100%;
  251. height: 70rpx;
  252. display: flex;
  253. align-items: center;
  254. justify-content: space-between;
  255. .rom-spn {
  256. color: rgba(255, 255, 255, 0.9);
  257. font-size: 36rpx;
  258. text-align: left;
  259. font-family: PingFangSC-bold;
  260. }
  261. .quit-spn {
  262. width: 48rpx;
  263. height: 48rpx;
  264. background: url('../../static/logout.svg');
  265. background-size: 100% 100%;
  266. }
  267. }
  268. .rom-set {
  269. width: 100%;
  270. height: 50rpx;
  271. display: flex;
  272. align-items: center;
  273. .park {
  274. width: 40rpx;
  275. height: 40rpx;
  276. background: url('../../static/iconPark.svg');
  277. background-size: 100% 100%;
  278. }
  279. .houseName {
  280. color: rgba(255, 255, 255, 0.9);
  281. font-size: 36rpx;
  282. text-align: left;
  283. font-family: OPPOSans-medium;
  284. margin-left: 20rpx;
  285. .romtitle {
  286. font-size: 36rpx;
  287. font-family: OPPOSans-medium;
  288. }
  289. }
  290. .down {
  291. width: 40rpx;
  292. height: 40rpx;
  293. background: url('../../static/down.svg');
  294. background-size: 100% 100%;
  295. margin-left: 20rpx;
  296. }
  297. }
  298. .section-view {
  299. width: 97%;
  300. margin: 70rpx auto 40rpx auto;
  301. height: 270rpx;
  302. background-color: rgba(255, 255, 255, 1);
  303. box-shadow: -2rpx 4rpx 10rpx 0rpx rgba(0, 0, 0, 0.4);
  304. border-radius: 20rpx;
  305. padding: 20rpx;
  306. box-sizing: border-box;
  307. .user-cont {
  308. width: 100%;
  309. height: 50rpx;
  310. .user-spn {
  311. color: rgba(0, 0, 0, 0.8);
  312. font-size: 36rpx;
  313. font-family: AlibabaPuHui-medium;
  314. }
  315. .spnr {
  316. margin-left: 20rpx;
  317. font-size: 35rpx;
  318. font-family: AlibabaPuHui-medium;
  319. }
  320. }
  321. .sec-data {
  322. width: 100%;
  323. height: 110rpx;
  324. display: flex;
  325. justify-content: space-around;
  326. margin-top: 60rpx;
  327. .sec-item {
  328. width: 130rpx;
  329. height: 100%;
  330. display: flex;
  331. flex-direction: column;
  332. align-items: center;
  333. justify-content: space-between;
  334. .item-spn {
  335. font-size: 32rpx;
  336. font-family: PingFangSC-bold;
  337. }
  338. .spnVal {
  339. color: rgba(7, 190, 167, 1);
  340. }
  341. }
  342. }
  343. }
  344. .app-view {
  345. width: 100%;
  346. height: 200rpx;
  347. display: flex;
  348. justify-content: space-between;
  349. .app-item {
  350. width: 48%;
  351. height: 100%;
  352. border-radius: 16rpx;
  353. background-color: rgba(255, 255, 255, 1);
  354. border: 2rpx solid rgba(187, 187, 187, 0.5);
  355. padding: 20rpx;
  356. box-sizing: border-box;
  357. .app-title {
  358. font-size: 32rpx;
  359. font-family: SourceHanSansSC-bold;
  360. color: rgba(0, 0, 0, 1);
  361. }
  362. .app-item-mut {
  363. width: 100%;
  364. height: 120rpx;
  365. display: flex;
  366. justify-content: space-between;
  367. align-items: center;
  368. .app-item-spn {
  369. color: rgba(154, 154, 154, 0.8);
  370. font-size: 20rpx;
  371. font-family: AlibabaPuHui-medium;
  372. width: 140rpx;
  373. height: 50rpx;
  374. }
  375. .app-item-img {
  376. width: 140rpx;
  377. height: 106.68rpx;
  378. background: url('../../static/queryData.svg');
  379. background-size: 100% 100%;
  380. }
  381. }
  382. }
  383. }
  384. .message-view {
  385. width: 100%;
  386. height: 200rpx;
  387. margin-top: 20rpx;
  388. position: relative;
  389. padding-top: 20rpx;
  390. .all-message {
  391. position: absolute;
  392. right: 0rpx;
  393. top: 5rpx;
  394. width: 117rpx;
  395. height: 20rpx;
  396. color: rgba(1, 169, 146, 1);
  397. font-size: 20rpx;
  398. font-family: AlibabaPuHui-regular;
  399. display: flex;
  400. align-items: center;
  401. }
  402. .message-item {
  403. margin-top: 20rpx;
  404. width: 100%;
  405. height: 50rpx;
  406. border-radius: 25rpx;
  407. display: flex;
  408. justify-content: space-between;
  409. align-items: center;
  410. padding: 0 20rpx;
  411. box-sizing: border-box;
  412. color: rgba(0, 0, 0, 0.8);
  413. font-size: 20rpx;
  414. text-align: left;
  415. font-family: AlibabaPuHui-regular;
  416. background-color: rgba(255, 255, 255, 1);
  417. box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.4);
  418. }
  419. }
  420. .all-app {
  421. width: 100%;
  422. .all-title {
  423. width: 100%;
  424. height: 46rpx;
  425. color: rgba(0, 0, 0, 0.8);
  426. font-size: 32rpx;
  427. text-align: left;
  428. font-family: AlibabaPuHui-bold;
  429. }
  430. .all-app-view {
  431. margin-top: 20rpx;
  432. width: 100%;
  433. height: auto;
  434. background-color: #fff;
  435. border-radius: 20rpx;
  436. display: flex;
  437. flex-wrap: wrap;
  438. align-content: flex-start;
  439. padding-bottom: 50rpx;
  440. .app-view-item {
  441. width: 24%;
  442. margin-left: 7rpx;
  443. height: 150rpx;
  444. display: flex;
  445. flex-direction: column;
  446. align-items: center;
  447. margin-top: 20rpx;
  448. margin-bottom: 20rpx;
  449. justify-content: space-between;
  450. .app-item-img {
  451. width: 102rpx;
  452. height: 102rpx;
  453. border-radius: 20rpx;
  454. display: flex;
  455. align-items: center;
  456. justify-content: center;
  457. .app-item-svg {
  458. width: 80rpx;
  459. height: 80rpx;
  460. }
  461. }
  462. .app-item-text {
  463. width: 100%;
  464. height: 34rpx;
  465. color: rgba(0, 0, 0, 0.8);
  466. font-size: 28rpx;
  467. text-align: center;
  468. font-family: AlibabaPuHui-bold;
  469. }
  470. }
  471. }
  472. }
  473. }
  474. }
  475. }
  476. uni-page-body {
  477. width: 100%;
  478. height: 100%;
  479. }
  480. uni-page-wrapper {
  481. width: 100%;
  482. height: 100%;
  483. }
  484. uni-page {
  485. width: 100%;
  486. height: 100%;
  487. }
  488. </style>