Jioayimima.vue 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <template>
  2. <view>
  3. <customNav :shownav="true" :title="$t('tixian.jiaoyimima')" tinColor="white" jiantou="1" 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. page{
  42. background-color: whitesmoke;
  43. }
  44. .contenV{
  45. margin-top: 40rpx;
  46. width: 94%;
  47. margin-left: 3%;
  48. background-color: white;
  49. }
  50. .ItemContent{
  51. padding: 24rpx;
  52. border: solid whitesmoke;
  53. border-width: 0px 0px 2rpx 0px;
  54. }
  55. .yzmctV{
  56. display: flex;
  57. flex-direction: row;
  58. align-items: center;
  59. justify-content:flex-start;
  60. margin-top: 30rpx;
  61. width: 94%;
  62. margin-left: 3%;
  63. }
  64. .querenBt{
  65. margin-top: 30rpx;
  66. width: 100%;
  67. height: 60rpx;
  68. line-height: 60rpx;
  69. padding: 10rpx;
  70. border-radius: 20rpx;
  71. text-align: center;
  72. justify-content: center;
  73. background-color: #386EF5;
  74. color: white;
  75. box-shadow: 0px 0rpx 10rpx 0rpx #386EF5;
  76. }
  77. </style>