zj
2024-06-03 561ca040085b6fd6766e471a70b4a3c682deadc2
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
<template>
  <div class="profile-box">
    <img class="profile" :src="require(`@/assets/image/6Profile.png`)" alt="" />
 
    <!-- src/assets/image/6Profile.png -->
  </div>
</template>
<script>
import ExTabs from "./";
export default {
  name: "ListQuotation",
  data() {
    return {
      fixDate,
      HOST_URL,
      active: 0,
      type: "left", //left 从左往右 right 从有王座
      sortVal: 0,
    };
  },
};
</script>
 
<style lang="scss" scoped>
.profile-box {
  .profile {
    width: 100%;
    // height: 200px;
  }
}
</style>