Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

159 lignes
3.2 KiB

  1. <template>
  2. <view class="cented-box">
  3. <view class="Pinspeak">客户信息</view>
  4. <view class="chented">
  5. <view class="title">
  6. <view class="titletext">客户姓名</view>
  7. <view class="titletext2">
  8. <input class="titletext-input" placeholder-class="titletext-input" type="text" placeholder="请输入客户姓名(必填)" />
  9. </view>
  10. <view class="titleimg">
  11. <!-- <image class="titleimg1" src="../../../static/images/arrow.png" mode=""></image> -->
  12. </view>
  13. </view>
  14. <view class="title">
  15. <view class="titletext">客户性别</view>
  16. <view class="titletext2">
  17. </view>
  18. </view>
  19. <view class="title">
  20. <view class="titletext">联系电话</view>
  21. <view class="titletext2">
  22. <input class="titletext-input" placeholder-class="titletext-input" type="text" placeholder="请输入联系电话" />
  23. </view>
  24. </view>
  25. <view class="title">
  26. <view class="titletext">接待人数</view>
  27. <view class="titletext2">
  28. </view>
  29. </view>
  30. <view class="title" style="border: none;">
  31. <view class="titletext">客户来源</view>
  32. <view class="titletext2">
  33. </view>
  34. <view class="titleimg">
  35. <image class="titleimg1" src="../../../static/images/arrow.png" mode=""></image>
  36. </view>
  37. </view>
  38. </view>
  39. <view class="Pinspeak">顾问</view>
  40. <view class="chented">
  41. <view class="title" style="border: none;">
  42. <view class="titletext">接待顾问</view>
  43. <view class="titletext2">
  44. 请选择接待顾问
  45. </view>
  46. <view class="titleimg">
  47. <image class="titleimg1" src="../../../static/images/arrow.png" mode=""></image>
  48. </view>
  49. </view>
  50. </view>
  51. <view class="clive">确定</view>
  52. </view>
  53. </template>
  54. <script>
  55. var app = getApp();
  56. var util = require("../../../utils/util.js");
  57. var config = require("../../../config");
  58. export default {
  59. data() {
  60. return {
  61. };
  62. },
  63. onShow: function() {
  64. },
  65. methods: {
  66. }
  67. };
  68. </script>
  69. <style lang="scss" scoped>
  70. .cented-box{
  71. background: #F8F8F8;
  72. width: 100%;
  73. height: 100vh;
  74. }
  75. .Pinspeak{
  76. width: 100%;
  77. height: 92rpx;
  78. border-bottom: 1rpx solid #E0E0E0;
  79. font-size: 32rpx;
  80. font-weight: 500;
  81. color: #333333;
  82. text-indent: 30rpx;
  83. line-height: 92rpx;
  84. background: #FFFFFF;
  85. margin-top: 20rpx;
  86. }
  87. .chented{
  88. width: 100%;
  89. padding-left: 30rpx;
  90. padding-right: 30rpx;
  91. background-color: #FFFFFF;
  92. .title{
  93. width: 100%;
  94. height: 90rpx;
  95. border-bottom: 1rpx solid #E0E0E0;
  96. display: flex;
  97. align-items: center;
  98. .titletext{
  99. width: 21%;
  100. height: 90rpx;
  101. font-size: 30rpx;
  102. font-weight: 400;
  103. color: #333333;
  104. line-height: 90rpx;
  105. text-indent: 10rpx;
  106. }
  107. .titletext2{
  108. width: 71%;
  109. height: 90rpx;
  110. }
  111. .titletext-input{
  112. width: 100%;
  113. height: 90rpx;
  114. font-size: 30rpx;
  115. font-weight: 400;
  116. color: #B2B2B2;
  117. line-height: 90rpx;
  118. text-indent: 10rpx;
  119. }
  120. .titleimg{
  121. width: 8%;
  122. text-align: right;
  123. .titleimg1{
  124. width: 16rpx;
  125. height: 36rpx;
  126. }
  127. }
  128. }
  129. }
  130. .clive{
  131. width: 690rpx;
  132. height: 88rpx;
  133. background: #2671E2;
  134. text-align: center;
  135. line-height: 88rpx;
  136. color: #FFFFFF;
  137. border-radius: 8rpx;
  138. margin: 0 auto;
  139. margin-top: 300rpx;
  140. font-size: 32rpx;
  141. }
  142. </style>