activity_certificate.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. <template>
  2. <div class="activity_container">
  3. <Header></Header>
  4. <Activitycommon></Activitycommon>
  5. <div class="activity_certificate">
  6. <div class="activity_certificate_box">
  7. <div class="rowWrap py_white_bg pdt30">
  8. <div class="w1200 ni_g_are_s pdt20 ni_g_bg_e8f4ff">
  9. <!--下拉插件 S-->
  10. <Select v-model="model1" style="width:200px;margin-right:30px;">
  11. <Option v-for="item in cityList" :value="item.value" :key="item.value">{{ item.label }}</Option>
  12. </Select>
  13. <!--下拉插件 E-->
  14. <!--下拉插件 S-->
  15. <Select v-model="model2" style="width:200px;margin-right:30px;">
  16. <Option v-for="itemc in cityList2" :value="itemc.value" :key="itemc.value">{{ itemc.label }}</Option>
  17. </Select>
  18. <!--下拉插件 E-->
  19. <!--下拉插件 S-->
  20. <Select v-model="model3" style="width:200px;margin-right:30px;">
  21. <Option v-for="itemm in cityList3" :value="itemm.value" :key="itemm.value">{{ itemm.label }}</Option>
  22. </Select>
  23. <!--下拉插件 E-->
  24. <!--下拉插件 S-->
  25. <Select v-model="model4" style="width:200px;margin-right:30px;">
  26. <Option v-for="itemy in cityList4" :value="itemy.value" :key="itemy.value">{{ itemy.label }}</Option>
  27. </Select>
  28. <!--下拉插件 E-->
  29. <div class="ni_g_search fr mgr20">
  30. <input type="text" placeholder="请输入证书编号或获奖者姓名" class="inp ni_g_w230">
  31. <a class="ni_button" href="javascript:" onclick="loadlist()"></a>
  32. </div>
  33. </div>
  34. <div class="w1200 ni_g_bg_fafafa pdtb30 ni_g_cup_s ni_g_txt_center">
  35. <table class="adm_table mgb20" width="100%" cellspacing="0" cellpadding="0" border="0">
  36. <tbody>
  37. <tr>
  38. <th width="5%" style="text-align:center">序号</th>
  39. <th width="*" style="text-align:center">证书编号</th>
  40. <th width="10%" style="text-align:center">获奖者</th>
  41. <th width="17%" style="text-align:center">区域</th>
  42. <th width="16%" style="text-align:center">学校</th>
  43. <th width="10%" style="text-align:center">奖项</th>
  44. <th width="16%" style="text-align:center">颁发机构</th>
  45. <th width="10%" style="text-align:center">操作</th>
  46. </tr>
  47. <tr>
  48. <td colspan="20">未搜索到课题证书</td>
  49. </tr>
  50. </tbody>
  51. </table>
  52. <div class="mgt30 t_c">
  53. </div>
  54. </div>
  55. </div>
  56. </div>
  57. </div>
  58. <Footer></Footer>
  59. </div>
  60. </template>
  61. <script>
  62. import Header from '@/common/headers.vue'
  63. import Footer from '@/common/footer.vue'
  64. import Activitycommon from '@/components/resource/activitycommon.vue'
  65. export default {
  66. components: {
  67. Header,
  68. Footer,
  69. Activitycommon,
  70. },
  71. data() {
  72. return {
  73. cityList: [
  74. {
  75. value: '全部',
  76. label: '全部'
  77. },
  78. {
  79. value: '四川省',
  80. label: '四川省'
  81. },
  82. {
  83. value: '山东省',
  84. label: '山东省'
  85. },
  86. {
  87. value: '贵州省',
  88. label: '贵州省'
  89. },
  90. {
  91. value: '上海市',
  92. label: '上海市'
  93. },
  94. {
  95. value: '广东省',
  96. label: '广东省'
  97. },
  98. {
  99. value: '重庆市',
  100. label: '重庆市'
  101. }
  102. ],
  103. model1: '全部',
  104. cityList2: [
  105. {
  106. value: '全部',
  107. label: '全部'
  108. },
  109. {
  110. value: '成都市',
  111. label: '成都市'
  112. },
  113. {
  114. value: '雅安市',
  115. label: '雅安市'
  116. },
  117. {
  118. value: '宜宾市',
  119. label: '宜宾市'
  120. },
  121. {
  122. value: '绵阳市',
  123. label: '绵阳市'
  124. },
  125. {
  126. value: '眉山市',
  127. label: '眉山市'
  128. },
  129. {
  130. value: '达州市',
  131. label: '达州市'
  132. },
  133. {
  134. value: '广安市',
  135. label: '广安市'
  136. }
  137. ],
  138. model2: '全部',
  139. cityList3: [
  140. {
  141. value: '全部',
  142. label: '全部'
  143. },
  144. ],
  145. model3: '全部',
  146. cityList4: [
  147. {
  148. value: '全部',
  149. label: '全部'
  150. },
  151. ],
  152. model4: '全部',
  153. }
  154. }
  155. }
  156. </script>
  157. <style scoped>
  158. .activity_certificate {
  159. width:100%;
  160. height:auto;
  161. }
  162. .activity_certificate_box {
  163. width:1200px;
  164. height:auto;
  165. margin:0 auto;
  166. }
  167. .rowWrap {
  168. width: 100%;
  169. }
  170. .pdt30 {
  171. padding-top: 30px;
  172. }
  173. .ni_g_are_s {
  174. height: 57px;
  175. }
  176. .ni_g_bg_e8f4ff {
  177. background: #e8f4ff;
  178. padding:1%;
  179. }
  180. .fr {
  181. float: right;
  182. }
  183. .mgr20 {
  184. margin-right: 20px;
  185. }
  186. .ni_g_search .inp {
  187. padding-top: 9px;
  188. padding-bottom: 8px;
  189. }
  190. .inp {
  191. padding: 5px;
  192. border: 1px solid #d5d5d5;
  193. color: #888;
  194. outline: none;
  195. vertical-align: middle;
  196. height: 30px;
  197. }
  198. .ni_g_w230 {
  199. width: 180px;
  200. }
  201. .ni_g_search .ni_button {
  202. height: 30px;
  203. width: 38px;
  204. border: 1px solid #44a9f1;
  205. display: block;
  206. float: right;
  207. border-top-right-radius: 3px;
  208. border-bottom-right-radius: 3px;
  209. background: url(../../assets/image/resource/low_search_icon.png) no-repeat center center #56b8fd;
  210. }
  211. .ni_g_cup_s {
  212. position: relative;
  213. }
  214. .ni_g_txt_center {
  215. text-align: center;
  216. margin-top:2%;
  217. margin-bottom:5%;
  218. }
  219. .ni_g_bg_fafafa {
  220. background: #fafafa;
  221. }
  222. .adm_table {
  223. border: 1px solid #dbdce1;
  224. }
  225. .mgb20 {
  226. margin-bottom: 20px;
  227. }
  228. .adm_table tr th, .adm_table tr td {
  229. padding: 12px 10px;
  230. }
  231. .adm_table tr th {
  232. background: #f6f6f6;
  233. font-weight: normal;
  234. color: #222;
  235. text-align: left;
  236. font-family: "微软雅黑";
  237. font-size: 14px;
  238. }
  239. .adm_table tr td {
  240. border-top: 1px solid #dbdce1;
  241. font-family: "微软雅黑";
  242. font-size: 14px;
  243. color: #555;
  244. }
  245. </style>