123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656 |
- <template>
- <div class="Collections">
- <div class="ban"></div>
- <!-- 面包屑 -->
- <div class="pos">
- <span class="pos1">Your Position: </span>
- <Router-link to="/Layout/Home">Home></Router-link>
- <Router-link to="/Layout/Collections/Bronzes">Collections></Router-link>
- <span>{{ mbTxt }}></span>
- </div>
- <!-- 内容 -->
- <div class="conten" :class="mbTxt">
- <ul>
- <li
- @click="cutTab(item.url)"
- :class="{ active: mbTxt === item.url }"
- v-for="(item, index) in tabData"
- :key="item.name"
- :style="`background-image:url(/data/Collections/tab/${
- index + 1
- }.png)`"
- >
- <div class="bac">{{ item.name }}</div>
- </li>
- </ul>
- <!-- 右侧内容 -->
- <div class="right">
- <div
- class="row"
- v-for="(item, index) in data"
- :key="item.id"
- @click="lookBig(item)"
- >
- <img
- class="rowImg"
- :src="`/data/Collections/${mbTxt}/${index + 1}.png`"
- alt=""
- />
- <div class="info">
- <!-- 箭头 -->
- <img src="/data/Collections/arrow.png" alt="" />
- <h3 v-html="item.h3"></h3>
- <p v-html="item.p"></p>
- </div>
- </div>
- </div>
- </div>
- <!-- 查看详情组件 -->
- <CollectionsInfo v-if="isShow" :isShow.sync="isShow" :infoObj="infoObj" />
- </div>
- </template>
- <script>
- import CollectionsInfo from "./component/info.vue";
- import { Collections } from "@/views/dataAll.js";
- export default {
- name: "Collections",
- components: { CollectionsInfo },
- data() {
- //这里存放数据
- return {
- // 点击单个查看图片
- isShow: false,
- infoObj: {},
- // ---------
- data: [],
- mbTxt: "Bronzes",
- tabData: [
- { name: "Bronzes", url: "Bronzes" },
- { name: "Ceramics", url: "Ceramics" },
- { name: "Buddhist Statues", url: "Buddhist" },
- { name: "Jadewares", url: "Jadewares" },
- { name: "Calligraphies", url: "Calligraphies" },
- { name: "Paintings", url: "Paintings" },
- { name: "Gold & Silverwares", url: "Gold" },
- { name: "Coins & Banknotes", url: "Coins" },
- { name: "Brocades & Embroideries", url: "Brocades" },
- { name: "Cultural Supplies", url: "Cultural" },
- { name: "Miscellaneous", url: "Miscellaneous" },
- ],
- };
- },
- //监听属性 类似于data概念
- computed: {},
- //监控data中的数据变化
- watch: {
- // 监听地址栏参数变化
- $route() {
- // 拿到路由参数id
- let temp = this.$route.params.id;
- this.mbTxt = temp;
- this.data = Collections[this.mbTxt];
- },
- },
- //方法集合
- methods: {
- // 点击单个查看图片
- lookBig(item) {
- this.infoObj = item;
- this.isShow = true;
- this.$nextTick(() => {
- // 获取body,防止滚动
- let body = document.querySelector("body");
- body.style.overflow = "hidden";
- });
- },
- cutTab(path) {
- this.$router.push(`/Layout/Collections/${path}`).catch(() => {});
- },
- },
- //生命周期 - 创建完成(可以访问当前this实例)
- created() {
- // 拿到路由参数id
- let temp = this.$route.params.id;
- this.mbTxt = temp;
- this.data = Collections[this.mbTxt];
- },
- //生命周期 - 挂载完成(可以访问DOM元素)
- mounted() {},
- beforeCreate() {}, //生命周期 - 创建之前
- beforeMount() {}, //生命周期 - 挂载之前
- beforeUpdate() {}, //生命周期 - 更新之前
- updated() {}, //生命周期 - 更新之后
- beforeDestroy() {}, //生命周期 - 销毁之前
- destroyed() {}, //生命周期 - 销毁完成
- activated() {}, //如果页面有keep-alive缓存功能,这个函数会触发
- };
- </script>
- <style lang='less' scoped>
- .Collections {
- background-color: #fff;
- .ban {
- width: 100%;
- margin: auto;
- background: url("/data/Collections/banner.jpg") no-repeat center top #000000;
- height: 300px;
- }
- .pos {
- height: 28px;
- line-height: 28px;
- font-size: 12px;
- margin: 0 auto 10px auto;
- width: 1180px;
- .pos1 {
- color: #c20e11;
- }
- }
- .conten {
- display: flex;
- width: 1200px;
- overflow: hidden;
- margin: 0 auto;
- padding-bottom: 20px;
- zoom: 1;
- & > ul {
- width: 210px;
- & > li {
- cursor: pointer;
- width: 210px;
- height: 48px;
- position: relative;
- background: #181818 no-repeat right center;
- border-bottom: 1px solid #fff;
- .bac {
- text-indent: 10px;
- font-size: 14px;
- color: #fff;
- line-height: 48px;
- z-index: 10;
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- }
- &:hover {
- .bac {
- background-color: rgba(254, 24, 24, 0.7);
- }
- }
- }
- .active {
- .bac {
- background-color: rgba(254, 24, 24, 0.7);
- }
- }
- }
- .right {
- border-left: 1px solid #d8d8d8;
- flex: 1;
- margin-left: 10px;
- padding-left: 10px;
- position: relative;
- .row {
- top: 10px;
- left: 10px;
- position: absolute;
- width: 310px;
- .rowImg {
- width: 310px;
- // height: 400px;
- vertical-align: middle;
- }
- .info {
- position: relative;
- padding: 20px 15px;
- & > img {
- opacity: 0;
- position: absolute;
- top: -30px;
- left: 30px;
- }
- h3 {
- font-size: 18px;
- color: #262626;
- line-height: 22px;
- padding-bottom: 5px;
- font-weight: 700;
- /deep/& > i {
- font-style: italic;
- }
- /deep/.smImg {
- width: 41px;
- height: 32px;
- }
- }
- p {
- font-size: 14px;
- color: #626262;
- }
- }
- &:hover {
- box-shadow: 0 0 10px #000;
- .info {
- background-color: #ca000a;
- & > img {
- opacity: 1;
- }
- h3 {
- color: #fff;
- }
- p {
- color: #fff;
- }
- }
- }
- }
- }
- }
- // 第一个页面
- .conten {
- height: 5291px;
- .row {
- &:nth-of-type(2) {
- left: 330px;
- }
- &:nth-of-type(3) {
- left: 650px;
- }
- &:nth-of-type(4) {
- left: 330px;
- top: 369px;
- }
- &:nth-of-type(5) {
- left: 650px;
- top: 589px;
- }
- &:nth-of-type(6) {
- top: 609px;
- }
- &:nth-of-type(7) {
- left: 330px;
- top: 948px;
- }
- &:nth-of-type(8) {
- left: 650px;
- top: 968px;
- }
- &:nth-of-type(9) {
- top: 1166px;
- }
- &:nth-of-type(10) {
- left: 650px;
- top: 1325px;
- }
- &:nth-of-type(11) {
- left: 330px;
- top: 1507px;
- }
- &:nth-of-type(12) {
- left: 650px;
- top: 1724px;
- }
- &:nth-of-type(13) {
- top: 1747px;
- }
- &:nth-of-type(14) {
- left: 330px;
- top: 1846px;
- }
- &:nth-of-type(15) {
- left: 330px;
- top: 2183px;
- }
- &:nth-of-type(16) {
- left: 650px;
- top: 2269px;
- }
- &:nth-of-type(17) {
- top: 2328px;
- }
- &:nth-of-type(18) {
- left: 330px;
- top: 2762px;
- }
- &:nth-of-type(19) {
- left: 650px;
- top: 2848px;
- }
- &:nth-of-type(20) {
- top: 2887px;
- }
- &:nth-of-type(21) {
- top: 3242px;
- }
- &:nth-of-type(22) {
- left: 330px;
- top: 3321px;
- }
- &:nth-of-type(23) {
- left: 650px;
- top: 3427px;
- }
- &:nth-of-type(24) {
- top: 3601px;
- }
- &:nth-of-type(25) {
- left: 330px;
- top: 3680px;
- }
- &:nth-of-type(26) {
- left: 650px;
- top: 3966px;
- }
- &:nth-of-type(27) {
- top: 3980px;
- }
- &:nth-of-type(28) {
- left: 330px;
- top: 4101px;
- }
- &:nth-of-type(29) {
- left: 650px;
- top: 4365px;
- }
- &:nth-of-type(30) {
- top: 4559px;
- }
- &:nth-of-type(31) {
- left: 330px;
- top: 4680px;
- }
- &:nth-of-type(32) {
- left: 650px;
- top: 4742px;
- }
- }
- }
- .Ceramics {
- height: 1603px;
- .row {
- &:nth-of-type(4) {
- top: 411px;
- }
- &:nth-of-type(7) {
- left: 650px;
- top: 990px;
- }
- &:nth-of-type(8) {
- left: 330px;
- top: 1054px;
- }
- }
- }
- .Buddhist {
- height: 1870px;
- .row {
- &:nth-of-type(4) {
- top: 347px;
- }
- &:nth-of-type(5) {
- top: 587px;
- }
- &:nth-of-type(6) {
- top: 653px;
- }
- &:nth-of-type(7) {
- top: 944px;
- }
- &:nth-of-type(8) {
- top: 1146px;
- }
- &:nth-of-type(9) {
- top: 1252px;
- }
- }
- }
- .Jadewares {
- height: 1405px;
- .row {
- &:nth-of-type(4) {
- left: 650px;
- top: 382px;
- }
- &:nth-of-type(5) {
- left: 10px;
- top: 422px;
- }
- &:nth-of-type(6) {
- left: 330px;
- top: 582px;
- }
- &:nth-of-type(7) {
- left: 650px;
- top: 732px;
- }
- &:nth-of-type(8) {
- left: 10px;
- top: 996px;
- }
- }
- }
- .Calligraphies {
- height: 2314px;
- .row {
- &:nth-of-type(4) {
- left: 650px;
- top: 367px;
- }
- &:nth-of-type(5) {
- left: 10px;
- top: 429px;
- }
- &:nth-of-type(6) {
- left: 330px;
- top: 609px;
- }
- &:nth-of-type(7) {
- left: 650px;
- top: 744px;
- }
- &:nth-of-type(8) {
- left: 10px;
- top: 808px;
- }
- &:nth-of-type(9) {
- left: 650px;
- top: 1123px;
- }
- &:nth-of-type(10) {
- left: 330px;
- top: 1228px;
- }
- &:nth-of-type(11) {
- left: 10px;
- top: 1458px;
- }
- &:nth-of-type(12) {
- left: 650px;
- top: 1779px;
- }
- &:nth-of-type(13) {
- left: 330px;
- top: 1807px;
- }
- }
- }
- .Paintings {
- height: 2448px;
- .row {
- &:nth-of-type(4) {
- left: 330px;
- top: 367px;
- }
- &:nth-of-type(5) {
- left: 10px;
- top: 567px;
- }
- &:nth-of-type(6) {
- left: 650px;
- top: 589px;
- }
- &:nth-of-type(7) {
- left: 10px;
- top: 889px;
- }
- &:nth-of-type(8) {
- left: 650px;
- top: 926px;
- }
- &:nth-of-type(9) {
- left: 330px;
- top: 966px;
- }
- &:nth-of-type(10) {
- left: 330px;
- top: 1323px;
- }
- &:nth-of-type(11) {
- left: 10px;
- top: 1486px;
- }
- &:nth-of-type(12) {
- left: 650px;
- top: 1503px;
- }
- &:nth-of-type(13) {
- left: 330px;
- top: 1829px;
- }
- &:nth-of-type(14) {
- left: 10px;
- top: 1845px;
- }
- }
- }
- .Gold {
- height: 1652px;
- .row {
- &:nth-of-type(4) {
- left: 330px;
- top: 367px;
- }
- &:nth-of-type(5) {
- left: 650px;
- top: 369px;
- }
- &:nth-of-type(6) {
- left: 10px;
- top: 598px;
- }
- &:nth-of-type(7) {
- left: 330px;
- top: 746px;
- }
- &:nth-of-type(8) {
- left: 650px;
- top: 769px;
- }
- &:nth-of-type(9) {
- left: 650px;
- top: 1109px;
- }
- &:nth-of-type(10) {
- left: 330px;
- top: 1128px;
- }
- }
- }
- .Coins {
- height: 2093px;
- .row {
- &:nth-of-type(4) {
- left: 330px;
- top: 411px;
- }
- &:nth-of-type(5) {
- left: 10px;
- top: 569px;
- }
- &:nth-of-type(6) {
- left: 650px;
- top: 611px;
- }
- &:nth-of-type(7) {
- left: 330px;
- top: 839px;
- }
- &:nth-of-type(8) {
- left: 10px;
- top: 1128px;
- }
- &:nth-of-type(9) {
- left: 650px;
- top: 1221px;
- }
- &:nth-of-type(10) {
- left: 330px;
- top: 1396px;
- }
- &:nth-of-type(11) {
- left: 10px;
- top: 1527px;
- }
- &:nth-of-type(12) {
- left: 650px;
- top: 1607px;
- }
- }
- }
- .Brocades {
- height: 1512px;
- .row {
- &:nth-of-type(4) {
- left: 10px;
- top: 409px;
- }
- &:nth-of-type(5) {
- left: 330px;
- top: 409px;
- }
- &:nth-of-type(6) {
- left: 650px;
- top: 568px;
- }
- &:nth-of-type(7) {
- left: 650px;
- top: 945px;
- }
- &:nth-of-type(8) {
- left: 10px;
- top: 1027px;
- }
- }
- }
- .Cultural {
- height: 1451px;
- .row {
- &:nth-of-type(4) {
- left: 650px;
- top: 414px;
- }
- &:nth-of-type(5) {
- left: 330px;
- top: 563px;
- }
- &:nth-of-type(6) {
- left: 10px;
- top: 578px;
- }
- &:nth-of-type(7) {
- left: 650px;
- top: 875px;
- }
- &:nth-of-type(8) {
- left: 330px;
- top: 930px;
- }
- }
- }
- .Miscellaneous{
- height: 641px;
- }
- }
- </style>
|