yujialong 2 years ago
parent 4376336deb
commit b959369fab
  1. 2
      src/api/index.js
  2. 17
      src/components/modules/module.vue
  3. 139
      src/const/modules.js
  4. 2
      src/mixins/page/index.js
  5. 1
      src/pages/article/add/editor.js
  6. 25
      src/pages/article/add/index.vue
  7. 2
      src/pages/article/list/index.vue
  8. 2
      src/pages/column/add/index.vue
  9. 6
      src/pages/column/list/index.vue
  10. 12
      src/pages/column/page/application.vue
  11. 2
      src/pages/column/page/edu.vue
  12. 12
      src/pages/column/page/home.vue
  13. 30
      src/pages/column/page/news.vue
  14. 7
      src/setting.js

@ -17,7 +17,7 @@ export default {
sendPhoneOrEmailCode: `iasf/sys/sendPhoneOrEmailCode`, sendPhoneOrEmailCode: `iasf/sys/sendPhoneOrEmailCode`,
updatePhoneOrEmail: `iasf/sys/updatePhoneOrEmail`, updatePhoneOrEmail: `iasf/sys/updatePhoneOrEmail`,
updateUserAvatars: `${host}iasf/sys/updateUserAvatars`, updateUserAvatars: `${host}iasf/sys/updateUserAvatars`,
staffTemplate: `http://192.168.31.136/用户导入模板.xlsx`, staffTemplate: `https://31k70639y6.zicp.fun/用户导入模板.xlsx`,
checkJobNumber: `iasf/sys/checkJobNumber`, checkJobNumber: `iasf/sys/checkJobNumber`,
checkUsername: `iasf/sys/checkUsername`, checkUsername: `iasf/sys/checkUsername`,
resetPwd: `iasf/sys/resetPwd`, resetPwd: `iasf/sys/resetPwd`,

@ -206,7 +206,6 @@ export default {
// form // form
handleForm() { handleForm() {
const { type, forms, form } = this.data const { type, forms, form } = this.data
console.log("🚀 ~ file: module.vue ~ line 209 ~ handleForm ~ type", this.data, form)
if (type === 'form') { if (type === 'form') {
forms.map(e => { forms.map(e => {
// //
@ -221,7 +220,21 @@ export default {
} }
}) })
} }
if (type === 'column' && form.articleNumOpt) {
const nums = [
{
id: '',
name: '默认'
}
]
for (let i = form.articleNumOpt; i > 1; i--) {
nums.push({
id: i,
name: i
})
}
this.articleNums = nums
}
form && form.site && this.siteChange(form.site) form && form.site && this.siteChange(form.site)
}, },
// //

@ -43,7 +43,7 @@ export default {
}, },
list: [ list: [
{ {
pic: 'http://192.168.31.136/images/about/1.png', pic: 'https://31k70639y6.zicp.fun/images/about/1.png',
title: 'ABOUT', title: 'ABOUT',
link: { link: {
linkName: '无', linkName: '无',
@ -92,7 +92,7 @@ export default {
} }
], ],
form: { form: {
pic: 'http://192.168.31.136/images/about/2.png', pic: 'https://31k70639y6.zicp.fun/images/about/2.png',
title: 'Our History', title: 'Our History',
subTitle: 'Throughout the world, most of the top science and technology innovation centers are distributed', subTitle: 'Throughout the world, most of the top science and technology innovation centers are distributed',
link: { link: {
@ -446,7 +446,7 @@ export default {
} }
], ],
form: { form: {
pic: 'http://192.168.31.136/images/about/5.png', pic: 'https://31k70639y6.zicp.fun/images/about/5.png',
title: 'Strategic Plan', title: 'Strategic Plan',
link: { link: {
linkName: '无', linkName: '无',
@ -533,7 +533,7 @@ export default {
}, },
list: [ list: [
{ {
pic: 'http://192.168.31.136/images/about/6.png', pic: 'https://31k70639y6.zicp.fun/images/about/6.png',
title: 'Sun Dongbai', title: 'Sun Dongbai',
subTitle: 'Founder and 1st PRESIDENT OF THE INSTITUTE OF ADVANCED SCIENCE FACILITIES, SHENZHEN', subTitle: 'Founder and 1st PRESIDENT OF THE INSTITUTE OF ADVANCED SCIENCE FACILITIES, SHENZHEN',
link: { link: {
@ -551,7 +551,7 @@ export default {
isEnable: 1 isEnable: 1
}, },
{ {
pic: 'http://192.168.31.136/images/about/7.png', pic: 'https://31k70639y6.zicp.fun/images/about/7.png',
title: 'Yang Xueming', title: 'Yang Xueming',
subTitle: 'Vice President of the Institute of Advanced Scienc, Shenzhen', subTitle: 'Vice President of the Institute of Advanced Scienc, Shenzhen',
link: { link: {
@ -569,7 +569,7 @@ export default {
isEnable: 1 isEnable: 1
}, },
{ {
pic: 'http://192.168.31.136/images/about/8.png', pic: 'https://31k70639y6.zicp.fun/images/about/8.png',
title: 'Ulf KALSSON', title: 'Ulf KALSSON',
subTitle: 'The Chairman of Science and Technology Advisory Committee', subTitle: 'The Chairman of Science and Technology Advisory Committee',
link: { link: {
@ -635,7 +635,7 @@ export default {
} }
], ],
form: { form: {
pic: 'http://192.168.31.136/images/about/9.png', pic: 'https://31k70639y6.zicp.fun/images/about/9.png',
title: 'Science and Technology', title: 'Science and Technology',
subTitle: '', subTitle: '',
link: { link: {
@ -679,7 +679,7 @@ export default {
} }
], ],
form: { form: {
pic: 'http://192.168.31.136/images/about/10.png', pic: 'https://31k70639y6.zicp.fun/images/about/10.png',
title: 'User Committee', title: 'User Committee',
subTitle: '', subTitle: '',
link: { link: {
@ -723,7 +723,7 @@ export default {
} }
], ],
form: { form: {
pic: 'http://192.168.31.136/images/about/11.png', pic: 'https://31k70639y6.zicp.fun/images/about/11.png',
title: 'Industry Advancement Committee', title: 'Industry Advancement Committee',
subTitle: '', subTitle: '',
link: { link: {
@ -787,7 +787,7 @@ export default {
} }
], ],
form: { form: {
pic: 'http://192.168.31.136/images/about/12.png', pic: 'https://31k70639y6.zicp.fun/images/about/12.png',
title: 'Throughout the world, most of the top science and technology innovation centers are distributed', title: 'Throughout the world, most of the top science and technology innovation centers are distributed',
subTitle: '', subTitle: '',
link: { link: {
@ -845,7 +845,7 @@ export default {
}, },
list: [ list: [
{ {
pic: 'http://192.168.31.136/images/careers/1.png', pic: 'https://31k70639y6.zicp.fun/images/careers/1.png',
title: 'CAREERS', title: 'CAREERS',
link: { link: {
linkName: '无', linkName: '无',
@ -889,7 +889,7 @@ export default {
} }
], ],
form: { form: {
pic: 'http://192.168.31.136/images/careers/2.png', pic: 'https://31k70639y6.zicp.fun/images/careers/2.png',
title: 'Research', title: 'Research',
link: { link: {
linkName: '无', linkName: '无',
@ -932,7 +932,7 @@ export default {
} }
], ],
form: { form: {
pic: 'http://192.168.31.136/images/careers/3.png', pic: 'https://31k70639y6.zicp.fun/images/careers/3.png',
title: 'Engineering', title: 'Engineering',
link: { link: {
linkName: '无', linkName: '无',
@ -975,7 +975,7 @@ export default {
} }
], ],
form: { form: {
pic: 'http://192.168.31.136/images/careers/4.png', pic: 'https://31k70639y6.zicp.fun/images/careers/4.png',
title: 'Management Staff', title: 'Management Staff',
link: { link: {
linkName: '无', linkName: '无',
@ -1018,7 +1018,7 @@ export default {
} }
], ],
form: { form: {
pic: 'http://192.168.31.136/images/careers/5.png', pic: 'https://31k70639y6.zicp.fun/images/careers/5.png',
title: 'Post-doc Programs', title: 'Post-doc Programs',
link: { link: {
linkName: '无', linkName: '无',
@ -1098,7 +1098,7 @@ export default {
}, },
list: [ list: [
{ {
pic: 'http://192.168.31.136/images/careers/6.png', pic: 'https://31k70639y6.zicp.fun/images/careers/6.png',
title: 'IASF started its journey to chase light, push the boundaries forward, and discover the unknown.', title: 'IASF started its journey to chase light, push the boundaries forward, and discover the unknown.',
link: { link: {
linkName: '无', linkName: '无',
@ -1115,7 +1115,7 @@ export default {
isEnable: 1 isEnable: 1
}, },
{ {
pic: 'http://192.168.31.136/images/careers/7.png', pic: 'https://31k70639y6.zicp.fun/images/careers/7.png',
title: 'IASF started its journey to chase light, push the boundaries forward, and discover the unknown.', title: 'IASF started its journey to chase light, push the boundaries forward, and discover the unknown.',
link: { link: {
linkName: '无', linkName: '无',
@ -1132,7 +1132,7 @@ export default {
isEnable: 1 isEnable: 1
}, },
{ {
pic: 'http://192.168.31.136/images/careers/8.png', pic: 'https://31k70639y6.zicp.fun/images/careers/8.png',
title: 'IASF started its journey to chase light, push the boundaries forward, and discover the unknown.', title: 'IASF started its journey to chase light, push the boundaries forward, and discover the unknown.',
link: { link: {
linkName: '无', linkName: '无',
@ -1200,7 +1200,7 @@ export default {
}, },
list: [ list: [
{ {
pic: 'http://192.168.31.136/images/careers/9.png', pic: 'https://31k70639y6.zicp.fun/images/careers/9.png',
title: 'Benefits', title: 'Benefits',
subTitle: 'YOU ARE IN GOOD HANDS', subTitle: 'YOU ARE IN GOOD HANDS',
link: { link: {
@ -1218,7 +1218,7 @@ export default {
isEnable: 1 isEnable: 1
}, },
{ {
pic: 'http://192.168.31.136/images/careers/10.png', pic: 'https://31k70639y6.zicp.fun/images/careers/10.png',
title: 'Traineeships', title: 'Traineeships',
subTitle: 'YOUR FUTURE STARTS HERE', subTitle: 'YOUR FUTURE STARTS HERE',
link: { link: {
@ -1236,7 +1236,7 @@ export default {
isEnable: 1 isEnable: 1
}, },
{ {
pic: 'http://192.168.31.136/images/careers/11.png', pic: 'https://31k70639y6.zicp.fun/images/careers/11.png',
title: 'Programs', title: 'Programs',
subTitle: 'YOUR INSPIRATION HAS GREAT SUPPORTS', subTitle: 'YOUR INSPIRATION HAS GREAT SUPPORTS',
link: { link: {
@ -1296,8 +1296,8 @@ export default {
}, },
list: [ list: [
{ {
pic: 'http://192.168.31.136/images/edu/1.png', pic: 'https://31k70639y6.zicp.fun/images/edu/1.png',
title: 'ABOUT', title: 'EDUCATION & COLLABORATION',
link: { link: {
linkName: '无', linkName: '无',
connectionType: 1, connectionType: 1,
@ -1340,7 +1340,7 @@ export default {
} }
], ],
form: { form: {
pic: 'http://192.168.31.136/images/edu/2.png', pic: 'https://31k70639y6.zicp.fun/images/edu/2.png',
title: 'Partnership', title: 'Partnership',
link: { link: {
linkName: '无', linkName: '无',
@ -1383,7 +1383,7 @@ export default {
} }
], ],
form: { form: {
pic: 'http://192.168.31.136/images/edu/2.png', pic: 'https://31k70639y6.zicp.fun/images/edu/2.png',
title: 'Programs', title: 'Programs',
link: { link: {
linkName: '无', linkName: '无',
@ -1469,7 +1469,7 @@ export default {
}, },
list: [ list: [
{ {
pic: 'http://192.168.31.136/images/edu/3.png', pic: 'https://31k70639y6.zicp.fun/images/edu/3.png',
title: 'community service', title: 'community service',
subTitle: 'IASF is driven to serve the Science and industry, and solve grand challenges.', subTitle: 'IASF is driven to serve the Science and industry, and solve grand challenges.',
link: { link: {
@ -1487,7 +1487,7 @@ export default {
isEnable: 1 isEnable: 1
}, },
{ {
pic: 'http://192.168.31.136/images/edu/4.png', pic: 'https://31k70639y6.zicp.fun/images/edu/4.png',
title: 'community service', title: 'community service',
subTitle: 'IASF is driven to serve the Science and industry, and solve grand challenges.', subTitle: 'IASF is driven to serve the Science and industry, and solve grand challenges.',
link: { link: {
@ -1505,7 +1505,7 @@ export default {
isEnable: 1 isEnable: 1
}, },
{ {
pic: 'http://192.168.31.136/images/edu/5.png', pic: 'https://31k70639y6.zicp.fun/images/edu/5.png',
title: 'community service', title: 'community service',
subTitle: 'IASF is driven to serve the Science and industry, and solve grand challenges.', subTitle: 'IASF is driven to serve the Science and industry, and solve grand challenges.',
link: { link: {
@ -1565,7 +1565,7 @@ export default {
}, },
list: [ list: [
{ {
pic: 'http://192.168.31.136/images/home/1.png', pic: 'https://31k70639y6.zicp.fun/images/home/1.png',
title: 'HOME', title: 'HOME',
link: { link: {
linkName: '无', linkName: '无',
@ -1629,7 +1629,7 @@ export default {
} }
], ],
form: { form: {
pic: 'http://192.168.31.136/images/home/2.png', pic: 'https://31k70639y6.zicp.fun/images/home/2.png',
title: 'Shenzhen Innovation Lightsource Facility', title: 'Shenzhen Innovation Lightsource Facility',
link: { link: {
linkName: '无', linkName: '无',
@ -1672,7 +1672,7 @@ export default {
} }
], ],
form: { form: {
pic: 'http://192.168.31.136/images/home/3.png', pic: 'https://31k70639y6.zicp.fun/images/home/3.png',
title: 'Shenzhen Soft X-ray Superconducting Free-electron Laser Facility ', title: 'Shenzhen Soft X-ray Superconducting Free-electron Laser Facility ',
link: { link: {
linkName: '无', linkName: '无',
@ -1788,7 +1788,7 @@ export default {
}, },
list: [ list: [
{ {
pic: 'http://192.168.31.136/images/careers/6.png', pic: 'https://31k70639y6.zicp.fun/images/careers/6.png',
title: 'SHAO Jiahang, PH.D.', title: 'SHAO Jiahang, PH.D.',
subTitle: '', subTitle: '',
link: { link: {
@ -1806,7 +1806,7 @@ export default {
des: '“..., The new facility (S3FEL) will provide the brightest soft X-ray laser to both scientific and industrial users worldwide, enabling applications that are beyond imagination, ...”…' des: '“..., The new facility (S3FEL) will provide the brightest soft X-ray laser to both scientific and industrial users worldwide, enabling applications that are beyond imagination, ...”…'
}, },
{ {
pic: 'http://192.168.31.136/images/careers/7.png', pic: 'https://31k70639y6.zicp.fun/images/careers/7.png',
title: 'PENG Ziling, Ph.D.', title: 'PENG Ziling, Ph.D.',
subTitle: '', subTitle: '',
link: { link: {
@ -1824,7 +1824,7 @@ export default {
des: '“..., With so many young, professional, and passionate workmates, I treasure the moments we spent on fruitful discussions, brainstorming, teamworking, and the leisure activities on the Guangming farm just next to our worksite, ...”…' des: '“..., With so many young, professional, and passionate workmates, I treasure the moments we spent on fruitful discussions, brainstorming, teamworking, and the leisure activities on the Guangming farm just next to our worksite, ...”…'
}, },
{ {
pic: 'http://192.168.31.136/images/careers/8.png', pic: 'https://31k70639y6.zicp.fun/images/careers/8.png',
title: 'CHEN Rikun, M.S.', title: 'CHEN Rikun, M.S.',
subTitle: '', subTitle: '',
link: { link: {
@ -2061,8 +2061,8 @@ export default {
}, },
list: [ list: [
{ {
pic: 'http://192.168.31.136/images/news/1.png', pic: 'https://31k70639y6.zicp.fun/images/news/1.png',
title: 'ABOUT', title: 'NEWS & EVENTS',
link: { link: {
linkName: '无', linkName: '无',
connectionType: 1, connectionType: 1,
@ -2195,6 +2195,7 @@ export default {
site: '', site: '',
column: '', column: '',
articleNum: '', articleNum: '',
articleNumOpt: 8,
columnTitle: 1, columnTitle: 1,
columnTitleCustom: '' columnTitleCustom: ''
} }
@ -2240,8 +2241,8 @@ export default {
}, },
list: [ list: [
{ {
pic: 'http://192.168.31.136/images/news/1.png', pic: 'https://31k70639y6.zicp.fun/images/news/1.png',
title: 'ABOUT', title: 'NEWS & EVENTS',
link: { link: {
linkName: '无', linkName: '无',
connectionType: 1, connectionType: 1,
@ -2307,7 +2308,7 @@ export default {
}, },
list: [ list: [
{ {
pic: 'http://192.168.31.136/images/newsPress/1.png', pic: 'https://31k70639y6.zicp.fun/images/newsPress/1.png',
title: 'Reports', title: 'Reports',
subTitle: 'IASF is driven to serve the Science and industry, and solve grand challenges.', subTitle: 'IASF is driven to serve the Science and industry, and solve grand challenges.',
link: { link: {
@ -2325,7 +2326,7 @@ export default {
isEnable: 1 isEnable: 1
}, },
{ {
pic: 'http://192.168.31.136/images/newsPress/2.png', pic: 'https://31k70639y6.zicp.fun/images/newsPress/2.png',
title: 'Brochures', title: 'Brochures',
subTitle: 'IASF is driven to serve the Science and industry, and solve grand challenges.', subTitle: 'IASF is driven to serve the Science and industry, and solve grand challenges.',
link: { link: {
@ -2343,7 +2344,7 @@ export default {
isEnable: 1 isEnable: 1
}, },
{ {
pic: 'http://192.168.31.136/images/newsPress/3.png', pic: 'https://31k70639y6.zicp.fun/images/newsPress/3.png',
title: 'Gallery', title: 'Gallery',
subTitle: 'IASF is driven to serve the Science and industry, and solve grand challenges.', subTitle: 'IASF is driven to serve the Science and industry, and solve grand challenges.',
link: { link: {
@ -2403,8 +2404,8 @@ export default {
}, },
list: [ list: [
{ {
pic: 'http://192.168.31.136/images/news/1.png', pic: 'https://31k70639y6.zicp.fun/images/news/1.png',
title: 'ABOUT', title: 'NEWS & EVENTS',
link: { link: {
linkName: '无', linkName: '无',
connectionType: 1, connectionType: 1,
@ -2470,7 +2471,7 @@ export default {
}, },
list: [ list: [
{ {
pic: 'http://192.168.31.136/images/newsProcurement/1.png', pic: 'https://31k70639y6.zicp.fun/images/newsProcurement/1.png',
title: 'Project ', title: 'Project ',
subTitle: 'IASF is driven to serve the Science and industry, and solve grand challenges.', subTitle: 'IASF is driven to serve the Science and industry, and solve grand challenges.',
link: { link: {
@ -2488,7 +2489,7 @@ export default {
isEnable: 1 isEnable: 1
}, },
{ {
pic: 'http://192.168.31.136/images/newsProcurement/2.png', pic: 'https://31k70639y6.zicp.fun/images/newsProcurement/2.png',
title: 'Goods', title: 'Goods',
subTitle: 'IASF is driven to serve the Science and industry, and solve grand challenges.', subTitle: 'IASF is driven to serve the Science and industry, and solve grand challenges.',
link: { link: {
@ -2506,7 +2507,7 @@ export default {
isEnable: 1 isEnable: 1
}, },
{ {
pic: 'http://192.168.31.136/images/newsProcurement/3.png', pic: 'https://31k70639y6.zicp.fun/images/newsProcurement/3.png',
title: 'Service', title: 'Service',
subTitle: 'IASF is driven to serve the Science and industry, and solve grand challenges.', subTitle: 'IASF is driven to serve the Science and industry, and solve grand challenges.',
link: { link: {
@ -2566,7 +2567,7 @@ export default {
}, },
list: [ list: [
{ {
pic: 'http://192.168.31.136/images/research/1.png', pic: 'https://31k70639y6.zicp.fun/images/research/1.png',
title: 'RESEARCH', title: 'RESEARCH',
link: { link: {
linkName: '无', linkName: '无',
@ -2647,7 +2648,7 @@ export default {
}, },
list: [ list: [
{ {
pic: 'http://192.168.31.136/images/research/res1.png', pic: 'https://31k70639y6.zicp.fun/images/research/res1.png',
title: 'Physics', title: 'Physics',
link: { link: {
linkName: '无', linkName: '无',
@ -2663,7 +2664,7 @@ export default {
des: 'Research Field Description', des: 'Research Field Description',
}, },
{ {
pic: 'http://192.168.31.136/images/research/res2.png', pic: 'https://31k70639y6.zicp.fun/images/research/res2.png',
title: 'Chemistry', title: 'Chemistry',
link: { link: {
linkName: '无', linkName: '无',
@ -2679,7 +2680,7 @@ export default {
des: 'Research Field Description', des: 'Research Field Description',
}, },
{ {
pic: 'http://192.168.31.136/images/research/res3.png', pic: 'https://31k70639y6.zicp.fun/images/research/res3.png',
title: 'Biology', title: 'Biology',
link: { link: {
linkName: '无', linkName: '无',
@ -2695,7 +2696,7 @@ export default {
des: 'Research Field Description', des: 'Research Field Description',
}, },
{ {
pic: 'http://192.168.31.136/images/research/res4.png', pic: 'https://31k70639y6.zicp.fun/images/research/res4.png',
title: 'Advanced Materials ', title: 'Advanced Materials ',
link: { link: {
linkName: '无', linkName: '无',
@ -2711,7 +2712,7 @@ export default {
des: 'Research Field Description', des: 'Research Field Description',
}, },
{ {
pic: 'http://192.168.31.136/images/research/res5.png', pic: 'https://31k70639y6.zicp.fun/images/research/res5.png',
title: 'Advanced Manufacturing', title: 'Advanced Manufacturing',
link: { link: {
linkName: '无', linkName: '无',
@ -2786,7 +2787,7 @@ export default {
}, },
list: [ list: [
{ {
pic: 'http://192.168.31.136/images/research/3.png', pic: 'https://31k70639y6.zicp.fun/images/research/3.png',
title: 'Accelerator', title: 'Accelerator',
link: { link: {
linkName: '无', linkName: '无',
@ -2801,7 +2802,7 @@ export default {
} }
}, },
{ {
pic: 'http://192.168.31.136/images/research/4.png', pic: 'https://31k70639y6.zicp.fun/images/research/4.png',
title: 'Physics', title: 'Physics',
link: { link: {
linkName: '无', linkName: '无',
@ -2816,7 +2817,7 @@ export default {
} }
}, },
{ {
pic: 'http://192.168.31.136/images/research/5.png', pic: 'https://31k70639y6.zicp.fun/images/research/5.png',
title: 'Mechanical Engineering', title: 'Mechanical Engineering',
link: { link: {
linkName: '无', linkName: '无',
@ -2831,7 +2832,7 @@ export default {
} }
}, },
{ {
pic: 'http://192.168.31.136/images/research/6.png', pic: 'https://31k70639y6.zicp.fun/images/research/6.png',
title: 'Digital Light-source', title: 'Digital Light-source',
link: { link: {
linkName: '无', linkName: '无',
@ -2846,7 +2847,7 @@ export default {
} }
}, },
{ {
pic: 'http://192.168.31.136/images/research/7.png', pic: 'https://31k70639y6.zicp.fun/images/research/7.png',
title: 'Beam Lines', title: 'Beam Lines',
link: { link: {
linkName: '无', linkName: '无',
@ -2861,7 +2862,7 @@ export default {
} }
}, },
{ {
pic: 'http://192.168.31.136/images/research/8.png', pic: 'https://31k70639y6.zicp.fun/images/research/8.png',
title: 'End Stations', title: 'End Stations',
link: { link: {
linkName: '无', linkName: '无',
@ -2942,7 +2943,7 @@ export default {
}, },
list: [ list: [
{ {
pic: 'http://192.168.31.136/images/research/12.png', pic: 'https://31k70639y6.zicp.fun/images/research/12.png',
title: '这里是标题一句话标题', title: '这里是标题一句话标题',
link: { link: {
linkName: '无', linkName: '无',
@ -2958,7 +2959,7 @@ export default {
des: 'Online single-shot characterization of ultrafast pulses from high-gain free-electron lasers, Li Zeng,Chao Feng,Duan Gu,Xiaofan Wang,Kaiqing Zhang,Bo Liu,Zhentang Zhao,Fundamental Research', des: 'Online single-shot characterization of ultrafast pulses from high-gain free-electron lasers, Li Zeng,Chao Feng,Duan Gu,Xiaofan Wang,Kaiqing Zhang,Bo Liu,Zhentang Zhao,Fundamental Research',
}, },
{ {
pic: 'http://192.168.31.136/images/research/13.png', pic: 'https://31k70639y6.zicp.fun/images/research/13.png',
title: '这里是标题一句话标题', title: '这里是标题一句话标题',
link: { link: {
linkName: '无', linkName: '无',
@ -2978,7 +2979,7 @@ export default {
`, `,
}, },
{ {
pic: 'http://192.168.31.136/images/research/14.png', pic: 'https://31k70639y6.zicp.fun/images/research/14.png',
title: '这里是标题一句话标题', title: '这里是标题一句话标题',
link: { link: {
linkName: '无', linkName: '无',
@ -3038,7 +3039,7 @@ export default {
}, },
list: [ list: [
{ {
pic: 'http://192.168.31.136/images/application/1.png', pic: 'https://31k70639y6.zicp.fun/images/application/1.png',
title: 'APPLICATION', title: 'APPLICATION',
link: { link: {
linkName: '无', linkName: '无',
@ -3087,7 +3088,7 @@ export default {
} }
], ],
form: { form: {
pic: 'http://192.168.31.136/images/research/2.png', pic: 'https://31k70639y6.zicp.fun/images/research/2.png',
title: 'Why IASF?', title: 'Why IASF?',
subTitle: `IASF started its journey to chase light, subTitle: `IASF started its journey to chase light,
The one that can drive innovation, The one that can drive innovation,
@ -3356,7 +3357,7 @@ export default {
}, },
list: [ list: [
{ {
pic: 'http://192.168.31.136/images/research/3.png', pic: 'https://31k70639y6.zicp.fun/images/research/3.png',
title: 'Accelerator', title: 'Accelerator',
link: { link: {
linkName: '无', linkName: '无',
@ -3371,7 +3372,7 @@ export default {
} }
}, },
{ {
pic: 'http://192.168.31.136/images/research/4.png', pic: 'https://31k70639y6.zicp.fun/images/research/4.png',
title: 'Physics', title: 'Physics',
link: { link: {
linkName: '无', linkName: '无',
@ -3386,7 +3387,7 @@ export default {
} }
}, },
{ {
pic: 'http://192.168.31.136/images/research/5.png', pic: 'https://31k70639y6.zicp.fun/images/research/5.png',
title: 'Mechanical Engineering', title: 'Mechanical Engineering',
link: { link: {
linkName: '无', linkName: '无',
@ -3401,7 +3402,7 @@ export default {
} }
}, },
{ {
pic: 'http://192.168.31.136/images/research/6.png', pic: 'https://31k70639y6.zicp.fun/images/research/6.png',
title: 'Digital Light-source', title: 'Digital Light-source',
link: { link: {
linkName: '无', linkName: '无',
@ -3416,7 +3417,7 @@ export default {
} }
}, },
{ {
pic: 'http://192.168.31.136/images/research/7.png', pic: 'https://31k70639y6.zicp.fun/images/research/7.png',
title: 'Beam Lines', title: 'Beam Lines',
link: { link: {
linkName: '无', linkName: '无',
@ -3431,7 +3432,7 @@ export default {
} }
}, },
{ {
pic: 'http://192.168.31.136/images/research/8.png', pic: 'https://31k70639y6.zicp.fun/images/research/8.png',
title: 'End Stations', title: 'End Stations',
link: { link: {
linkName: '无', linkName: '无',

@ -101,7 +101,7 @@ export default {
json: this.handleJson() json: this.handleJson()
}).then(res => { }).then(res => {
load.close() load.close()
window.open((Setting.isDev ? `http://${location.hostname}:8095` : 'http://192.168.31.136/front') + `/#/${this.$route.query.path}?id=${this.columnId}&preview=1&siteId=${this.$route.query.siteId}`) window.open((Setting.isDev ? `http://${location.hostname}:8095` : 'https://31k70639y6.zicp.fun/front') + `/#/${this.$route.query.path}?id=${this.columnId}&preview=1&siteId=${this.$route.query.siteId}`)
}).catch(err => { }).catch(err => {
load.close() load.close()
}) })

@ -344,6 +344,7 @@ export default {
// 设置默认字体 // 设置默认字体
ed.target.editorCommands.execCommand("fontName", false, "PingFang SC") ed.target.editorCommands.execCommand("fontName", false, "PingFang SC")
ed.target.editorCommands.execCommand("fontSize", false, "19px") ed.target.editorCommands.execCommand("fontSize", false, "19px")
ed.target.editorCommands.execCommand("lineHeight", false, "1.5")
top.document.querySelector('#articleTitle').focus() // 第一个字段聚焦 top.document.querySelector('#articleTitle').focus() // 第一个字段聚焦
}) })
}, },

@ -933,7 +933,7 @@ export default {
}, },
// //
preview() { preview() {
window.open((Setting.isDev ? `http://${location.hostname}:8095` : 'http://192.168.31.136/front') + `/#/article?id=${this.form.id}&siteId=${this.form.siteId}`) window.open((Setting.isDev ? `http://${location.hostname}:8095` : 'https://31k70639y6.zicp.fun/front') + `/#/article?id=${this.form.id}&siteId=${this.form.siteId}`)
}, },
// //
back() { back() {
@ -952,6 +952,17 @@ export default {
this.$router.back() this.$router.back()
} }
}, },
//
updateFile(files, form, quoteId) {
files.map(e => {
this.$post(this.api.updateFile, {
id: e,
isRelease: form.isRelease,
quote: form.title,
quoteId
}).then(res => {}).catch(err => {})
})
},
// //
submit(isRelease, next) { submit(isRelease, next) {
if (this.submiting) return false if (this.submiting) return false
@ -996,17 +1007,9 @@ export default {
if (bannerImg) fileId.push(bannerImg.substr(bannerImg.lastIndexOf('/') + 1)) if (bannerImg) fileId.push(bannerImg.substr(bannerImg.lastIndexOf('/') + 1))
if (titleImg) fileId.push(titleImg.substr(titleImg.lastIndexOf('/') + 1)) if (titleImg) fileId.push(titleImg.substr(titleImg.lastIndexOf('/') + 1))
fileList && fileList.map(e => { fileList && fileList.map(e => {
e.url && fileId.push(e.url.substr(e.url.lastIndexOf('/') + 1)) fileId.push(e[e.url ? 'url' : 'filePath'].substr(e[e.url ? 'url' : 'filePath'].lastIndexOf('/') + 1))
}) })
form.lableId = form.lableId.join(',') form.lableId = form.lableId.join(',')
//
fileId.map(e => {
this.$post(this.api.updateFile, {
id: e,
isRelease,
quote: form.title
}).then(res => {}).catch(err => {})
})
form.isRelease = isRelease form.isRelease = isRelease
this.submiting = true this.submiting = true
@ -1014,6 +1017,7 @@ export default {
delete form.children delete form.children
form.editorId = +this.$store.state.user.userId form.editorId = +this.$store.state.user.userId
this.$post(this.api.updateArticle, form).then(res => { this.$post(this.api.updateArticle, form).then(res => {
this.updateFile(fileId, form, form.id)
util.successMsg('修改成功') util.successMsg('修改成功')
next ? next() : this.$router.push(`list?columnId=` + form.columnId) next ? next() : this.$router.push(`list?columnId=` + form.columnId)
}).catch(err => { }).catch(err => {
@ -1021,6 +1025,7 @@ export default {
}) })
} else { } else {
this.$post(this.api.saveArticle, form).then(({ data }) => { this.$post(this.api.saveArticle, form).then(({ data }) => {
this.updateFile(fileId, form, data)
// //
form.fileList.map(e => { form.fileList.map(e => {
this.$post(this.api.saveContentFile, { this.$post(this.api.saveContentFile, {

@ -289,7 +289,7 @@ export default {
}, },
// //
preview(row) { preview(row) {
window.open((Setting.isDev ? `http://${location.hostname}:8095` : 'http://192.168.31.136/front') + `/#/article?id=${row.id}&siteId=${this.$refs.column.getCurrentNode().siteId}`) window.open((Setting.isDev ? `http://${location.hostname}:8095` : 'https://31k70639y6.zicp.fun/front') + `/#/article?id=${row.id}&siteId=${this.$refs.column.getCurrentNode().siteId}`)
}, },
// //
edit(row) { edit(row) {

@ -458,6 +458,7 @@ export default {
this.getStyle() this.getStyle()
} else if (val == 3) { } else if (val == 3) {
this.form.templateId = 9 this.form.templateId = 9
if (this.pageStyle.length) this.form.listStyleId = this.pageStyle[0].id
} }
}, },
// //
@ -635,6 +636,7 @@ export default {
if (otherArticle) form.linkAddress += '-' + otherArticle if (otherArticle) form.linkAddress += '-' + otherArticle
} }
} }
if (form.typeId !== 2 && !form.listStyleId) return util.errorMsg('请选择列表样式')
// //
this.fileId && this.$post(this.api.updateFile, { this.fileId && this.$post(this.api.updateFile, {
id: this.fileId, id: this.fileId,

@ -62,8 +62,8 @@
<el-button v-auth="'/site/list:' + siteName + ':内容管理:栏目管理:新增'" type="text" @click="edit(scope.row, 'add')">新增下级</el-button> <el-button v-auth="'/site/list:' + siteName + ':内容管理:栏目管理:新增'" type="text" @click="edit(scope.row, 'add')">新增下级</el-button>
<el-button v-auth="'/site/list:' + siteName + ':内容管理:栏目管理:编辑'" type="text" @click="edit(scope.row, 'edit')">编辑</el-button> <el-button v-auth="'/site/list:' + siteName + ':内容管理:栏目管理:编辑'" type="text" @click="edit(scope.row, 'edit')">编辑</el-button>
<el-button v-auth="'/site/list:' + siteName + ':内容管理:栏目管理:删除'" type="text" @click="del(scope.row)">删除</el-button> <el-button v-auth="'/site/list:' + siteName + ':内容管理:栏目管理:删除'" type="text" @click="del(scope.row)">删除</el-button>
<el-button v-if="scope.row.typeId != 2" type="text" @click="preview(scope.row)">预览</el-button> <el-button v-auth="'/site/list:' + siteName + ':内容管理:栏目管理:预览'" v-if="scope.row.typeId != 2" type="text" @click="preview(scope.row)">预览</el-button>
<el-button v-if="scope.row.typeId == 3" class="page-set" type="primary" size="mini" @click="page(scope.row)">页面设置</el-button> <el-button v-auth="'/site/list:' + siteName + ':内容管理:栏目管理:页面管理'" v-if="scope.row.typeId == 3" class="page-set" type="primary" size="mini" @click="page(scope.row)">页面设置</el-button>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -294,7 +294,7 @@ export default {
const item = this.pageStyle.find(e => e.id == row.listStyleId) const item = this.pageStyle.find(e => e.id == row.listStyleId)
if (item) path = item.path if (item) path = item.path
} }
window.open((Setting.isDev ? `http://${location.hostname}:8095` : 'http://192.168.31.136/front') + `/#/${row.typeId === 3 ? row.path : 'column'}?id=${row.id}&siteId=${row.siteId}`) window.open((Setting.isDev ? `http://${location.hostname}:8095` : 'https://31k70639y6.zicp.fun/front') + `/#/${row.typeId === 3 ? row.path : 'column'}?id=${row.id}&siteId=${row.siteId}`)
}, },
// //
page(row) { page(row) {

@ -81,7 +81,7 @@
</div> </div>
<ul class="news"> <ul class="news">
<li> <li>
<img src="http://192.168.31.136/images/home/3.png" alt=""> <img src="https://31k70639y6.zicp.fun/images/home/3.png" alt="">
<div class="texts"> <div class="texts">
<h6>2022 New Year Message from President Sun Dongbai</h6> <h6>2022 New Year Message from President Sun Dongbai</h6>
<p class="des">2021 is another challenging year for the Institute of Advanced Science Facilities, Shenzhen (IASF)</p> <p class="des">2021 is another challenging year for the Institute of Advanced Science Facilities, Shenzhen (IASF)</p>
@ -89,7 +89,7 @@
</div> </div>
</li> </li>
<li> <li>
<img src="http://192.168.31.136/images/home/3.png" alt=""> <img src="https://31k70639y6.zicp.fun/images/home/3.png" alt="">
<div class="texts"> <div class="texts">
<h6>2022 New Year Message from President Sun Dongbai</h6> <h6>2022 New Year Message from President Sun Dongbai</h6>
<p class="des">2021 is another challenging year for the Institute of Advanced Science Facilities, Shenzhen (IASF)</p> <p class="des">2021 is another challenging year for the Institute of Advanced Science Facilities, Shenzhen (IASF)</p>
@ -97,7 +97,7 @@
</div> </div>
</li> </li>
<li> <li>
<img src="http://192.168.31.136/images/home/3.png" alt=""> <img src="https://31k70639y6.zicp.fun/images/home/3.png" alt="">
<div class="texts"> <div class="texts">
<h6>2022 New Year Message from President Sun Dongbai</h6> <h6>2022 New Year Message from President Sun Dongbai</h6>
<p class="des">2021 is another challenging year for the Institute of Advanced Science Facilities, Shenzhen (IASF)</p> <p class="des">2021 is another challenging year for the Institute of Advanced Science Facilities, Shenzhen (IASF)</p>
@ -105,7 +105,7 @@
</div> </div>
</li> </li>
<li> <li>
<img src="http://192.168.31.136/images/home/3.png" alt=""> <img src="https://31k70639y6.zicp.fun/images/home/3.png" alt="">
<div class="texts"> <div class="texts">
<h6>2022 New Year Message from President Sun Dongbai</h6> <h6>2022 New Year Message from President Sun Dongbai</h6>
<p class="des">2021 is another challenging year for the Institute of Advanced Science Facilities, Shenzhen (IASF)</p> <p class="des">2021 is another challenging year for the Institute of Advanced Science Facilities, Shenzhen (IASF)</p>
@ -113,7 +113,7 @@
</div> </div>
</li> </li>
<li> <li>
<img src="http://192.168.31.136/images/home/3.png" alt=""> <img src="https://31k70639y6.zicp.fun/images/home/3.png" alt="">
<div class="texts"> <div class="texts">
<h6>2022 New Year Message from President Sun Dongbai</h6> <h6>2022 New Year Message from President Sun Dongbai</h6>
<p class="des">2021 is another challenging year for the Institute of Advanced Science Facilities, Shenzhen (IASF)</p> <p class="des">2021 is another challenging year for the Institute of Advanced Science Facilities, Shenzhen (IASF)</p>
@ -121,7 +121,7 @@
</div> </div>
</li> </li>
<li> <li>
<img src="http://192.168.31.136/images/home/3.png" alt=""> <img src="https://31k70639y6.zicp.fun/images/home/3.png" alt="">
<div class="texts"> <div class="texts">
<h6>2022 New Year Message from President Sun Dongbai</h6> <h6>2022 New Year Message from President Sun Dongbai</h6>
<p class="des">2021 is another challenging year for the Institute of Advanced Science Facilities, Shenzhen (IASF)</p> <p class="des">2021 is another challenging year for the Institute of Advanced Science Facilities, Shenzhen (IASF)</p>

@ -35,7 +35,7 @@
<div class="inner c-wrap"> <div class="inner c-wrap">
<h2 class="b-title">{{ modules[2].form.title }}</h2> <h2 class="b-title">{{ modules[2].form.title }}</h2>
<p class="intro">{{ modules[2].form.des }}</p> <p class="intro">{{ modules[2].form.des }}</p>
<img width="100%" height="536" :src="modules[1].form.pic" alt=""> <img width="100%" height="536" :src="modules[2].form.pic" alt="">
<div class="cover" @click="toSet(2)">点击更改图片标题概述与链接</div> <div class="cover" @click="toSet(2)">点击更改图片标题概述与链接</div>
</div> </div>
</div> </div>

@ -61,7 +61,7 @@
</div> </div>
<ul class="news"> <ul class="news">
<li> <li>
<img src="http://192.168.31.136/images/home/3.png" alt=""> <img src="https://31k70639y6.zicp.fun/images/home/3.png" alt="">
<div class="texts"> <div class="texts">
<h6>2022 New Year Message from President Sun Dongbai</h6> <h6>2022 New Year Message from President Sun Dongbai</h6>
<p class="des">2021 is another challenging year for the Institute of Advanced Science Facilities, Shenzhen (IASF)</p> <p class="des">2021 is another challenging year for the Institute of Advanced Science Facilities, Shenzhen (IASF)</p>
@ -69,7 +69,7 @@
</div> </div>
</li> </li>
<li> <li>
<img src="http://192.168.31.136/images/home/3.png" alt=""> <img src="https://31k70639y6.zicp.fun/images/home/3.png" alt="">
<div class="texts"> <div class="texts">
<h6>2022 New Year Message from President Sun Dongbai</h6> <h6>2022 New Year Message from President Sun Dongbai</h6>
<p class="des">2021 is another challenging year for the Institute of Advanced Science Facilities, Shenzhen (IASF)</p> <p class="des">2021 is another challenging year for the Institute of Advanced Science Facilities, Shenzhen (IASF)</p>
@ -77,7 +77,7 @@
</div> </div>
</li> </li>
<li> <li>
<img src="http://192.168.31.136/images/home/3.png" alt=""> <img src="https://31k70639y6.zicp.fun/images/home/3.png" alt="">
<div class="texts"> <div class="texts">
<h6>2022 New Year Message from President Sun Dongbai</h6> <h6>2022 New Year Message from President Sun Dongbai</h6>
<p class="des">2021 is another challenging year for the Institute of Advanced Science Facilities, Shenzhen (IASF)</p> <p class="des">2021 is another challenging year for the Institute of Advanced Science Facilities, Shenzhen (IASF)</p>
@ -85,7 +85,7 @@
</div> </div>
</li> </li>
<li> <li>
<img src="http://192.168.31.136/images/home/3.png" alt=""> <img src="https://31k70639y6.zicp.fun/images/home/3.png" alt="">
<div class="texts"> <div class="texts">
<h6>2022 New Year Message from President Sun Dongbai</h6> <h6>2022 New Year Message from President Sun Dongbai</h6>
<p class="des">2021 is another challenging year for the Institute of Advanced Science Facilities, Shenzhen (IASF)</p> <p class="des">2021 is another challenging year for the Institute of Advanced Science Facilities, Shenzhen (IASF)</p>
@ -93,7 +93,7 @@
</div> </div>
</li> </li>
<li> <li>
<img src="http://192.168.31.136/images/home/3.png" alt=""> <img src="https://31k70639y6.zicp.fun/images/home/3.png" alt="">
<div class="texts"> <div class="texts">
<h6>2022 New Year Message from President Sun Dongbai</h6> <h6>2022 New Year Message from President Sun Dongbai</h6>
<p class="des">2021 is another challenging year for the Institute of Advanced Science Facilities, Shenzhen (IASF)</p> <p class="des">2021 is another challenging year for the Institute of Advanced Science Facilities, Shenzhen (IASF)</p>
@ -101,7 +101,7 @@
</div> </div>
</li> </li>
<li> <li>
<img src="http://192.168.31.136/images/home/3.png" alt=""> <img src="https://31k70639y6.zicp.fun/images/home/3.png" alt="">
<div class="texts"> <div class="texts">
<h6>2022 New Year Message from President Sun Dongbai</h6> <h6>2022 New Year Message from President Sun Dongbai</h6>
<p class="des">2021 is another challenging year for the Institute of Advanced Science Facilities, Shenzhen (IASF)</p> <p class="des">2021 is another challenging year for the Institute of Advanced Science Facilities, Shenzhen (IASF)</p>

@ -32,7 +32,7 @@
<div class="block"> <div class="block">
<div class="inner"> <div class="inner">
<div class="banner"> <div class="banner">
<img width="100%" height="480" src="http://192.168.31.136/images/about/5.png" alt=""> <img width="100%" height="480" src="https://31k70639y6.zicp.fun/images/about/5.png" alt="">
<div class="right"> <div class="right">
<h6>IASF is driven to serve the Science and industry, and solve grand challenges through research and innovation. We are open and creative</h6> <h6>IASF is driven to serve the Science and industry, and solve grand challenges through research and innovation. We are open and creative</h6>
<div class="des">Innovation centers are distributed in the bay areas, such as the San Francisco Bay area, the New York Bay area, and the Tokyo Bay area in Japan. And the Guangdong-Hong Kong-Macao Greater Bay </div> <div class="des">Innovation centers are distributed in the bay areas, such as the San Francisco Bay area, the New York Bay area, and the Tokyo Bay area in Japan. And the Guangdong-Hong Kong-Macao Greater Bay </div>
@ -41,7 +41,7 @@
</div> </div>
<ul class="card"> <ul class="card">
<li> <li>
<img class="pic" src="http://192.168.31.136/images/about/9.png" alt=""> <img class="pic" src="https://31k70639y6.zicp.fun/images/about/9.png" alt="">
<div class="texts"> <div class="texts">
<p class="meta">2022-09-09 | Research</p> <p class="meta">2022-09-09 | Research</p>
<div class="des">IASF is driven to serve the Science and industry, and solve grand </div> <div class="des">IASF is driven to serve the Science and industry, and solve grand </div>
@ -49,7 +49,7 @@
</div> </div>
</li> </li>
<li> <li>
<img class="pic" src="http://192.168.31.136/images/about/10.png" alt=""> <img class="pic" src="https://31k70639y6.zicp.fun/images/about/10.png" alt="">
<div class="texts"> <div class="texts">
<p class="meta">2022-09-09 | Research</p> <p class="meta">2022-09-09 | Research</p>
<div class="des">IASF is driven to serve the Science and industry, and solve grand </div> <div class="des">IASF is driven to serve the Science and industry, and solve grand </div>
@ -57,7 +57,7 @@
</div> </div>
</li> </li>
<li> <li>
<img class="pic" src="http://192.168.31.136/images/about/11.png" alt=""> <img class="pic" src="https://31k70639y6.zicp.fun/images/about/11.png" alt="">
<div class="texts"> <div class="texts">
<p class="meta">2022-09-09 | Research</p> <p class="meta">2022-09-09 | Research</p>
<div class="des">IASF is driven to serve the Science and industry, and solve grand </div> <div class="des">IASF is driven to serve the Science and industry, and solve grand </div>
@ -78,7 +78,7 @@
</div> </div>
<div class="shop-shows"> <div class="shop-shows">
<div class="left"> <div class="left">
<img width="100%" height="400" src="http://192.168.31.136/images/about/5.png" alt=""> <img width="100%" height="400" src="https://31k70639y6.zicp.fun/images/about/5.png" alt="">
<div class="texts"> <div class="texts">
<h6>2022 New Year Messag President Sun Dongbai.</h6> <h6>2022 New Year Messag President Sun Dongbai.</h6>
<div class="des">2021 is another challenging year for the Institute of Advanced Science Facilities, Shenzhen (IASF)</div> <div class="des">2021 is another challenging year for the Institute of Advanced Science Facilities, Shenzhen (IASF)</div>
@ -87,31 +87,31 @@
<div class="right"> <div class="right">
<ul class="show-card"> <ul class="show-card">
<li> <li>
<img class="pic" src="http://192.168.31.136/images/about/9.png" alt=""> <img class="pic" src="https://31k70639y6.zicp.fun/images/about/9.png" alt="">
<div class="des">Comprises the installation and nanostructuri</div> <div class="des">Comprises the installation and nanostructuri</div>
</li> </li>
<li> <li>
<img class="pic" src="http://192.168.31.136/images/about/10.png" alt=""> <img class="pic" src="https://31k70639y6.zicp.fun/images/about/10.png" alt="">
<div class="des">Prof. Stephan V. Roth's research</div> <div class="des">Prof. Stephan V. Roth's research</div>
</li> </li>
</ul> </ul>
<ul class="card-list"> <ul class="card-list">
<li> <li>
<img class="pic" src="http://192.168.31.136/images/about/9.png" alt=""> <img class="pic" src="https://31k70639y6.zicp.fun/images/about/9.png" alt="">
<div class="texts"> <div class="texts">
<h6>Hold doctorates or the highest degree in their field</h6> <h6>Hold doctorates or the highest degree in their field</h6>
<div class="des">Characterization in Fibre and Polymer Technology, KTH Royal Institute of Technology.Characteriza Royal Institute of technology.</div> <div class="des">Characterization in Fibre and Polymer Technology, KTH Royal Institute of Technology.Characteriza Royal Institute of technology.</div>
</div> </div>
</li> </li>
<li> <li>
<img class="pic" src="http://192.168.31.136/images/about/10.png" alt=""> <img class="pic" src="https://31k70639y6.zicp.fun/images/about/10.png" alt="">
<div class="texts"> <div class="texts">
<h6>This 2019 image depicted a Centers for Disease</h6> <h6>This 2019 image depicted a Centers for Disease</h6>
<div class="des">laboratory technician, dressed in personal protective equipment (PPE), in thelaboratory technician, dressed in personal in the</div> <div class="des">laboratory technician, dressed in personal protective equipment (PPE), in thelaboratory technician, dressed in personal in the</div>
</div> </div>
</li> </li>
<li> <li>
<img class="pic" src="http://192.168.31.136/images/about/11.png" alt=""> <img class="pic" src="https://31k70639y6.zicp.fun/images/about/11.png" alt="">
<div class="texts"> <div class="texts">
<h6>Browse premium related images on iStock</h6> <h6>Browse premium related images on iStock</h6>
<div class="des">which would undergo analysis, here, in this laboratory environment.which would undergo analysis, here, in this laboratory environment.</div> <div class="des">which would undergo analysis, here, in this laboratory environment.which would undergo analysis, here, in this laboratory environment.</div>
@ -133,7 +133,7 @@
</div> </div>
<div class="shows"> <div class="shows">
<div class="left"> <div class="left">
<img width="100%" height="558" src="http://192.168.31.136/images/about/5.png" alt=""> <img width="100%" height="558" src="https://31k70639y6.zicp.fun/images/about/5.png" alt="">
<div class="texts"> <div class="texts">
<div class="meta"> <div class="meta">
<p class="date">09</p> <p class="date">09</p>
@ -147,7 +147,7 @@
</div> </div>
<ul class="card-list"> <ul class="card-list">
<li> <li>
<img class="pic" src="http://192.168.31.136/images/about/9.png" alt=""> <img class="pic" src="https://31k70639y6.zicp.fun/images/about/9.png" alt="">
<div class="texts"> <div class="texts">
<h6>Professional technical Free electron laser device</h6> <h6>Professional technical Free electron laser device</h6>
<p class="text"> <p class="text">
@ -165,7 +165,7 @@
</div> </div>
</li> </li>
<li> <li>
<img class="pic" src="http://192.168.31.136/images/about/9.png" alt=""> <img class="pic" src="https://31k70639y6.zicp.fun/images/about/9.png" alt="">
<div class="texts"> <div class="texts">
<h6>Professional technical Free electron laser device</h6> <h6>Professional technical Free electron laser device</h6>
<p class="text"> <p class="text">
@ -183,7 +183,7 @@
</div> </div>
</li> </li>
<li> <li>
<img class="pic" src="http://192.168.31.136/images/about/9.png" alt=""> <img class="pic" src="https://31k70639y6.zicp.fun/images/about/9.png" alt="">
<div class="texts"> <div class="texts">
<h6>Professional technical Free electron laser device</h6> <h6>Professional technical Free electron laser device</h6>
<p class="text"> <p class="text">
@ -201,7 +201,7 @@
</div> </div>
</li> </li>
<li> <li>
<img class="pic" src="http://192.168.31.136/images/about/9.png" alt=""> <img class="pic" src="https://31k70639y6.zicp.fun/images/about/9.png" alt="">
<div class="texts"> <div class="texts">
<h6>Professional technical Free electron laser device</h6> <h6>Professional technical Free electron laser device</h6>
<p class="text"> <p class="text">

@ -3,11 +3,12 @@
* */ * */
const url = location.host; const url = location.host;
const isDev = process.env.NODE_ENV === 'development' // 开发环境 const isDev = process.env.NODE_ENV === 'development' // 开发环境
let host = `${location.origin}:10000/` let host = `${location.origin}/`
if (isDev) { if (isDev) {
host = 'http://192.168.31.136:10000/' // 测试服 host = 'http://192.168.31.136:10000/' // 测试服
host = 'http://192.168.31.51:10000/' // 榕 // host = 'https://31k70639y6.zicp.fun/' // 测试服
// host = 'http://192.168.31.137:10000/' // 赓 // host = 'http://192.168.31.51:10000/' // 榕
// host = 'http://192.168.31.116:10000/' // 赓
} }
const Setting = { const Setting = {

Loading…
Cancel
Save