|
@@ -1,100 +1,23 @@
|
|
|
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: "走进文物"
|
|
|
- },
|
|
|
- ]
|
|
|
- },
|
|
|
- ]
|
|
|
+const { MediaService, MediaOnceService, ArticleService } = require("../../service/media/index");
|
|
|
+async function MediaController(data) {
|
|
|
+ let list = await MediaService(data);
|
|
|
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: "走进文物"
|
|
|
- },
|
|
|
- ]
|
|
|
- }
|
|
|
+async function MediaOnceController(data) {
|
|
|
+ let once = await MediaOnceService(data);
|
|
|
return formmat(once, 0, "ok");
|
|
|
}
|
|
|
|
|
|
+async function getArticleController(data) {
|
|
|
+ let article = await ArticleService(data);
|
|
|
+ return formmat(article, 0, "ok");
|
|
|
+}
|
|
|
+
|
|
|
|
|
|
module.exports = {
|
|
|
MediaController,
|
|
|
- MediaControllerOnce
|
|
|
+ MediaOnceController,
|
|
|
+ getArticleController
|
|
|
}
|