index.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <template>
  2. <view class="app-content">
  3. <view class="header">
  4. <view class="log" @tap="fall"></view>{{ navname }}
  5. </view>
  6. <view class="searchInput">
  7. <uni-easyinput class="uni-mt-5" :inputBorder='false' v-model="value" placeholder="请输入行李号"
  8. @iconClick="iconClick"></uni-easyinput>
  9. </view>
  10. <button type="default" v-if="value==''" class="defaultBtn">保存并提交</button>
  11. <button type="default" v-else class="sendBtn" @tap="send">保存并提交</button>
  12. <!-- 提示信息和下拉弹窗 -->
  13. <mask-model :headername="headername" :typeShow="typeShow" :tabname="tabname" ref="showMask" btnType="1"
  14. @confirm="confirm" @cancel="cancel" titleColoe="#666666" cancelColor="#666666" confirmColor="#007AFF"
  15. :maskTitle="maskTitle"></mask-model>
  16. </view>
  17. </template>
  18. <script>
  19. import Nav from '../../components/header/nav.vue'
  20. import maskModel from '../../components/mask-model/mask-model.vue'
  21. export default {
  22. data() {
  23. return {
  24. navname: '行李号录入',
  25. value: "",
  26. maskTitle: '请核对录入的行李号是否正确',
  27. tabname: '', //按钮名称
  28. typeShow: true,
  29. headername: '请核对信息',
  30. }
  31. },
  32. created(option) {},
  33. onLoad() {},
  34. onUnload() {},
  35. onShow() {},
  36. mounted() {},
  37. components: {
  38. Nav
  39. },
  40. methods: {
  41. fall() {
  42. uni.navigateBack({
  43. delta: 1
  44. })
  45. },
  46. iconClick() {
  47. },
  48. send() {
  49. this.typeShow = false
  50. this.maskTitle = '请核对录入的行李号是否正确'
  51. this.headername = '请核对信息'
  52. this.$refs.showMask.show();
  53. },
  54. confirm: function(e) { //确定按钮
  55. if(this.value.length>9){
  56. let pages = getCurrentPages()
  57. let prevPage = pages[pages.length - 2]
  58. prevPage.$vm.getluggage(this.value,true)
  59. prevPage.$vm.currentLuggageNum = this.value
  60. uni.navigateBack({
  61. delta: 1
  62. })
  63. }
  64. },
  65. cancel: function() { //取消按钮
  66. console.log('您点击了取消按钮');
  67. },
  68. },
  69. }
  70. </script>
  71. <style lang="scss" scoped>
  72. .app-content {
  73. >.header {
  74. width: 100%;
  75. height: 4.375rem;
  76. display: flex;
  77. justify-content: center;
  78. align-items: center;
  79. // background: rgba(49,85,99,1);
  80. color: rgb(16, 17, 22);
  81. font-family: Noto Sans SC;
  82. font-size: 1rem;
  83. position: relative;
  84. >.log {
  85. width: .375rem;
  86. height: .75rem;
  87. font-size: .75rem;
  88. position: absolute;
  89. left: 1.5rem;
  90. background: url('../../static/ico@1x.png') no-repeat;
  91. background-size: 100% 100%;
  92. }
  93. }
  94. >.searchInput {
  95. width: calc(100% - 2rem);
  96. margin-left: 1rem;
  97. border-bottom: 1px solid rgb(224, 230, 238);
  98. color: rgb(48, 51, 57);
  99. }
  100. >.defaultBtn {
  101. width: calc(100% - 2rem);
  102. margin-left: 1rem;
  103. height: 44px;
  104. top: 204px;
  105. background: rgb(180, 191, 196);
  106. color: rgb(255, 255, 255);
  107. border-radius: 4px;
  108. border: none;
  109. top: 4rem;
  110. }
  111. >.sendBtn {
  112. width: calc(100% - 2rem);
  113. margin-left: 1rem;
  114. height: 44px;
  115. top: 204px;
  116. background: linear-gradient(179.10deg, rgba(51, 161, 165, 1.00) 11.326%, rgba(59, 111, 142, 1.00) 119.032%, rgba(59, 111, 142, 1.00) 119.032%, rgba(59, 111, 142, 1.00) 119.032%);
  117. color: rgb(255, 255, 255);
  118. border-radius: 4px;
  119. border: none;
  120. top: 4rem;
  121. }
  122. }
  123. </style>