|
@@ -0,0 +1,111 @@
|
|
|
+<template>
|
|
|
+ <div class="JoinGi">
|
|
|
+ <h3>Individuals</h3>
|
|
|
+ <p>
|
|
|
+ Since the establishment of Capital Museum, we have got sufficient supports
|
|
|
+ from people from all walks of life. Here we only give a few examples, and
|
|
|
+ we show our respect to all units and individuals who have supported the
|
|
|
+ development of Chinese museums and have given help and supports to Capital
|
|
|
+ Museum.
|
|
|
+ </p>
|
|
|
+ <p>
|
|
|
+ • Mr. Ma Chongren, son of Ma Lianliang, donated to Capital Museum the
|
|
|
+ costumes of Mr. Ma Lianliang used during his lifetime, scripts and other
|
|
|
+ precious opera relics.
|
|
|
+ </p>
|
|
|
+ <p>
|
|
|
+ • Mr. Suo Daming donated to Capital Museum the old Beijing's Courtyard
|
|
|
+ (Siheyuan) gates, street signs, doorplates, glass refrigerator (of the
|
|
|
+ late Qing Dynasty) and other large amount of relics recording the
|
|
|
+ development history of old Beijing.
|
|
|
+ </p>
|
|
|
+ <p>
|
|
|
+ • Guo Musun donated the 16mm movie camera (USA) and the 16mm movie
|
|
|
+ projector (USA) bought by his father Mr. Guo Chengen when he founded The
|
|
|
+ Crafts and Refining Energy Company of China (the predecessor of China's
|
|
|
+ chemical industry) in Shanghai.
|
|
|
+ </p>
|
|
|
+ <p>
|
|
|
+ • Jin Guangqun ( the famous editor of former Beijing Publishing House ),
|
|
|
+ the pioneer of the compilation of tourist maps of China, donated tourist
|
|
|
+ maps, 312 sets of books, including the tourist maps of Beijing's famous
|
|
|
+ parks in different years.
|
|
|
+ </p>
|
|
|
+ <p>
|
|
|
+ • Li Binsheng, a well-known folk artistand cartoonist, donated a western
|
|
|
+ bracket clock.
|
|
|
+ </p>
|
|
|
+ <h3>Corporations & Institutions</h3>
|
|
|
+ <p>
|
|
|
+ The century-old Beijing Match Factory donated to Capital Museum a large
|
|
|
+ number of files and real objects which record the development of Beijing's
|
|
|
+ light industry in modern history, including 518 sets of high standard real
|
|
|
+ samples of matches, 40 volumes data, and 3 volumes of text materials of
|
|
|
+ sparks, etc.
|
|
|
+ </p>
|
|
|
+ <div class="poh">
|
|
|
+ <h3>RELICS COLLECTING AND DONATING</h3>
|
|
|
+ <p>+86 (10) 63370488</p>
|
|
|
+ <p>+86 (10) 63363388 to extension 6223</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+export default {
|
|
|
+ name: "JoinGi",
|
|
|
+ components: {},
|
|
|
+ data() {
|
|
|
+ //这里存放数据
|
|
|
+ return {};
|
|
|
+ },
|
|
|
+ //监听属性 类似于data概念
|
|
|
+ computed: {},
|
|
|
+ //监控data中的数据变化
|
|
|
+ watch: {},
|
|
|
+ //方法集合
|
|
|
+ methods: {},
|
|
|
+ //生命周期 - 创建完成(可以访问当前this实例)
|
|
|
+ created() {},
|
|
|
+ //生命周期 - 挂载完成(可以访问DOM元素)
|
|
|
+ mounted() {},
|
|
|
+ beforeCreate() {}, //生命周期 - 创建之前
|
|
|
+ beforeMount() {}, //生命周期 - 挂载之前
|
|
|
+ beforeUpdate() {}, //生命周期 - 更新之前
|
|
|
+ updated() {}, //生命周期 - 更新之后
|
|
|
+ beforeDestroy() {}, //生命周期 - 销毁之前
|
|
|
+ destroyed() {}, //生命周期 - 销毁完成
|
|
|
+ activated() {}, //如果页面有keep-alive缓存功能,这个函数会触发
|
|
|
+};
|
|
|
+</script>
|
|
|
+<style lang='less' scoped>
|
|
|
+.JoinGi {
|
|
|
+ padding: 20px 20px 40px;
|
|
|
+ background: url("../../assets/img/Join/bgJ.png");
|
|
|
+ background-size: 100% 100%;
|
|
|
+ & > h3 {
|
|
|
+ margin-bottom: 15px;
|
|
|
+ padding-left: 30px;
|
|
|
+ color: #000000;
|
|
|
+ font-size: 18px;
|
|
|
+ background: url("../../assets/img/Layout/chosen.png") left center no-repeat;
|
|
|
+ background-size: 22px 18px;
|
|
|
+ }
|
|
|
+ & > p {
|
|
|
+ color: #6a6a6a;
|
|
|
+ font-size: 14px;
|
|
|
+ line-height: 16px;
|
|
|
+ margin-bottom: 15px;
|
|
|
+ }
|
|
|
+ .poh{
|
|
|
+ padding: 15px;
|
|
|
+ background-color: #c1aa7b;
|
|
|
+ border-radius: 5px;
|
|
|
+ color: #fff;
|
|
|
+ font-size: 16px;
|
|
|
+ &>h3{
|
|
|
+ margin-bottom: 15px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|