drawback-detail.vue 6.6 KB
Newer Older
linxin's avatar
linxin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
/**
* @Author Sean
* @Date 2019/10/22
*/
<template>
  <h-view id="reimburseDetail" class="public-style" style="height: 100%">
    <h-header :proportion="[5,1,1]" class="bar-custom">
      <div slot="left" class="h-header-btn">
        <img src="@/assets/userBind/arrow.png" @click="$routeGo()" >
        <span>退款明细</span>
      </div>
    </h-header>
    <h-content>
      <list-item :item-height="44">
        <item>
          <div slot="name">交易流水号</div>
          <div slot="content">{{ detail.order_number }}</div>
        </item>
        <item>
          <div slot="name">交易时间</div>
          <div slot="content">{{ detail.order_date }}</div>
        </item>
        <item>
          <div slot="name">收款账号</div>
          <div slot="content">{{ '暂无字段' }}</div>
        </item>
        <item>
          <div slot="name">收款账户名称</div>
          <div slot="content">{{ '暂无字段' }}</div>
        </item>
        <item>
          <div slot="name">商业伙伴</div>
          <div slot="content">{{ detail.bp_name }}</div>
        </item>
        <item>
          <div slot="name">商业伙伴类型</div>
          <div slot="content">{{ detail.bp_type_n }}</div>
        </item>
        <item>
          <div slot="name">付款账号</div>
          <div slot="content">{{ '暂无字段' }}</div>
        </item>
        <item>
          <div slot="name">付款账户名称</div>
          <div slot="content">{{ '暂无字段' }}</div>
        </item>
      </list-item>
      <div v-for="(list,index) in conList" :key="index" class="contract">
        <div>
          <div class="top">
            <img src="@/assets/reimburseMyself/q.png" >
            <span class="number">合同号</span>
            <span>{{ list.project_number }}</span>
          </div>
linxin's avatar
linxin committed
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
          <scroll ref="scroll" :updateData="[conList]" :pullUp="true" @pullingUp="getConList">
            <div v-for="(item,indexTwo) in list.con_lists" :key="indexTwo" class="bottom">
              <list-item >
                <item>
                  <div slot="name">首付款</div>
                  <div slot="content">{{ item.down_payment | currency }}</div>
                </item>
                <item>
                  <div slot="name">保证金</div>
                  <div slot="content">{{ item.deposit | currency }}</div>
                </item>
                <item>
                  <div slot="name">手续费</div>
                  <div slot="content">{{ item.lease_charge | currency }}</div>
                </item>
                <item>
                  <div slot="name">GPS费用</div>
                  <div slot="content">{{ item.gps_fee | currency }}</div>
                </item>
                <item>
                  <div slot="name">保险押金</div>
                  <div slot="content">{{ item.insurance_fee	| currency }}</div>
                </item>
              </list-item>
            </div>
          </scroll>
linxin's avatar
linxin committed
81 82 83 84 85 86 87 88 89 90 91 92
        </div>
      </div>
    </h-content>
  </h-view>
</template>

<script>
export default {
  data () {
    return {
      detail: {},
      conList: [],
linxin's avatar
linxin committed
93
      pagenum: 1,
linxin's avatar
linxin committed
94 95 96 97
    }
  },
  beforeRouteEnter (to, from, next) {
    next(vm => {
linxin's avatar
linxin committed
98
      vm.pagenum = 1
linxin's avatar
linxin committed
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
      vm.getDetail()
      vm.getConList()
    })
  },
  created: function () {},
  mounted: function () {},
  updated: function () {},
  destroyed: function () {},
  methods: {
    getDetail () {
      let vm = this
      let url = process.env.basePath + 'my_repayment_detial_query'
      let param = {
        order_id: vm.$route.params.order_id,
      }
      hlsPopup.showLoading('请稍候')
      vm.$post(url, param).then(function (res) {
        vm.hlsPopup.hideLoading()
        if (res.result === 'S') {
          vm.detail = res.info
        } else {
          hlsPopup.showLongCenter(res.message)
        }
      })
    },
    getConList () {
      let vm = this
      let url = process.env.basePath + 'my_con_list_query'
      let param = {
        order_id: vm.$route.params.order_id,
linxin's avatar
linxin committed
129 130
        pagesize: 10,
        pagenum: vm.pagenum,
linxin's avatar
linxin committed
131 132 133 134 135
      }
      hlsPopup.showLoading('请稍候')
      vm.$post(url, param).then(function (res) {
        vm.hlsPopup.hideLoading()
        if (res.result === 'S') {
linxin's avatar
linxin committed
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
          let returnData = []
          returnData = res.prj_lists
          if (returnData.length === 0) {
            vm.$refs.scroll.update(true)
          } else if (returnData.length > 0 && returnData.length < 10) {
            vum.forEach(returnData, function (data, index, array) {
              vm.conList.push(array[index])
            })
            vm.pagenum++
            vm.$refs.scroll.update(true)
          } else if (returnData.length === 10) {
            vum.forEach(returnData, function (data, index, array) {
              vm.conList.push(array[index])
            })
            vm.pagenum++
            vm.$refs.scroll.update(false)
          }
linxin's avatar
linxin committed
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 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
        } else {
          hlsPopup.showLongCenter(res.message)
        }
      })
    },
  },
}
</script>
<style lang="less" rel="stylesheet">
#reimburseDetail {
  .h-header-btn {
    img {
      width: 16px;
      height: 16px;
      margin-left: 4px;
    }
    span {
      font-family: PingFangSC-Semibold;
      margin-left: 16px;
      font-size: 17px;
      letter-spacing: 0.61px;
      line-height: 24px;
    }
  }
  .hls-item .contents .add-name .left-icon {
    width: 30px;
  }

  .list-wrap {
    margin: 10px;
  }

  .add-name {
    .time-font {
      font-family: PingFangSC-Regular;
      font-size: 14px;
      color: #656464;
    }
  }

  .add-content {
    .money-font {
      font-family: Verdana-Bold;
      font-size: 15px;
      color: rgba(56, 63, 69, 0.6);
      font-weight: 600;
    }

    .time-font {
      font-family: PingFangSC-Regular;
      font-size: 14px;
      color: #656464;
    }
  }
  .contract {
    width: 359px;
    background-color: #fff;
    margin: 0 auto;
    margin-top: 8px;
    .top {
      height: 43px;
      display: flex;
      align-items: center;
      display: flex;
      img {
        width: 30px;
        height: 30px;
        margin-left: 10px;
      }
      .number {
        margin-left: 10px;
        font-family: PingFangSC-Semibold;
        font-size: 14px;
        color: #4b4a4b;
        letter-spacing: 0;
        line-height: 18px;
      }
      span:last-child {
        margin-left: 116px;
        font-family: PingFangSC-Semibold;
        font-size: 14px;
        color: rgba(75, 74, 75, 0.97);
        letter-spacing: 0;
        line-height: 18px;
      }
    }
    .bottom {
      width: 300px;
      margin: 0 auto;
      display: flex;
    }
    .left {
      flex: 1;
    }
    .right {
      flex: 1;
      text-align: right;
    }
  }
}
</style>