123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- const { formmat } = require("../../utils/http");
- function MediaController(data) {
- console.log('参数------------>', data)
- let list = [
- {
- location: "西安",
- date: "2022-11-22",
- icon: "",
- id: 0,
- child: [
- {
- url: "https://cxzx.smcic.net/topic/activity/img/upbg.ab3a4dc7.jpg",
- title: "走进文物"
- },
- {
- url: "https://cxzx.smcic.net/topic/activity/img/upbg.ab3a4dc7.jpg",
- title: "走进文物"
- },
- {
- url: "https://cxzx.smcic.net/topic/activity/img/upbg.ab3a4dc7.jpg",
- title: "走进文物"
- },
- ]
- },
- ];
- if (data.typeMedia === 'video') list = [
- {
- location: "西安",
- date: "2022-11-22",
- icon: "",
- id: 0,
- child: [
- {
- url: "https://cxzx.smcic.net/operate/worldCup/works/10086/20221119113805/97ba6b60662ab4f31ef06cdf5a5f8e94_preview.mp4",
- title: "走进文物"
- },
- {
- url: "https://cxzx.smcic.net/operate/worldCup/works/10086/20221119113805/97ba6b60662ab4f31ef06cdf5a5f8e94_preview.mp4",
- title: "走进文物"
- },
- {
- url: "https://cxzx.smcic.net/operate/worldCup/works/10086/20221119113805/97ba6b60662ab4f31ef06cdf5a5f8e94_preview.mp4",
- title: "走进文物"
- },
- ]
- },
- ]
- return formmat(list, 0, "ok");
- }
- function MediaControllerOnce(data) {
- console.log('参数------------>', data)
- let once = {
- location: "西安",
- date: "2022-11-22",
- icon: "",
- id: 0,
- child: [
- {
- url: "https://cxzx.smcic.net/topic/activity/img/upbg.ab3a4dc7.jpg",
- title: "走进文物"
- },
- {
- url: "https://cxzx.smcic.net/topic/activity/img/upbg.ab3a4dc7.jpg",
- title: "走进文物"
- },
- {
- url: "https://cxzx.smcic.net/topic/activity/img/upbg.ab3a4dc7.jpg",
- title: "走进文物"
- },
- ]
- };
- if (data.typeMedia === 'video') once = {
- location: "西安",
- date: "2022-11-22",
- icon: "",
- id: 0,
- child: [
- {
- url: "https://cxzx.smcic.net/operate/worldCup/works/10086/20221119113805/97ba6b60662ab4f31ef06cdf5a5f8e94_preview.mp4",
- title: "走进文物"
- },
- {
- url: "https://cxzx.smcic.net/operate/worldCup/works/10086/20221119113805/97ba6b60662ab4f31ef06cdf5a5f8e94_preview.mp4",
- title: "走进文物"
- },
- {
- url: "https://cxzx.smcic.net/operate/worldCup/works/10086/20221119113805/97ba6b60662ab4f31ef06cdf5a5f8e94_preview.mp4",
- title: "走进文物"
- },
- ]
- }
- return formmat(once, 0, "ok");
- }
- module.exports = {
- MediaController,
- MediaControllerOnce
- }
|