unusualDealList.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <template>
  2. <view class="content">
  3. <view class="status_bar">
  4. <view class="left" @click="goBack"><u-icon name="arrow-left"></u-icon>返回</view>
  5. <span style="font-size: 36rpx;">异常医废</span>
  6. <view class="right"></view>
  7. </view>
  8. <view class="mainCont">
  9. <view class="card" v-for="(item, index) in tableList" :key="index">
  10. <view class="top">
  11. <view class="left"> 2021-05-23 第一批次(9/12)</view>
  12. </view>
  13. <view class="bottom">
  14. <view>科&emsp;&emsp;室:脑科<span style="float: right">24.5kg</span></view>
  15. <view>医废分类:脑科<span style="float: right">损伤性废物</span></view>
  16. <view>打&ensp;包&ensp;人:王晓华<span style="float: right">2021-03-23 12:09:00</span></view>
  17. <view class="bButton">
  18. <span @click.stop="toDeal()">异常处理</span>
  19. <span @click.stop="scan()" style="margin-right: 10px;background: #fff;color: #5976ba">扫码</span>
  20. </view>
  21. </view>
  22. </view>
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. export default {
  28. data() {
  29. return {
  30. tableList: [{}]
  31. }
  32. },
  33. methods: {
  34. goBack() {
  35. uni.navigateBack({
  36. delta: 1
  37. });
  38. },
  39. toDeal() {},
  40. scan() {}
  41. }
  42. }
  43. </script>
  44. <style lang="scss">
  45. .mainCont {
  46. height: calc(100% - 80rpx);
  47. padding-bottom: 10px;
  48. padding-top: 10px;
  49. overflow-y: scroll;
  50. }
  51. </style>