|
@@ -12,40 +12,121 @@
|
|
|
/>
|
|
|
</div>
|
|
|
<div class="sort">
|
|
|
- <Sort :current="sort_type" @changeSort="changeSort" />
|
|
|
+ <Sort v-if="!manageType" :current="sort_type" @changeSort="changeSort" />
|
|
|
+ <div class="all_select" v-if="manageType">
|
|
|
+ <el-checkbox
|
|
|
+ v-model="allChecked"
|
|
|
+ @change="(type) => changeChecked(type, 'all')"
|
|
|
+ ></el-checkbox>
|
|
|
+ <span>全选</span>
|
|
|
+ </div>
|
|
|
+ <div
|
|
|
+ class="control"
|
|
|
+ v-if="!manageType && download_list.length"
|
|
|
+ @click="manageType = true"
|
|
|
+ >
|
|
|
+ 管理
|
|
|
+ </div>
|
|
|
+ <div class="cancel" v-if="manageType" @click="manageType = false">
|
|
|
+ 取消
|
|
|
+ </div>
|
|
|
</div>
|
|
|
- <div class="list">
|
|
|
+ <div class="list" v-if="!manageType">
|
|
|
<div
|
|
|
class="list-item"
|
|
|
- v-for="item in info.url_arr"
|
|
|
- @click="toDetail(item.datum_id, item.id)"
|
|
|
+ v-for="item in !manageType ? info.url_arr : download_list"
|
|
|
>
|
|
|
- <InformationCollectionCard :info="item" />
|
|
|
+ <div class="card" @click="toDetail(item.datum_id, item.id)">
|
|
|
+ <InformationCollectionCard :info="item" />
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <div class="list" v-else>
|
|
|
+ <div class="list-item" v-for="item in download_list">
|
|
|
+ <div class="radio">
|
|
|
+ <el-checkbox
|
|
|
+ v-model="item.checked"
|
|
|
+ @change="(type) => changeChecked(type, item)"
|
|
|
+ ></el-checkbox>
|
|
|
+ </div>
|
|
|
+ <div class="card" :style="{ width: 'calc(100% - 60px)' }">
|
|
|
+ <InformationCollectionCard :info="item" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div
|
|
|
+ class="related"
|
|
|
+ v-if="
|
|
|
+ (manageType && download_list.length) || info.video_id || info.goods_id
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <div
|
|
|
+ class="item"
|
|
|
+ v-if="info.goods_id"
|
|
|
+ @click="$message.success('敬请期待')"
|
|
|
+ >
|
|
|
+ <img src="@/assets/icon/产品_蓝色.png" alt="" />
|
|
|
+ <span>相关产品</span>
|
|
|
+ </div>
|
|
|
+ <div class="item" v-if="info.video_id" @click="toVideoDetail">
|
|
|
+ <img src="@/assets/icon/视频.png" alt="" />
|
|
|
+ <span>相关视频</span>
|
|
|
+ </div>
|
|
|
+ <div
|
|
|
+ class="item download"
|
|
|
+ v-if="manageType && download_list.length"
|
|
|
+ @click="handleClick"
|
|
|
+ >
|
|
|
+ <img src="@/assets/icon/视频.png" alt="" />
|
|
|
+ <span>下载</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <IsVip ref="isLoginVip" v-model="vipVisible" />
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import { DatumService, GeneralService } from "@/common/service";
|
|
|
+import { downloadLocalFile } from "@/common/request";
|
|
|
import Collection from "@/components/module/collection.vue";
|
|
|
import Sort from "@/components/module/sort.vue";
|
|
|
+import IsVip from "@/components/module/is-vip.vue";
|
|
|
import InformationCollectionCard from "@/components/information/information-collection-card.vue";
|
|
|
|
|
|
export default {
|
|
|
- components: { Collection, Sort, InformationCollectionCard },
|
|
|
+ components: { Collection, Sort, InformationCollectionCard, IsVip },
|
|
|
data() {
|
|
|
return {
|
|
|
info: {},
|
|
|
sort_type: 1,
|
|
|
+ manageType: false,
|
|
|
+ allChecked: false,
|
|
|
+ download_list: [],
|
|
|
+ vipVisible: false,
|
|
|
};
|
|
|
},
|
|
|
+ watch: {
|
|
|
+ manageType(val) {
|
|
|
+ !val ? (this.allChecked = false) : "";
|
|
|
+ this.download_list.forEach((item) => (item.checked = false));
|
|
|
+ },
|
|
|
+ },
|
|
|
mounted() {
|
|
|
const option = this.$route.query;
|
|
|
this.info.id = option.id;
|
|
|
this.getDetail();
|
|
|
},
|
|
|
methods: {
|
|
|
+ // 选择全部
|
|
|
+ changeChecked(type, item) {
|
|
|
+ if (item == "all") {
|
|
|
+ this.download_list.forEach((item) => (item.checked = type));
|
|
|
+ } else {
|
|
|
+ this.allChecked =
|
|
|
+ this.download_list.filter((item) => item.checked).length ==
|
|
|
+ this.download_list.length;
|
|
|
+ }
|
|
|
+ },
|
|
|
// 更改排序方式
|
|
|
changeSort(type) {
|
|
|
this.sort_type = type;
|
|
@@ -58,11 +139,16 @@ export default {
|
|
|
sort_type: this.sort_type,
|
|
|
}).then(({ data }) => {
|
|
|
this.info = data.detail;
|
|
|
+ this.download_list = data.detail.url_arr;
|
|
|
+ this.download_list = data.detail.url_arr.filter((item) => {
|
|
|
+ this.$set(item, "checked", false);
|
|
|
+ return item.is_down ? item : false;
|
|
|
+ });
|
|
|
});
|
|
|
},
|
|
|
// 订阅
|
|
|
handleSwitch() {
|
|
|
- GeneralService.switchSet({ id: this.info.id, type: 3 }).then(
|
|
|
+ GeneralService.switchSet({ id: this.info.id, type: 4 }).then(
|
|
|
({ data, msg }) => {
|
|
|
this.info.follow_switch = data.status;
|
|
|
this.$message.success(msg);
|
|
@@ -79,22 +165,62 @@ export default {
|
|
|
},
|
|
|
});
|
|
|
},
|
|
|
+ // 跳转视频
|
|
|
+ toVideoDetail() {
|
|
|
+ this.$router.push({
|
|
|
+ path: "/video-detail",
|
|
|
+ query: {
|
|
|
+ id: this.info.video_id,
|
|
|
+ videoArrId: this.info.video_item,
|
|
|
+ },
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 下载
|
|
|
+ handleClick() {
|
|
|
+ if (this.download_list.filter((item) => item.checked).length == 0)
|
|
|
+ return this.$message.error("请选中至少一项");
|
|
|
+ this.download_list.forEach((item) => {
|
|
|
+ let can_download = true;
|
|
|
+ if (
|
|
|
+ item.is_vip &&
|
|
|
+ !item.is_recently &&
|
|
|
+ !this.$store.state.userInfo.level_id
|
|
|
+ ) {
|
|
|
+ can_download = false;
|
|
|
+ this.vipVisible = true;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (item.checked && can_download) {
|
|
|
+ DatumService.datumDownload({
|
|
|
+ datum_id: this.info.id,
|
|
|
+ url_id: item.id,
|
|
|
+ }).then(() => {
|
|
|
+ downloadLocalFile(item.url, item.title);
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
},
|
|
|
};
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
.wrap {
|
|
|
- width: calc(100% - 240px);
|
|
|
- max-width: 1200px;
|
|
|
+ width: 1200px;
|
|
|
margin: 0 auto;
|
|
|
.back {
|
|
|
+ width: 100px;
|
|
|
+ height: 50px;
|
|
|
+ line-height: 50px;
|
|
|
margin-top: 20px;
|
|
|
font-size: 22px;
|
|
|
font-weight: 400;
|
|
|
color: #222222;
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ background-color: white;
|
|
|
+ border-radius: 4px;
|
|
|
cursor: pointer;
|
|
|
img {
|
|
|
width: 12px;
|
|
@@ -107,8 +233,45 @@ export default {
|
|
|
border-radius: 10px;
|
|
|
margin-top: 20px;
|
|
|
}
|
|
|
- .sort {
|
|
|
- margin-top: 20px;
|
|
|
+ > .sort {
|
|
|
+ margin-top: 30px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+ .all_select {
|
|
|
+ width: 110px;
|
|
|
+ height: 40px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ font-size: 16px;
|
|
|
+ font-family: PingFangSC-Regular, PingFang SC;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #555555;
|
|
|
+ background: #ffffff;
|
|
|
+ border-radius: 19px;
|
|
|
+ span {
|
|
|
+ margin-left: 10px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .control {
|
|
|
+ width: 80px;
|
|
|
+ height: 35px;
|
|
|
+ background: #2a63f3;
|
|
|
+ border-radius: 10px;
|
|
|
+ text-align: center;
|
|
|
+ line-height: 35px;
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: 500;
|
|
|
+ color: #ffffff;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+ .cancel {
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: 500;
|
|
|
+ color: #2a63f3;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
}
|
|
|
.list {
|
|
|
margin-top: 20px;
|
|
@@ -116,10 +279,73 @@ export default {
|
|
|
align-items: center;
|
|
|
justify-content: space-between;
|
|
|
flex-wrap: wrap;
|
|
|
+ padding-bottom: 200px;
|
|
|
.list-item {
|
|
|
margin-bottom: 15px;
|
|
|
width: calc((100% - 20px) / 2);
|
|
|
margin: 10px 0;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: flex-end;
|
|
|
+ position: relative;
|
|
|
+ .radio {
|
|
|
+ width: 45px;
|
|
|
+ background-color: white;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ bottom: 0;
|
|
|
+ left: 0;
|
|
|
+ border-radius: 10px;
|
|
|
+ }
|
|
|
+ .card {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .related {
|
|
|
+ height: 100px;
|
|
|
+ width: calc(100% - 8px);
|
|
|
+ padding-right: calc((100% - 8px - 250px - 1200px) / 2);
|
|
|
+ box-sizing: border-box;
|
|
|
+ background-color: white;
|
|
|
+
|
|
|
+ position: fixed;
|
|
|
+ left: 0;
|
|
|
+ bottom: 0;
|
|
|
+ z-index: 100;
|
|
|
+
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: flex-end;
|
|
|
+ .item {
|
|
|
+ width: 120px;
|
|
|
+ height: 50px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #2a63f3;
|
|
|
+ border-radius: 8px;
|
|
|
+ border: 1px solid #2a63f3;
|
|
|
+ cursor: pointer;
|
|
|
+ margin-left: 10px;
|
|
|
+ img {
|
|
|
+ width: 20px;
|
|
|
+ height: 20px;
|
|
|
+ margin-right: 5px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .download {
|
|
|
+ width: 100px;
|
|
|
+ height: 50px;
|
|
|
+ background: #2a63f3;
|
|
|
+ border-radius: 8px;
|
|
|
+ color: white;
|
|
|
}
|
|
|
}
|
|
|
}
|