index.vue 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <template>
  2. <view class="app-content">
  3. <view class="header"><view class="log" @tap="fall"></view>{{ navname }}</view>
  4. <view class="searchInput">
  5. <uni-easyinput class="uni-mt-5" :inputBorder='false' suffixIcon="scan" v-model="value" placeholder="请输入操作位置" @iconClick="iconClick"></uni-easyinput>
  6. </view>
  7. <button type="default" v-if="value==''" class="defaultBtn">保存并提交</button>
  8. <button type="default" v-else class="sendBtn">保存并提交</button>
  9. </view>
  10. </template>
  11. <script>
  12. import Nav from '../../components/header/nav.vue'
  13. export default {
  14. data() {
  15. return {
  16. navname: '操作位置录入',
  17. value:"",
  18. }
  19. },
  20. created(option) {
  21. },
  22. onLoad(){
  23. },
  24. onUnload() {
  25. },
  26. onShow() {
  27. },
  28. mounted() {
  29. },
  30. components: {
  31. Nav
  32. },
  33. methods: {
  34. fall () {
  35. uni.navigateBack({
  36. delta: 1
  37. })
  38. },
  39. iconClick(){
  40. alert("点击")
  41. }
  42. },
  43. }
  44. </script>
  45. <style lang="scss" scoped>
  46. .app-content{
  47. >.header{
  48. width: 100%;
  49. height: 4.375rem;
  50. display: flex;
  51. justify-content: center;
  52. align-items: center;
  53. // background: rgba(49,85,99,1);
  54. color: rgb(16, 17, 22);
  55. font-family: Noto Sans SC;
  56. font-size: 1rem;
  57. position: relative;
  58. >.log{
  59. width: .375rem;
  60. height: .75rem;
  61. font-size: .75rem;
  62. position: absolute;
  63. left: 1.5rem;
  64. background: url('../../static/ico@1x.png') no-repeat;
  65. background-size: 100% 100%;
  66. }
  67. }
  68. >.searchInput{
  69. width: calc(100% - 2rem);
  70. margin-left: 1rem;
  71. border-bottom:1px solid rgb(224, 230, 238);
  72. color: rgb(48, 51, 57);
  73. }
  74. >.defaultBtn{
  75. width: calc(100% - 2rem);
  76. margin-left: 1rem;
  77. height: 44px;
  78. top: 204px;
  79. background: rgb(180, 191, 196);
  80. color: rgb(255, 255, 255);
  81. border-radius:4px;
  82. border: none;
  83. top: 4rem;
  84. }
  85. >.sendBtn{
  86. width: calc(100% - 2rem);
  87. margin-left: 1rem;
  88. height: 44px;
  89. top: 204px;
  90. 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%);
  91. color: rgb(255, 255, 255);
  92. border-radius:4px;
  93. border: none;
  94. top: 4rem;
  95. }
  96. }
  97. </style>