add-car.vue 24.9 KB
Newer Older
1 2
<template>
  <h-view id="addCar">
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
    <transition name="trans">
      <div v-show="downNum" class="modal-show">
        <div class="down">
          <div class="top">
            录入产品信息
            <img src="@/assets/intoApproval/close.png" @click="downNum=false" >
          </div>
          <div class="down-content">
            <span>请上传照片</span>
            <div class="photo">
              <!-- <img src=""> -->
            </div>
            <list-item :item-height="44">
              <item>
                <div slot="name">车架号</div>
                <input slot="content" v-model="info.frame_number" placeholder="自动识别车架号" >
              </item>
              <item>
                <div slot="name">发动机号</div>
                <input slot="content" v-model="info.engine" placeholder="自动识别发动机号" >
              </item>
24 25 26 27 28 29 30 31
              <item>
                <div slot="name">车辆型号 </div>
                <input slot="content" v-model="info.type" placeholder="自动识别车辆型号" >
              </item>
              <item>
                <div slot="name">合格证编号 </div>
                <input slot="content" v-model="info.number" placeholder="自动识别合格证编号" >
              </item>
32 33 34 35 36 37 38 39 40 41 42 43 44
              <item>
                <div slot="name">厂商型号</div>
                <input
                  slot="content"
                  v-model="info.manufacturer"
                  class="write"
                  placeholder="请输入厂商型号"
                >
              </item>
              <item>
                <div slot="name">车牌号</div>
                <input slot="content" v-model="info.license_plate_number" placeholder="请输入车牌号" >
              </item>
linxin's avatar
linxin committed
45 46 47 48
              <item>
                <div slot="name">发车日期</div>
                <input slot="content" v-model="showDate" placeholder="请输入发车日期" @click="showTime('YYYY-MM-DD')">
              </item>
49 50 51 52 53
              <!-- <item :showArrow="true" @click.native="showModalValue=true">
                <div slot="name">产品参数</div>
                <input slot="content" v-model="info.bank_branch_name" placeholder="请选择产品参数" @click="changeHeight">
              </item>-->
            </list-item>
54
          </div>
55
          <button @click="isSave">保存</button>
56
        </div>
57
      </div>
58
    </transition>
59 60 61
    <h-header :proportion="[5,1,1]" class="bar-custom">
      <div slot="left" class="h-header-btn">
        <img src="@/assets/userBind/arrow.png" @click="$routeGo()" >
62
        <span>合同明细</span>
63 64 65 66 67
      </div>
    </h-header>
    <h-content>
      <div class="userInfo">承租人信息</div>
      <list-item :item-height="44">
68
        <item v-if="!read" :showArrow="true">
69
          <div slot="name">合同号</div>
70 71 72 73 74 75 76 77 78 79
          <input
            slot="content"
            v-model="detail.project_number"
            placeholder="请选择合同号"
            @click="selectContruct"
          >
        </item>
        <item v-if="read">
          <div slot="name">合同号</div>
          <input slot="content" v-model="detail.project_number" readonly placeholder="暂无数据" >
80
        </item>
81
        <item v-if="!read" :showArrow="true">
82
          <div slot="name">经销商</div>
83 84 85 86 87 88 89 90 91 92
          <input
            slot="content"
            v-model="detail.bp_agent_name"
            placeholder="请选择经销商"
            @click="selectAgent"
          >
        </item>
        <item v-if="read">
          <div slot="name">经销商</div>
          <input slot="content" v-model="detail.bp_agent_name" readonly placeholder="暂无数据" >
93 94 95
        </item>
        <item>
          <div slot="name">承租人</div>
96 97 98 99 100 101
          <input
            slot="content"
            v-model="detail.bp_name"
            :placeholder="read?'暂无数据':'请输入承租人姓名'"
            readonly="read"
          >
102
        </item>
103
        <item v-if="!read" :showArrow="true">
104
          <div slot="name">产品线</div>
linxin's avatar
linxin committed
105
          <input
106 107 108 109 110 111 112 113 114
            slot="content"
            v-model="detail.division_n"
            placeholder="请选择产品线"
            @click="selectProductLine"
          >
        </item>
        <item v-if="read">
          <div slot="name">产品线</div>
          <input slot="content" v-model="detail.division_n" readonly placeholder="暂无数据" >
115 116 117
        </item>
        <item>
          <div slot="name">合同金额</div>
118 119 120 121 122 123
          <input
            slot="content"
            v-model="detail.total_price"
            :placeholder="read?'暂无数据':'请输入合同金额'"
            readonly="read"
          >
124
        </item>
125
        <item v-if="!read" :showArrow="true">
126
          <div slot="name">商务政策</div>
linxin's avatar
linxin committed
127
          <input
128 129 130 131 132 133 134 135 136
            slot="content"
            v-model="detail.product_plan_name"
            placeholder="请选择合同政策"
            @click="selectProductPlan"
          >
        </item>
        <item v-if="read">
          <div slot="name">商务政策</div>
          <input slot="content" v-model="detail.product_plan_name" readonly placeholder="暂无数据" >
137 138 139
        </item>
        <item>
          <div slot="name">租赁物数量</div>
140
          <input slot="content" v-model="detail.product_num" readonly="read" placeholder="请输入租赁物数量" >
141 142 143
        </item>
      </list-item>
      <div class="userInfo">设备清单</div>
144 145 146 147
      <div
        v-for="(item,index) in equip"
        :key="index"
        class="equipment"
linxin's avatar
linxin committed
148
        @click="downNum = true;getRent(item.contract_id)"
149
      >
150 151 152 153 154 155 156 157 158 159
        <div class="left">
          <span>
            <img src="@/assets/contractStart/list.png" >
          </span>
        </div>
        <div class="center">
          <span>租赁物信息</span>
          <span class="status">已维护</span>
          <p>
            参数项
160
            <span>{{ item.product_code }}</span>
161 162
          </p>
        </div>
163
        <div class="right">
164 165 166 167 168
          <img src="@/assets/contractStart/into.png" >
        </div>
      </div>
    </h-content>
    <bottom-tab>
169
      <tab-button class="approve" @click.native="isApprove">发车申请</tab-button>
170
    </bottom-tab>
171 172 173 174
    <div class="bottom-pop">
      <div class="bottom-content">
        <div class="box">
          <div class="fix">
175 176 177 178
            <div class="hide">
              <div class="userInfo">产品查询</div>
              <img src="@/assets/contractStart/delete.png" @click="hideBox" >
            </div>
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
            <div class="bottom-top">
              <input placeholder="请输入产品线" >
              <img src="@/assets/contractStart/delete.png" >
              <input placeholder="请输入参数项" >
              <img src="@/assets/contractStart/delete.png" >
              <span />
            </div>
          </div>
          <div class="wrap">
            <div v-for="(item,index) in 8" :key="index" class="bottom-item">
              <div class="left">
                <p>
                  <img src="@/assets/contractStart/product.png" >
                </p>
              </div>
              <div class="right">
                <ul>
                  <li>
197 198 199 200
                    <span class="name">产品线</span>&ensp; &ensp; 挖掘机
                    <span class="to-right">
                      <span class="name">产品种类</span>&ensp; &ensp; *****
                    </span>
201 202
                  </li>
                  <li>
203 204 205 206
                    <span class="name">参数项</span>&ensp; &ensp; GTZ226
                    <span class="to-right">
                      <span class="name">产品名称</span>&ensp; &ensp; *****
                    </span>
207 208 209 210 211 212 213 214
                  </li>
                </ul>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
215 216 217 218 219 220 221 222
  </h-view>
</template>
<script>
export default {
  data () {
    return {
      num: null,
      downNum: false,
223
      show: false,
linxin's avatar
linxin committed
224 225
      read: false, // 表示只读
      showDate: '',
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
      productLine: [
        {
          code: '5',
          code_name: '测试3',
        },
        {
          code: '9',
          code_name: 'PDJ',
        },
        {
          code: '6',
          code_name: '测试1',
        },
      ],
      productPlan: [
        {
          code: '5',
          code_name: '测试3',
        },
        {
          code: '9',
          code_name: 'PDJ',
        },
        {
          code: '6',
          code_name: '测试1',
        },
      ],
      contract: [
        {
          code: '5',
          code_name: 'PRJ2019003',
        },
        {
          code: '9',
          code_name: 'PRJ2019025',
        },
        {
          code: '6',
          code_name: 'PRJ2019067',
        },
      ],
linxin's avatar
linxin committed
268 269
      agent: [
        {
270 271 272 273 274 275 276 277 278 279
          code: '7475',
          code_name: '北京去楼下科技有限公司',
        },
        {
          code: '7709',
          code_name: '主机厂法人',
        },
        {
          code: '7436',
          code_name: '北京雪族科技有限公司',
linxin's avatar
linxin committed
280 281
        },
      ],
linxin's avatar
linxin committed
282
      info: {
283
        contract_id: '',
284 285 286 287 288 289
        frame_number: '',
        engine: '',
        manufacturer: '',
        license_plate_number: '',
        type: '',
        number: '',
linxin's avatar
linxin committed
290
        date: '',
linxin's avatar
linxin committed
291
      },
linxin's avatar
linxin committed
292
      detail: {
293 294 295 296 297 298 299 300 301 302 303 304 305
        product_num: '',
        first_pay: '',
        gps_fee: '',
        bp_name: '',
        project_number: '',
        bp_agent_name: '',
        product_plan_id_n: '',
        division: '',
        division_n: '',
        product_plan_id: '',
        product_plan_name: '',
        project_id: '',
        bp_id: '',
linxin's avatar
linxin committed
306
      },
linxin's avatar
linxin committed
307 308 309 310 311 312
      equip: [],
      // {
      //   product_id: '3',
      //   product_code: 'GTC389',
      //   contract_id: '231',
      // },
313 314 315
    }
  },
  computed: {
linxin's avatar
linxin committed
316
    numInt () { // 添加设备的时候处理值为空或者nul的情况
linxin's avatar
linxin committed
317 318
      if (this.detail.product_num !== null && this.detail.product_num !== '') {
        return parseInt(this.detail.product_num)
319 320 321 322
      } else {
        return 0
      }
    },
linxin's avatar
linxin committed
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
    carDate () {
      let date = new Date()
      let y = date.getFullYear()
      let m = date.getMonth() + 1
      let d = date.getDate()
      if ((m.toString()).length < 2) {
        m = `0${m}`
      } else if ((d.toString()).length < 2) {
        d = `0${d}`
      }
      return `${y}-${m}-${d}`
    },
  },
  created () {
    this.showDate = this.carDate
338
  },
linxin's avatar
linxin committed
339 340
  beforeRouteEnter (to, from, next) {
    next(vm => {
341 342 343 344 345
      // if (from.name === 'StartList') {
      //   vm.getProductLine()
      //   vm.getProductPlan()
      //   vm.getContractNum()
      // }
linxin's avatar
linxin committed
346
      if (vm.$route.params.project_id) {
347
        vm.read = true
linxin's avatar
linxin committed
348 349 350 351 352
        vm.getDetail()
        vm.getEquipment()
      }
    })
  },
353
  methods: {
linxin's avatar
linxin committed
354 355 356 357 358 359 360 361 362
    showTime (format) {
      this.hlsPopup.showTime({
        nowDate: `${this.carDate}`,
        format: format,
        callback: (date) => {
          this.showDate = date
        },
      })
    },
linxin's avatar
linxin committed
363 364 365
    save () {
      let vm = this
      let url = process.env.basePath + 'leases_info_save'
linxin's avatar
linxin committed
366
      this.info.date = this.showDate
linxin's avatar
linxin committed
367 368 369 370 371 372 373
      let param = {
        master: this.info,
      }
      hlsPopup.showLoading('请稍候')
      vm.$post(url, param).then(function (res) {
        vm.hlsPopup.hideLoading()
        if (res.result === 'S') {
374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
          vm.hlsPopup.showSuccess('保存成功')
        } else {
          hlsPopup.showLongCenter(res.message)
        }
      })
    },
    isSave () {
      this.hlsPopup.showConfirm({
        title: '提示',
        content: '您确定保存吗?',
        onConfirm: data => {
          if (data === 1) {
            this.save()
          }
        },
      })
    },
    isApprove () {
      this.hlsPopup.showConfirm({
        title: '提示',
        content: '您确定申请发车吗?',
        onConfirm: data => {
          if (data === 1) {
            this.approve()
          }
        },
      })
    },
linxin's avatar
linxin committed
402
    getRent (e) {
403
      let vm = this
linxin's avatar
linxin committed
404
      vm.info.contract_id = e
405 406
      let url = process.env.basePath + 'leases_info_query'
      let param = {
linxin's avatar
linxin committed
407
        contract_id: e,
408 409 410 411 412 413 414 415 416 417 418
      }
      hlsPopup.showLoading('请稍候')
      vm.$post(url, param).then(function (res) {
        vm.hlsPopup.hideLoading()
        if (res.result === 'S') {
          Object.assign(vm.info, res.info)
        } else {
          hlsPopup.showLongCenter(res.message)
        }
      })
    },
linxin's avatar
linxin committed
419

420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
    approve () {
      let vm = this
      let url = process.env.basePath + 'car_apply_submit'
      let param = {
        master: {
          project_id: this.$route.params.project_id,
        },
      }
      hlsPopup.showLoading('请稍候')
      vm.$post(url, param).then(function (res) {
        vm.hlsPopup.hideLoading()
        if (res.result === 'S') {
          vm.hlsPopup.showSuccess('申请成功')
        } else {
          hlsPopup.showLongCenter(res.message)
        }
      })
    },
    getEquipment () {
      let vm = this
      let url = process.env.basePath + 'car_equip_list_query'
      let param = {
        project_id: this.$route.params.project_id,
      }
      hlsPopup.showLoading('请稍候')
      vm.$post(url, param).then(function (res) {
        vm.hlsPopup.hideLoading()
        if (res.result === 'S') {
          vm.equip = res.lists
linxin's avatar
linxin committed
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
        } else {
          hlsPopup.showLongCenter(res.message)
        }
      })
    },
    getContractNum () {
      let vm = this
      let url = process.env.basePath + 'linked_contract_query'
      let param = {
        user_phone: window.localStorage.getItem('user_phone'),
      }
      hlsPopup.showLoading('请稍候')
      vm.$post(url, param).then(function (res) {
        vm.hlsPopup.hideLoading()
        if (res.result === 'S') {
          vm.contract = res.lists.map(item => {
            return {
              code: item.project_id,
              code_name: item.project_number,
            }
          })
        } else {
          hlsPopup.showLongCenter(res.message)
        }
      })
    },
    selectContruct () {
      let vm = this
      vm.hlsPopup.selectList({
        list: vm.contract,
        code: 'bp_type',
        object: {},
        returnItem: function (index, obj) {
          vm.detail.project_id = obj.bp_type
          vm.detail.project_number = obj.bp_type_n
        },
      })
    },
    getAgent () {
      let vm = this
      let url = process.env.basePath + 'vendor_list_query'
      let param = {}
      hlsPopup.showLoading('请稍候')
      vm.$post(url, param).then(function (res) {
        vm.hlsPopup.hideLoading()
        if (res.result === 'S') {
          vm.agent = res.lists.map(item => {
            return {
              code: item.factory_bp_id,
              code_name: item.bp_name,
            }
          })
linxin's avatar
linxin committed
501 502 503 504 505
        } else {
          hlsPopup.showLongCenter(res.message)
        }
      })
    },
linxin's avatar
linxin committed
506 507 508 509 510 511 512 513 514 515 516 517 518
    selectAgent () {
      let vm = this
      vm.hlsPopup.selectList({
        list: vm.agent,
        code: 'bp_type',
        object: {},
        returnItem: function (index, obj) {
          vm.detail.bp_id = obj.bp_type
          vm.detail.bp_agent_name = obj.bp_type_n
        },
      })
    },
    getDetail () {
linxin's avatar
linxin committed
519 520 521 522 523 524 525 526 527 528 529
      // let obj = {
      //   product_plan_id: '29',
      //   product_num: '1',
      //   first_pay: '102500',
      //   division_n: '平地机',
      //   gps_fee: '500',
      //   bp_name: '黄冲',
      //   project_number: 'PJ2019050043',
      //   bp_agent_name: '上海汉得信息技术股份有限公司 ',
      //   product_plan_id_n: 'PDJ',
      //   total_price: '1111111111',
linxin's avatar
linxin committed
530
      // }
linxin's avatar
linxin committed
531 532 533 534 535 536 537 538 539 540 541 542 543 544 545
      // Object.assign(this.detail, obj)
      let vm = this
      let url = process.env.basePath + 'con_contract_detial'
      let param = {
        project_id: this.$route.params.project_id,
      }
      hlsPopup.showLoading('请稍候')
      vm.$post(url, param).then(function (res) {
        vm.hlsPopup.hideLoading()
        if (res.result === 'S') {
          Object.assign(vm.detail, res.info)
        } else {
          hlsPopup.showLongCenter(res.message)
        }
      })
linxin's avatar
linxin committed
546
    },
547 548 549 550 551 552
    changeHeight () {
      let popClient = document.querySelector('.bottom-content')
      let bottomPop = document.querySelector('.bottom-pop')
      bottomPop.style.height = '100%'
      popClient.style.height = '500px'
    },
linxin's avatar
linxin committed
553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614
    getProductLine () {
      let vm = this
      let url = process.env.basePath + 'division_query'
      let param = {}
      hlsPopup.showLoading('请稍候')
      vm.$post(url, param).then(function (res) {
        vm.hlsPopup.hideLoading()
        if (res.result === 'S') {
          vm.productLine = res.lists.map(item => {
            return {
              code: item.division,
              code_name: item.division_n,
            }
          })
        } else {
          hlsPopup.showLongCenter(res.message)
        }
      })
    },
    selectProductLine () {
      let vm = this
      vm.hlsPopup.selectList({
        list: vm.productLine,
        code: 'bp_type',
        object: {},
        returnItem: function (index, obj) {
          vm.detail.division = obj.bp_type
          vm.detail.division_n = obj.bp_type_n
        },
      })
    },
    getProductPlan () {
      let vm = this
      let url = process.env.basePath + 'prd_plan_defintion'
      let param = {}
      hlsPopup.showLoading('请稍候')
      vm.$post(url, param).then(function (res) {
        vm.hlsPopup.hideLoading()
        if (res.result === 'S') {
          vm.productPlan = res.lists.map(item => {
            return {
              code: item.product_plan_id,
              code_name: item.product_plan_name,
            }
          })
        } else {
          hlsPopup.showLongCenter(res.message)
        }
      })
    },
    selectProductPlan () {
      let vm = this
      vm.hlsPopup.selectList({
        list: vm.productPlan,
        code: 'bp_type',
        object: {},
        returnItem: function (index, obj) {
          vm.detail.product_plan_id = obj.bp_type
          vm.detail.product_plan_name = obj.bp_type_n
        },
      })
    },
615 616 617 618 619 620 621
    hideBox () {
      let popClient = document.querySelector('.bottom-content')
      let bottomPop = document.querySelector('.bottom-pop')
      bottomPop.style.height = '0'
      popClient.style.height = '0'
    },
  },
622 623 624 625 626 627 628
}
</script>
<style lang="less" scoped>
#addCar {
  input::placeholder {
    color: #888c8f;
  }
629 630 631 632 633 634 635 636 637
  .trans-enter-active,
  .trans-leave-active {
    transition: opacity 0.5s;
  }
  .trans-enter,
  .trans-leave-active {
    opacity: 0;
  }
  .hide {
638 639 640
    display: flex;
    justify-content: flex-start;
    align-items: center;
641 642 643 644
    img {
      width: 30px;
      height: 30px;
      margin-left: 65%;
645 646
    }
  }
647 648
  .wrap {
    padding-top: 92px;
649
  }
650 651 652 653
  .modal-show {
    width: 100%;
    height: 100%;
    position: absolute;
654
    display: flex;
655
    z-index: 900;
656 657 658 659 660 661
    background-color: rgba(56, 63, 69, 0.3);
    justify-content: center;
    align-items: center;
    .down {
      position: relative;
      width: 314px;
linxin's avatar
linxin committed
662
      height: 586px;
663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699
      background-size: 301px 24.7px;
      background-color: #fff;
    }
    .top {
      width: 100%;
      height: 44px;
      font-family: PingFangSC-Semibold;
      font-size: 16px;
      letter-spacing: 0;
      text-align: center;
      line-height: 44px;
      color: #fff;
      background: #0041c4;
      img {
        width: 16px;
        height: 16px;
        float: right;
        margin-top: 13px;
        margin-right: 20px;
      }
    }
    .down-content {
      margin-top: 8px;
      span:first-child {
        font-family: PingFangSC-Regular;
        font-size: 13px;
        color: #656464;
        letter-spacing: 0;
        margin-left: 15px;
      }
      .photo {
        width: 172px;
        height: 120px;
        border: 1px solid #dcdcdd;
        border-radius: 2px;
        margin: 0 auto;
        margin-top: 12px;
700 701 702 703 704
        background: url("../../assets/contractStart/photo.png") 70px no-repeat;
        background-size: 24px 20px;
        img {
          width: 100%;
          height: 100%;
705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816
        }
      }
    }
    button {
      width: 240px;
      height: 40px;
      position: absolute;
      color: #fff;
      bottom: 16px;
      left: 30.5px;
      background-color: #0041c4;
      border-radius: 4px;
    }
  }
  .userInfo {
    height: 45px;
    line-height: 45px;
    color: #0041c4;
    font-size: 15px;
    margin-left: 16px;
    position: relative;
  }
  .userInfo::before {
    content: "";
    display: block;
    width: 4px;
    height: 20px;
    background-color: #0041c4;
    position: absolute;
    left: -15px;
    top: 12px;
  }
  .equipment:not(:first-child) {
    margin-top: 2px;
  }
  .equipment {
    width: 359px;
    height: 72px;
    background-color: #fff;
    margin: 0 auto;
    display: flex;
    .left {
      flex: 1;
      span {
        display: block;
        width: 30px;
        height: 30px;
        background-color: #e8e9ed;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 10px;
        margin-top: 8px;
        img {
          width: 11px;
          height: 14px;
        }
      }
    }
    .center {
      flex: 6;
      span:first-child {
        font-family: PingFangSC-Regular;
        font-size: 14px;
        color: #383f45;
        letter-spacing: 0.43px;
        margin-left: 10px;
        margin-top: 12px;
      }
      .status {
        display: inline-block;
        width: 46px;
        height: 16px;
        text-align: center;
        line-height: 16px;
        font-family: PingFangSC-Medium;
        font-size: 12px;
        color: #ffffff;
        letter-spacing: 0;
        background-color: #1d3fff;
        margin-left: 21px;
        margin-top: 12px;
      }
      p {
        font-family: PingFangSC-Regular;
        font-size: 13px;
        color: rgba(56, 63, 69, 0.6);
        letter-spacing: 0.4px;
        margin-left: 10px;
        margin-top: 10px;
        span {
          font-family: Helvetica;
          font-size: 13px;
          color: rgba(56, 63, 69, 0.6);
        }
      }
    }
    .right {
      flex: 1;
      display: flex;
      align-items: center;
      img {
        width: 13px;
        height: 13px;
      }
    }
  }
  .approve {
    color: #fff;
    background-color: #0041c4;
  }
817 818 819 820 821 822 823 824 825 826 827 828 829
  .bottom-pop {
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0px;
    z-index: 999;
    background-color: rgba(56, 63, 69, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    .bottom-content {
      width: 100%;
      height: 0px;
830
      transition: 0.3s linear;
831 832 833 834 835 836 837 838
      border-radius: 20px 20px 0 0;
      position: absolute;
      bottom: 0px;
      background-color: #fff;
      overflow-y: scroll;
      .box {
        width: 359px;
        margin: 0 auto;
839 840
        .fix {
          position: fixed;
841 842
          background-color: #fff;
          border-radius: 20px;
843
          z-index: 999;
844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924
        }
        .bottom-top {
          width: 100%;
          display: flex;
          justify-content: flex-start;
          padding-bottom: 10px;
          border-bottom: 1px solid #d9dbdf;
          input {
            width: 148px;
            height: 36px;
            background-color: rgba(239, 239, 239, 0.55);
            border-radius: 4px;
            text-indent: 14px;
          }
          input:last-of-type {
            margin-left: -5px;
          }
          img {
            width: 15px;
            height: 15px;
            position: relative;
            top: 10px;
            left: -26px;
          }
          span {
            display: inline-block;
            width: 40px;
            height: 36px;
            border-radius: 4px;
            background: url("../../assets/contractStart/select.png") 10px
              no-repeat #1d3fff;
            background-size: 16px 16px;
          }
        }
        .bottom-item {
          width: 100%;
          height: 80px;
          background: #f7f7f7;
          border-radius: 4px;
          margin-top: 10px;
          display: flex;
          justify-content: flex-start;
          .left {
            width: 17%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            p {
              width: 30px;
              height: 30px;
              background: #e0e1e5;
              border-radius: 8px;
              display: flex;
              justify-content: center;
              align-items: center;
              img {
                width: 14px;
                height: 14px;
              }
            }
          }
          .right {
            width: 83%;
            height: 100%;
            ul {
              height: 100%;
              li {
                width: 100%;
                height: 50%;
                line-height: 36px;
                font-family: PingFangSC-Regular;
                font-size: 14px;
                color: #383f45;
                .name {
                  font-family: PingFangSC-Regular;
                  font-size: 14px;
                  color: rgba(56, 63, 69, 0.6);
                  letter-spacing: 0.43px;
                }
              }
925 926 927
              .to-right {
                float: right;
                margin-right: 36px;
928 929 930 931 932 933 934 935 936 937
              }
              li:first-child {
                border-bottom: 1px solid #fff;
              }
            }
          }
        }
      }
    }
  }
938 939
}
</style>