logList.vue 579 Bytes
Newer Older
lanbaoming's avatar
lanbaoming committed
1 2
<template>
  <div class="app-container">
3
    <logListCommon :offerId="offerId" />
lanbaoming's avatar
lanbaoming committed
4 5 6 7
  </div>
</template>

<script>
8
import logListCommon from "@/views/ecw/offer/logListCommon"
lanbaoming's avatar
lanbaoming committed
9
export default {
10 11
  name: "offerLogList",
  components: { logListCommon },
lanbaoming's avatar
lanbaoming committed
12
  data() {
13
    return {}
lanbaoming's avatar
lanbaoming committed
14
  },
15 16 17
  computed: {
    offerId() {
      return parseInt(this.$route.query.offerId || 0)
1483922988@qq.com's avatar
6  
1483922988@qq.com committed
18
    }
lanbaoming's avatar
lanbaoming committed
19
  }
1483922988@qq.com's avatar
6  
1483922988@qq.com committed
20
}
lanbaoming's avatar
lanbaoming committed
21 22
</script>
<style scoped>
1483922988@qq.com's avatar
6  
1483922988@qq.com committed
23 24 25 26 27 28 29 30 31 32
.card-title {
  font-size: 18px;
  font-weight: bold;
}
.offer-header {
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
lanbaoming's avatar
lanbaoming committed
33
</style>