message.vue 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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 :avatar-circle="true" title="uni-app" avatar="https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/unicloudlogo.png" note="您收到一条新的消息" time="2020-02-02 20:20" ></uni-list-chat>
  6. <uni-list-chat title="uni-app" avatar="https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/unicloudlogo.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. onHide() {
  27. uni.$off("scancodemsg");
  28. },
  29. methods: {
  30. scan(){
  31. uni.scanCode({
  32. onlyFromCamera: true,
  33. success: function (res) {
  34. if (res.result.length > 9) {
  35. uni.navigateTo({
  36. url: "/pages/detail/index?luggageNum=" + res.result
  37. })
  38. }
  39. }
  40. });
  41. },
  42. }
  43. }
  44. </script>
  45. <style lang="scss" scoped>
  46. .app-content {
  47. position: relative;
  48. background: rgb(49, 85, 99);
  49. padding-top: 3.6rem;
  50. box-sizing: border-box;
  51. height: 100vh;
  52. >.title-box{
  53. width: 100%;
  54. height: 2.375rem;
  55. display: flex;
  56. justify-content: center;
  57. align-items: center;
  58. padding-top: 1.25rem;
  59. color: rgb(255, 255, 255);
  60. font-family: Noto Sans SC;
  61. font-size: 1rem;
  62. position: fixed;
  63. top: 0;
  64. left: 0;
  65. z-index: 1000;
  66. }
  67. >.messageList{
  68. width: 100%;
  69. height: 100%;
  70. overflow-x: hidden;
  71. overflow-y: auto;
  72. }
  73. }
  74. </style>