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

438 439 440 441 442 443 444 445 446 447 448 449 450
    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('申请成功')
linxin's avatar
linxin committed
451 452 453 454 455
          setTimeout(() => {
            vm.$router.push({
              name: 'StartList',
            })
          }, 2000)
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
        } 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
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 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523
        } 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
524 525 526 527 528
        } else {
          hlsPopup.showLongCenter(res.message)
        }
      })
    },
linxin's avatar
linxin committed
529 530 531 532 533 534 535 536 537 538 539 540 541
    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
542 543 544 545 546 547 548 549 550 551 552
      // 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
553
      // }
linxin's avatar
linxin committed
554 555 556 557 558 559 560 561 562 563 564 565 566 567 568
      // 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
569
    },
570 571 572 573 574 575
    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
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 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633
    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
linxin's avatar
linxin committed
634
          vm.detail.product_plan_id_n = obj.bp_type_n
linxin's avatar
linxin committed
635 636 637
        },
      })
    },
638 639 640 641 642 643 644
    hideBox () {
      let popClient = document.querySelector('.bottom-content')
      let bottomPop = document.querySelector('.bottom-pop')
      bottomPop.style.height = '0'
      popClient.style.height = '0'
    },
  },
645 646 647 648 649 650 651
}
</script>
<style lang="less" scoped>
#addCar {
  input::placeholder {
    color: #888c8f;
  }
652 653 654 655 656 657 658 659 660
  .trans-enter-active,
  .trans-leave-active {
    transition: opacity 0.5s;
  }
  .trans-enter,
  .trans-leave-active {
    opacity: 0;
  }
  .hide {
661 662 663
    display: flex;
    justify-content: flex-start;
    align-items: center;
664 665 666 667
    img {
      width: 30px;
      height: 30px;
      margin-left: 65%;
668 669
    }
  }
670 671
  .wrap {
    padding-top: 92px;
672
  }
673 674 675 676
  .modal-show {
    width: 100%;
    height: 100%;
    position: absolute;
677
    display: flex;
678
    z-index: 900;
679 680 681 682 683 684
    background-color: rgba(56, 63, 69, 0.3);
    justify-content: center;
    align-items: center;
    .down {
      position: relative;
      width: 314px;
linxin's avatar
linxin committed
685
      height: 616px;
686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722
      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;
723 724 725 726 727
        background: url("../../assets/contractStart/photo.png") 70px no-repeat;
        background-size: 24px 20px;
        img {
          width: 100%;
          height: 100%;
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
        }
      }
    }
    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;
        margin-left: 21px;
        margin-top: 12px;
      }
linxin's avatar
linxin committed
811 812 813 814 815 816 817 818
      .unMantain{
        background-color: #1d3fff;
      }
      .mantain{
        background-color: #FFF;
        border:1px solid #1d3fff;
        color: #1d3fff;
      }
819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846
      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;
  }
847 848 849 850 851 852 853 854 855 856 857 858 859
  .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;
860
      transition: 0.3s linear;
861 862 863 864 865 866 867 868
      border-radius: 20px 20px 0 0;
      position: absolute;
      bottom: 0px;
      background-color: #fff;
      overflow-y: scroll;
      .box {
        width: 359px;
        margin: 0 auto;
869 870
        .fix {
          position: fixed;
871 872
          background-color: #fff;
          border-radius: 20px;
873
          z-index: 999;
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 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954
        }
        .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;
                }
              }
955 956 957
              .to-right {
                float: right;
                margin-right: 36px;
958 959 960 961 962 963 964 965 966 967
              }
              li:first-child {
                border-bottom: 1px solid #fff;
              }
            }
          }
        }
      }
    }
  }
968 969
}
</style>