policy_deatil.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. <template>
  2. <div class="content">
  3. <div class="title-box">
  4. <div class="title">【工信部】关于推动民营经济高质量发展的若干意见</div>
  5. <div class="title-time">
  6. <p class="time">2021-05-07 10:15</p>
  7. <p class="read-count">阅读量 488</p>
  8. </div>
  9. </div>
  10. <div class="video-box">
  11. <image src="/static/policy/u575.png"></image>
  12. </div>
  13. <!-- 企业研发投入补贴 -->
  14. <div class="card-input-content">
  15. <div class="card-input">
  16. <div class="card-title">企业研发投入补贴</div>
  17. <div class="table">
  18. <p class="table-item">
  19. <span>项目金额:</span>
  20. <span>最高500.00万</span>
  21. </p>
  22. <p class="table-item">
  23. <span>申报时间:</span>
  24. <span>2021-08-20 至 2021-09-20</span>
  25. </p>
  26. <p class="table-item">
  27. <span>申报状态:</span>
  28. <span>剩5天</span>
  29. </p>
  30. </div>
  31. </div>
  32. </div>
  33. <!-- 项目概况 -->
  34. <div class="card-situation">
  35. <div class="card-title">项目概况</div>
  36. <p>
  37. 为贯彻落实《加强信息共享 促进产融合作行动方案》 (工信部联财 [2014]
  38. 83号)、和《推进工业化文化发展实施方案(2021-2025年)》工信部联政法(
  39. [2021]
  40. 54号)等文件精神,壮大工旅文融合发展格局,助力制造强国和网络强国建设,现组织开展2021年度工业文化产业项目征集工作。
  41. </p>
  42. </div>
  43. <div class="card-group" v-for="(item, idx) in model" :key="idx">
  44. <policy-deatil-card
  45. :model="item"
  46. :isMar="idx == model.length - 1"
  47. ></policy-deatil-card>
  48. </div>
  49. <!-- <div class="share-collection">
  50. <div class="share">
  51. <span>分享</span>
  52. <image src="/static/policy/u2091.png" />
  53. </div>
  54. <div class="collection">
  55. <span>收藏</span>
  56. <image src="/static/policy/u2096.png" />
  57. </div>
  58. </div> -->
  59. <div style="width: 100%">
  60. <footer-share
  61. style="width: 100%"
  62. :isCollection="true"
  63. @collectionPages="collectionPage"
  64. @sharePages="sharePage"
  65. ></footer-share>
  66. </div>
  67. </div>
  68. </template>
  69. <script>
  70. import policy_deatil_card from "./policy_deatil_card";
  71. export default {
  72. components: {
  73. policyDeatilCard: policy_deatil_card,
  74. },
  75. data() {
  76. return {
  77. model: [
  78. {
  79. title: "基本信息",
  80. item: [
  81. {
  82. name: "项目名称",
  83. value: ["企业研发投入补贴"],
  84. },
  85. {
  86. name: "受理部门",
  87. value: ["区科技创新局"],
  88. },
  89. {
  90. name: "政策层级",
  91. value: ["西咸新区"],
  92. },
  93. {
  94. name: "信息提供日期",
  95. value: ["2021-08-20"],
  96. },
  97. ],
  98. },
  99. {
  100. title: "支持力度",
  101. item: [
  102. {
  103. name: "支持金额",
  104. value: ["最高500.00万"],
  105. },
  106. {
  107. name: "支持金额",
  108. value: [
  109. "1. 对研发投入达到1000万元的企业,给予20万元研发投入补贴;",
  110. "2. 研发超过1000万的部分,每增长1000万追加奖励5万元;",
  111. "3. 本项目受企业纳税额限制。",
  112. ],
  113. },
  114. ],
  115. },
  116. ],
  117. id: "",
  118. };
  119. },
  120. onLoad(option) {
  121. let id = option.id;
  122. },
  123. methods: {
  124. collectionPage() {
  125. console.log("已收藏");
  126. },
  127. sharePage() {
  128. console.log("分享");
  129. uni.showShareMenu({
  130. title: "园区XXX",
  131. path: "pages/park/park_detail",
  132. success(res) {
  133. console.log(res);
  134. },
  135. });
  136. },
  137. },
  138. };
  139. </script>
  140. <style lang="scss" scoped>
  141. * {
  142. box-sizing: border-box;
  143. }
  144. .footer-share-box{
  145. margin-left: -20rpx;
  146. }
  147. .content {
  148. margin-top: 20rpx;
  149. display: flex;
  150. flex-direction: column;
  151. align-items: center;
  152. justify-content: center;
  153. padding: 20rpx;
  154. .title-box {
  155. display: flex;
  156. flex-direction: column;
  157. padding-bottom: 10rpx;
  158. .title {
  159. letter-spacing: 5rpx;
  160. font-size: 35rpx;
  161. font-weight: 500;
  162. }
  163. .title-time {
  164. display: flex;
  165. font-size: 20rpx;
  166. color: $uni-text-color-grey;
  167. margin-top: 20rpx;
  168. .time {
  169. margin-left: 20rpx;
  170. margin-right: 100rpx;
  171. }
  172. }
  173. }
  174. .video-box {
  175. width: 100%;
  176. image {
  177. width: 100%;
  178. height: 400rpx;
  179. border-radius: 32rpx;
  180. }
  181. }
  182. .card-input-content {
  183. width: 100%;
  184. margin-top: 20rpx;
  185. .card-input {
  186. padding: 30rpx 30rpx;
  187. box-shadow: 0px 4rpx 32rpx rgba(0, 0, 0, 0.1);
  188. border-radius: 32rpx;
  189. .card-title {
  190. font-weight: 600;
  191. padding: 20rpx 20rpx 0rpx 20rpx;
  192. }
  193. .table {
  194. border-radius: 32rpx;
  195. background-color: #f2f2f2;
  196. margin-top: 20rpx;
  197. display: flex;
  198. padding: 0 20rpx;
  199. flex-direction: column;
  200. .table-item {
  201. box-sizing: border-box;
  202. width: 100%;
  203. margin: 20rpx 0;
  204. font-size: 27rpx;
  205. font-weight: 300;
  206. display: flex;
  207. justify-content: space-between;
  208. }
  209. }
  210. }
  211. }
  212. .card-situation {
  213. margin-top: 20rpx;
  214. padding: 20rpx;
  215. border-top: 8rpx solid #f2f2f2;
  216. box-shadow: 0px 4rpx 32rpx rgba(0, 0, 0, 0.1);
  217. border-radius: 32rpx;
  218. .card-title {
  219. font-weight: 600;
  220. padding: 20rpx 20rpx 0rpx 20rpx;
  221. }
  222. p {
  223. padding: 20rpx;
  224. margin-top: 20rpx;
  225. font-size: 27rpx;
  226. letter-spacing: 1rpx;
  227. line-height: 50rpx;
  228. }
  229. }
  230. .card-group {
  231. width: 100%;
  232. }
  233. .share-collection {
  234. background-color: #ffffff;
  235. position: fixed;
  236. bottom: 0;
  237. width: 100%;
  238. height: 80rpx;
  239. display: flex;
  240. align-items: center;
  241. justify-content: space-between;
  242. .share,
  243. .collection {
  244. width: 50%;
  245. display: flex;
  246. justify-content: center;
  247. align-items: center;
  248. height: 100%;
  249. }
  250. .share {
  251. border-right: 1px solid $uni-border-color;
  252. }
  253. image {
  254. width: 50rpx;
  255. height: 50rpx;
  256. margin-left: 40rpx;
  257. }
  258. }
  259. }
  260. </style>