message.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <view class="app-content">
  3. <view class="title-box">{{navname}}</view>
  4. <uni-list :border="true" class="messageList">
  5. <uni-list-chat title="app" avatar="static/shuai.png" note="您收到一条新的消息" time="2020-02-02 20:20" ></uni-list-chat>
  6. <uni-list-chat title="app" avatar="static/shuai.png" note="您收到一条新的消息" time="2020-02-02 20:20" badge-positon="left" badge-text="dot"></uni-list-chat>
  7. </uni-list>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. navname:"消息"
  15. }
  16. },
  17. onShow() {
  18. uni.$on("scancodemsg", (data) => {
  19. if (data.msg.length > 9) {
  20. uni.navigateTo({
  21. url: "/pages/detail/index?luggageNum=" + data.msg
  22. })
  23. }
  24. });
  25. },
  26. onLoad(){
  27. },
  28. onUnload() {
  29. uni.$off("scancodemsg");
  30. },
  31. onHide() {
  32. uni.$off("scancodemsg");
  33. },
  34. methods: {
  35. scan(){
  36. uni.scanCode({
  37. onlyFromCamera: true,
  38. success: function (res) {
  39. if (res.result.length > 9) {
  40. uni.navigateTo({
  41. url: "/pages/detail/index?luggageNum=" + res.result
  42. })
  43. }
  44. }
  45. });
  46. },
  47. }
  48. }
  49. </script>
  50. <style lang="scss" scoped>
  51. .app-content {
  52. position: relative;
  53. background: rgb(49, 85, 99);
  54. padding-top: 3.6rem;
  55. box-sizing: border-box;
  56. height: 100vh;
  57. >.title-box{
  58. width: 100%;
  59. height: 2.375rem;
  60. display: flex;
  61. justify-content: center;
  62. align-items: center;
  63. padding-top: 1.25rem;
  64. color: rgb(255, 255, 255);
  65. font-family: Noto Sans SC;
  66. font-size: 1rem;
  67. position: fixed;
  68. top: 0;
  69. left: 0;
  70. z-index: 1000;
  71. }
  72. >.messageList{
  73. width: 100%;
  74. height: 100%;
  75. overflow-x: hidden;
  76. overflow-y: auto;
  77. }
  78. }
  79. </style>