Jioayimima.vue 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <template>
  2. <view>
  3. <customNav :shownav="true" :title="$t('tixian.jiaoyimima')" tinColor="#006AFF" jiantou="0" titledetl=''></customNav>
  4. <view class="contenV">
  5. <view class="contentInRowL ItemContent">
  6. <image style="width: 40rpx;height: 40rpx;" src="/static/imags/mimatb.png" mode="scaleToFill"></image>
  7. <input type="safe-password" :placeholder="$t('user.qingshuyzfmm')" :password="true" @input="denglumima">
  8. <image style="width: 40rpx;height: 40rpx;margin-left: auto;" src="/static/imags/byanjing.png" mode="scaleToFill"></image>
  9. </view>
  10. <view class="contentInRowL ItemContent">
  11. <image style="width: 40rpx;height: 40rpx;" src="/static/imags/mimatb.png" mode="scaleToFill"></image>
  12. <input type="safe-password" :placeholder="$t('user.qingshezfmm')" :password="true" @input="denglumima">
  13. <image style="width: 40rpx;height: 40rpx;margin-left: auto;" src="/static/imags/byanjing.png" mode="scaleToFill"></image>
  14. </view>
  15. <view class="contentInRowL ItemContent">
  16. <image style="width: 40rpx;height: 40rpx;" src="/static/imags/mimatb.png" mode="scaleToFill"></image>
  17. <input type="safe-password" :placeholder="$t('user.qingzaisryc')" :password="true" @input="denglumima">
  18. <image style="width: 40rpx;height: 40rpx;margin-left: auto;" src="/static/imags/byanjing.png" mode="scaleToFill"></image>
  19. </view>
  20. </view>
  21. <view class="yzmctV">
  22. <label class="querenBt" @click="loginAC">{{$t('index.queren')}}</label>
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. export default {
  28. data() {
  29. return {
  30. mima:''
  31. }
  32. },
  33. methods: {
  34. denglumima(event){
  35. this.mima = event.target.value;
  36. },
  37. }
  38. }
  39. </script>
  40. <style lang="scss">
  41. @import '@/common/common.scss';
  42. page{
  43. background-color: whitesmoke;
  44. }
  45. .contenV{
  46. margin-top: 40rpx;
  47. width: 94%;
  48. margin-left: 3%;
  49. background-color: white;
  50. }
  51. .ItemContent{
  52. padding: 24rpx;
  53. border: solid whitesmoke;
  54. border-width: 0px 0px 2rpx 0px;
  55. }
  56. .yzmctV{
  57. display: flex;
  58. flex-direction: row;
  59. align-items: center;
  60. justify-content:flex-start;
  61. margin-top: 30rpx;
  62. width: 94%;
  63. margin-left: 3%;
  64. }
  65. .querenBt{
  66. margin-top: 30rpx;
  67. width: 100%;
  68. height: 60rpx;
  69. line-height: 60rpx;
  70. padding: 10rpx;
  71. border-radius: 20rpx;
  72. text-align: center;
  73. justify-content: center;
  74. background-color: #006AFF;
  75. color: white;
  76. box-shadow: 0px 0rpx 10rpx 0rpx #006AFF;
  77. }
  78. </style>