|
- <template>
- <view class="cented-box">
- <view class="Pinspeak">客户信息</view>
- <view class="chented">
-
- <view class="title">
- <view class="titletext">客户姓名</view>
- <view class="titletext2">
- <input class="titletext-input" placeholder-class="titletext-input" type="text" placeholder="请输入客户姓名(必填)" />
- </view>
- <view class="titleimg">
- <!-- <image class="titleimg1" src="../../../static/images/arrow.png" mode=""></image> -->
- </view>
- </view>
- <view class="title">
- <view class="titletext">客户性别</view>
- <view class="titletext2">
-
- </view>
- </view>
-
- <view class="title">
- <view class="titletext">联系电话</view>
- <view class="titletext2">
- <input class="titletext-input" placeholder-class="titletext-input" type="text" placeholder="请输入联系电话" />
- </view>
- </view>
-
- <view class="title">
- <view class="titletext">接待人数</view>
- <view class="titletext2">
-
- </view>
- </view>
-
- <view class="title" style="border: none;">
- <view class="titletext">客户来源</view>
- <view class="titletext2">
-
- </view>
- <view class="titleimg">
- <image class="titleimg1" src="../../../static/images/arrow.png" mode=""></image>
- </view>
- </view>
-
- </view>
- <view class="Pinspeak">顾问</view>
- <view class="chented">
-
- <view class="title" style="border: none;">
- <view class="titletext">接待顾问</view>
- <view class="titletext2">
- 请选择接待顾问
- </view>
- <view class="titleimg">
- <image class="titleimg1" src="../../../static/images/arrow.png" mode=""></image>
- </view>
- </view>
-
- </view>
-
- <view class="clive">确定</view>
- </view>
- </template>
-
- <script>
- var app = getApp();
- var util = require("../../../utils/util.js");
- var config = require("../../../config");
-
- export default {
- data() {
- return {
-
- };
- },
- onShow: function() {
-
- },
- methods: {
-
- }
- };
- </script>
- <style lang="scss" scoped>
- .cented-box{
- background: #F8F8F8;
- width: 100%;
- height: 100vh;
- }
- .Pinspeak{
- width: 100%;
- height: 92rpx;
- border-bottom: 1rpx solid #E0E0E0;
- font-size: 32rpx;
- font-weight: 500;
- color: #333333;
- text-indent: 30rpx;
- line-height: 92rpx;
- background: #FFFFFF;
- margin-top: 20rpx;
- }
- .chented{
- width: 100%;
- padding-left: 30rpx;
- padding-right: 30rpx;
- background-color: #FFFFFF;
- .title{
- width: 100%;
- height: 90rpx;
- border-bottom: 1rpx solid #E0E0E0;
- display: flex;
- align-items: center;
- .titletext{
- width: 21%;
- height: 90rpx;
- font-size: 30rpx;
- font-weight: 400;
- color: #333333;
- line-height: 90rpx;
- text-indent: 10rpx;
- }
- .titletext2{
- width: 71%;
- height: 90rpx;
- }
- .titletext-input{
- width: 100%;
- height: 90rpx;
- font-size: 30rpx;
- font-weight: 400;
- color: #B2B2B2;
- line-height: 90rpx;
- text-indent: 10rpx;
- }
- .titleimg{
- width: 8%;
- text-align: right;
- .titleimg1{
- width: 16rpx;
- height: 36rpx;
- }
- }
- }
- }
- .clive{
- width: 690rpx;
- height: 88rpx;
- background: #2671E2;
- text-align: center;
- line-height: 88rpx;
- color: #FFFFFF;
- border-radius: 8rpx;
- margin: 0 auto;
- margin-top: 300rpx;
- font-size: 32rpx;
- }
- </style>
|