1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <template>
- <view class="order-top">
- <view class="hflex acenter jbetween">
- <view class="title">客户信息</view>
- <view class="type1" v-if="type == 1">未报价</view>
- <view class="type1 type2" v-if="type == 2">已报价</view>
- <view class="type1 type3" v-if="type == 3">已匹配</view>
- </view>
- <view class="hflex acenter cell">
- <view class="left">联系人:</view>
- <view class="right">{{name}}</view>
- </view>
- <view class="hflex acenter">
- <view class="left">手机号:</view>
- <view class="right">{{phone}}</view>
- </view>
- </view>
- </template>
- <script>
- export default {
- name:"order-top",
- props: {
- name: {
- type: String,
- value: ''
- },
- phone: {
- type: String,
- value: ''
- },
- type: {
- type: String,
- value: ''
- },
- },
- data() {
- return {
- };
- }
- }
- </script>
- <style lang="scss" scoped>
- .order-top {
- width: 690rpx;
- background: #FFFFFF;
- border-radius: 24rpx;
- box-sizing: border-box;
- padding: 24rpx 20rpx;
- .title {
- font-size: 30rpx;
- font-weight: 500;
- color: #222222;
- }
- .cell {
- margin: 16rpx 0 24rpx;
- }
- .type1 {
- width: 96rpx;
- height: 40rpx;
- background: #FFF4E8;
- border-radius: 4rpx;
- text-align: center;
- line-height: 40rpx;
- font-size: 22rpx;
- font-weight: 400;
- color: #FBA94E;
- }
- .type2 {
- background: #E7EBF7;
- color: #506DFF;
- }
- .type3 {
- background: #E6F7E8;
- color: #4AB256;
- }
- .left {
- font-size: 26rpx;
- font-weight: 400;
- color: #222222;
- }
- .right {
- font-size: 26rpx;
- font-weight: 400;
- color: #888888;
- }
- }
- </style>
|