contextfabuxx.vue 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674
  1. <template>
  2. <div id="recruitLists">
  3. <el-row>
  4. <el-col :span="24">
  5. <el-tabs v-model="activeName" type="card" @tab-click="handleClick">
  6. <el-tab-pane label="我的需求" name="first">
  7. <el-row style="padding: 0 20px;">
  8. <el-tabs v-model="activeNameFirst" @tab-click="handleClickFirst">
  9. <el-tab-pane label="审核成功" name="first">
  10. <el-col :span="24" class="info">
  11. <el-col :span="24" v-for="(item, index) in recruitData" :key="index">
  12. <el-col class="xqborder">
  13. <el-col :span="24" class="fbListTop">
  14. <el-col :span="21"> {{ item.name }} </el-col>
  15. <el-col :span="3">
  16. {{ item.meta && item.meta.createdAt ? new Date(item.meta.createdAt).toLocaleDateString() : '' || '' }}
  17. </el-col>
  18. </el-col>
  19. <el-col :span="24" class="fbListCenter">
  20. <el-col :span="6" class="fimage">
  21. <el-col :span="24" v-for="(acm, index) in item.image" :key="index">
  22. <template v-if="index === 0">
  23. <el-image style="width:100px;height:100px" :src="acm.url"></el-image>
  24. </template>
  25. </el-col>
  26. </el-col>
  27. <el-col :span="6" class="fbListCenterC">
  28. <p class="textOver">产品:{{ item.name }}</p>
  29. <p>类别:{{ item.totaltype === '0' ? '技术' : item.totaltype === '1' ? '产品' : item.totaltype === '2' ? '服务' : 'underdind' }}</p>
  30. <p class="listMoney">{{ item.price }}/{{ item.priceunit }}</p>
  31. </el-col>
  32. <el-col :span="6" class="fbListCenterTwo">
  33. <el-col :span="24">最新申请:</el-col>
  34. </el-col>
  35. <el-col :span="6" class="fbListCenterR">
  36. <el-col :span="24" class="bainji">
  37. <el-link :underline="false" @click="$router.push({ path: '/enterprise/enterprisexuqiu', query: { id: item.id } })">编辑</el-link
  38. ><br />
  39. <el-link :underline="false" @click="handleDelete(item)">彻底删除</el-link>
  40. <!-- <el-link :underline="false" @click="$router.push({ path: '/enterprise/enterprisexuqiu', query: { id: item.id } })"
  41. >查看申请</el-link
  42. > -->
  43. </el-col>
  44. </el-col>
  45. </el-col>
  46. </el-col>
  47. </el-col>
  48. </el-col>
  49. <el-col class="page" :span="24">
  50. <el-pagination
  51. @size-change="handleSizeChange"
  52. @current-change="handleCurrentChange"
  53. :current-page="currentPage"
  54. background
  55. layout="total, prev, pager, next, jumper"
  56. :total="total"
  57. :page-size="pageSize"
  58. >
  59. </el-pagination>
  60. </el-col>
  61. </el-tab-pane>
  62. <el-tab-pane label="审核中信息" name="second">
  63. <el-col :span="24" class="info">
  64. <el-col :span="24" v-for="(item, index) in shenheList" :key="index">
  65. <el-col class="xqborder">
  66. <el-col :span="24" class="fbListTop">
  67. <el-col :span="21"> {{ item.name }} </el-col>
  68. <el-col :span="3">
  69. {{ item.meta && item.meta.createdAt ? new Date(item.meta.createdAt).toLocaleDateString() : '' || '' }}
  70. </el-col>
  71. </el-col>
  72. <el-col :span="24" class="fbListCenter">
  73. <el-col :span="6" class="fimage">
  74. <el-col :span="24" v-for="(acm, index) in item.image" :key="index">
  75. <template v-if="index === 0">
  76. <el-image style="width:100px;height:100px" :src="acm.url"></el-image>
  77. </template>
  78. </el-col>
  79. </el-col>
  80. <el-col :span="6" class="fbListCenterC">
  81. <p class="textOver">产品:{{ item.name }}</p>
  82. <p>类别:{{ item.totaltype === '0' ? '技术' : item.totaltype === '1' ? '产品' : item.totaltype === '2' ? '服务' : 'underdind' }}</p>
  83. <p class="listMoney">{{ item.price }}/{{ item.priceunit }}</p>
  84. </el-col>
  85. <el-col :span="6" class="fbListCenterTwo">
  86. <el-col :span="24">最新申请:</el-col>
  87. </el-col>
  88. <el-col :span="6" class="fbListCenterR">
  89. <el-col :span="24" class="bainji">
  90. <el-link :underline="false" @click="$router.push({ path: '/enterprise/enterprisexuqiu', query: { id: item.id } })">编辑</el-link
  91. ><br />
  92. <el-link :underline="false" @click="handleDelete(item)">彻底删除</el-link>
  93. </el-col>
  94. </el-col>
  95. </el-col>
  96. </el-col>
  97. </el-col>
  98. </el-col>
  99. <el-col class="page" :span="24">
  100. <el-pagination
  101. @size-change="handleSizeChange"
  102. @current-change="handleCurrentChange1"
  103. :current-page="currentPage"
  104. background
  105. layout="total, prev, pager, next, jumper"
  106. :total="tatalstatus1"
  107. :page-size="pageSize"
  108. >
  109. </el-pagination>
  110. </el-col>
  111. </el-tab-pane>
  112. <el-tab-pane label="审核失败" name="thirth">
  113. <el-col :span="24" class="info">
  114. <el-col :span="24" v-for="(item, index) in successlist" :key="index">
  115. <el-col class="xqborder">
  116. <el-col :span="24" class="fbListTop">
  117. <el-col :span="21"> {{ item.name }} </el-col>
  118. <el-col :span="3">
  119. {{ item.meta && item.meta.createdAt ? new Date(item.meta.createdAt).toLocaleDateString() : '' || '' }}
  120. </el-col>
  121. </el-col>
  122. <el-col :span="24" class="fbListCenter">
  123. <el-col :span="6" class="fimage">
  124. <el-col :span="24" v-for="(acm, index) in item.image" :key="index">
  125. <template v-if="index === 0">
  126. <el-image style="width:100px;height:100px" :src="acm.url"></el-image>
  127. </template>
  128. </el-col>
  129. </el-col>
  130. <el-col :span="6" class="fbListCenterC">
  131. <p class="textOver">产品:{{ item.name }}</p>
  132. <p>类别:{{ item.totaltype === '0' ? '技术' : item.totaltype === '1' ? '产品' : item.totaltype === '2' ? '服务' : 'underdind' }}</p>
  133. <p class="listMoney">{{ item.price }}/{{ item.priceunit }}</p>
  134. </el-col>
  135. <el-col :span="6" class="fbListCenterTwo">
  136. <el-col :span="24">最新申请:</el-col>
  137. </el-col>
  138. <el-col :span="6" class="fbListCenterR">
  139. <el-col :span="24" class="bainji">
  140. <el-link :underline="false" @click="handleDelete(item)">彻底删除</el-link>
  141. </el-col>
  142. </el-col>
  143. </el-col>
  144. </el-col>
  145. </el-col>
  146. </el-col>
  147. <el-col class="page" :span="24">
  148. <el-pagination
  149. @size-change="handleSizeChange"
  150. @current-change="handleCurrentChange1"
  151. :current-page="currentPage"
  152. background
  153. layout="total, prev, pager, next, jumper"
  154. :total="tatalstatus2"
  155. :page-size="pageSize"
  156. >
  157. </el-pagination>
  158. </el-col>
  159. </el-tab-pane>
  160. <!-- <el-tab-pane label="发起交易" name="fgffadqdfa">
  161. <el-col :span="24" class="info">
  162. <el-col :span="24" v-for="(item, index) in faqilist" :key="index">
  163. <el-col class="xqborder">
  164. <el-col :span="24" class="fbListTop">
  165. <el-col :span="21"> </el-col>
  166. <el-col :span="3">
  167. {{ item.meta && item.meta.createdAt ? new Date(item.meta.createdAt).toLocaleDateString() : '' || '' }}
  168. </el-col>
  169. </el-col>
  170. <el-col :span="24" class="fbListCenter">
  171. <el-col :span="6" class="fbListCenterC">
  172. <p class="textOver">产品:{{ item.product_name }}</p>
  173. <p>营销人名称:{{ item.market_username }}</p>
  174. <p>购买人名称:{{ item.username }}</p>
  175. </el-col>
  176. <el-col :span="6" class="fbListCenterTwo">
  177. <el-col :span="24">说明:{{ item.description }}</el-col>
  178. </el-col>
  179. <el-col :span="6" class="fbListCenterR">
  180. <el-col :span="24" class="bainji">
  181. <el-link :underline="false" @click="jiaoyisuccess(item)">同意交易</el-link>
  182. </el-col>
  183. </el-col>
  184. </el-col>
  185. </el-col>
  186. </el-col>
  187. </el-col>
  188. <el-col class="page" :span="24">
  189. <el-pagination
  190. @size-change="handleSizeChange"
  191. @current-change="handleCurrentChangefaqi"
  192. :current-page="currentPage"
  193. background
  194. layout="total, prev, pager, next, jumper"
  195. :total="totalfaqi"
  196. :page-size="pageSize"
  197. >
  198. </el-pagination>
  199. </el-col>
  200. </el-tab-pane>
  201. <el-tab-pane label="交易中" name="fgrrsss">
  202. <el-col :span="24" class="info">
  203. <el-col :span="24" v-for="(item, index) in Transactionlist" :key="index">
  204. <el-col class="xqborder">
  205. <el-col :span="24" class="fbListTop">
  206. <el-col :span="21"> </el-col>
  207. <el-col :span="3">
  208. {{ item.meta && item.meta.createdAt ? new Date(item.meta.createdAt).toLocaleDateString() : '' || '' }}
  209. </el-col>
  210. </el-col>
  211. <el-col :span="24" class="fbListCenter">
  212. <el-col :span="6" class="fbListCenterC">
  213. <p class="textOver">产品:{{ item.product_name }}</p>
  214. <p>营销人名称:{{ item.market_username }}</p>
  215. <p>购买人名称:{{ item.username }}</p>
  216. </el-col>
  217. <el-col :span="6" class="fbListCenterTwo">
  218. <el-col :span="24">说明:{{ item.description }}</el-col>
  219. </el-col>
  220. <el-col :span="6" class="fbListCenterR">
  221. <el-col :span="24" class="bainji">
  222. <el-link :underline="false" @click="deteles(item)">彻底删除</el-link>
  223. <el-link :underline="false" @click="success(item)">审核通过</el-link>
  224. <el-link :underline="false" @click="shibai(item)">审核失败</el-link>
  225. </el-col>
  226. </el-col>
  227. </el-col>
  228. </el-col>
  229. </el-col>
  230. </el-col>
  231. <el-col class="page" :span="24">
  232. <el-pagination
  233. @size-change="handleSizeChange"
  234. @current-change="handleCurrentChange4"
  235. :current-page="currentPage"
  236. background
  237. layout="total, prev, pager, next, jumper"
  238. :total="total4"
  239. :page-size="pageSize"
  240. >
  241. </el-pagination>
  242. </el-col>
  243. </el-tab-pane>
  244. <el-tab-pane label="交易完成" name="fgrraaa">
  245. <el-col :span="24" class="info">
  246. <el-col :span="24" v-for="(item, index) in jiaoyilist1" :key="index">
  247. <el-col class="xqborder">
  248. <el-col :span="24" class="fbListTop">
  249. <el-col :span="21"> </el-col>
  250. <el-col :span="3">
  251. {{ item.meta && item.meta.createdAt ? new Date(item.meta.createdAt).toLocaleDateString() : '' || '' }}
  252. </el-col>
  253. </el-col>
  254. <el-col :span="24" class="fbListCenter">
  255. <el-col :span="6" class="fbListCenterC">
  256. <p class="textOver">产品:{{ item.product_name }}</p>
  257. <p>营销人名称:{{ item.market_username }}</p>
  258. <p>购买人名称:{{ item.username }}</p>
  259. </el-col>
  260. <el-col :span="6" class="fbListCenterTwo">
  261. <el-col :span="24">说明:{{ item.description }}</el-col>
  262. </el-col>
  263. <el-col :span="6" class="fbListCenterR">
  264. <el-col :span="24" class="bainji">
  265. <el-link :underline="false" @click="deteles(item)">彻底删除</el-link>
  266. </el-col>
  267. </el-col>
  268. </el-col>
  269. </el-col>
  270. </el-col>
  271. </el-col>
  272. <el-col class="page" :span="24">
  273. <el-pagination
  274. @size-change="handleSizeChange"
  275. @current-change="handleCurrentChange5"
  276. :current-page="currentPage"
  277. background
  278. layout="total, prev, pager, next, jumper"
  279. :total="total5"
  280. :page-size="pageSize"
  281. >
  282. </el-pagination>
  283. </el-col>
  284. </el-tab-pane> -->
  285. <!--
  286. <el-tab-pane label="交易取消" name="fgrr">
  287. <el-col :span="24" class="info">
  288. <el-col :span="24" v-for="(item, index) in jiaoyilist" :key="index">
  289. <el-col class="xqborder">
  290. <el-col :span="24" class="fbListTop">
  291. <el-col :span="21"> </el-col>
  292. <el-col :span="3">
  293. {{ item.meta && item.meta.createdAt ? new Date(item.meta.createdAt).toLocaleDateString() : '' || '' }}
  294. </el-col>
  295. </el-col>
  296. <el-col :span="24" class="fbListCenter">
  297. <el-col :span="6" class="fbListCenterC">
  298. <p class="textOver">产品:{{ item.product_name }}</p>
  299. <p>营销人名称:{{ item.market_username }}</p>
  300. <p>购买人名称:{{ item.username }}</p>
  301. </el-col>
  302. <el-col :span="6" class="fbListCenterTwo">
  303. <el-col :span="24">说明:{{ item.description }}</el-col>
  304. </el-col>
  305. <el-col :span="6" class="fbListCenterR">
  306. <el-col :span="24" class="bainji">
  307. <el-link :underline="false" @click="deteles(item)">彻底删除</el-link>
  308. </el-col>
  309. </el-col>
  310. </el-col>
  311. </el-col>
  312. </el-col>
  313. </el-col>
  314. <el-col class="page" :span="24">
  315. <el-pagination
  316. @size-change="handleSizeChange"
  317. @current-change="handleCurrentChange6"
  318. :current-page="currentPage"
  319. background
  320. layout="total, prev, pager, next, jumper"
  321. :total="total6"
  322. :page-size="pageSize"
  323. >
  324. </el-pagination>
  325. </el-col>
  326. </el-tab-pane> -->
  327. </el-tabs>
  328. </el-row>
  329. </el-tab-pane>
  330. <!-- <el-tab-pane label="我的供给" name="second">
  331. <el-row style="padding: 0 20px;">
  332. <el-tabs v-model="activeNameFirst" @tab-click="handleClickFirst">
  333. <el-tab-pane label="已经审核信息" name="first">
  334. <el-col :span="24" v-for="(item, index) in gonggeiData" :key="index">
  335. <el-col class="xqborder">
  336. <el-col :span="24" class="fbListTop">
  337. <el-col :span="20"> {{ item.name }} </el-col>
  338. <el-col :span="4">
  339. {{ item.meta && item.meta.createdAt ? new Date(item.meta.createdAt).toLocaleDateString() : '' || '' }}
  340. </el-col>
  341. </el-col>
  342. <el-col :span="24" class="fbListCenter">
  343. <el-col :span="6" class="fimage">
  344. <el-image style="width:100px;height:100px" :src="item.image.url"></el-image>
  345. </el-col>
  346. <el-col :span="6" class="fbListCenterC">
  347. <p class="textOver">产品:{{ item.name }}</p>
  348. <p>类别:{{ item.totaltype === '0' ? '技术' : item.totaltype === '1' ? '产品' : item.totaltype === '2' ? '服务' : 'underdind' }}</p>
  349. <p class="listMoney">{{ item.price }}/{{ item.priceunit }}</p>
  350. </el-col>
  351. <el-col :span="6" class="fbListCenterTwo">
  352. <el-col :span="24">最新申请:</el-col>
  353. </el-col>
  354. <el-col :span="6" class="fbListCenterR">
  355. <el-col :span="24" class="bainji">
  356. <el-link :underline="false" @click="$router.push({ path: '/enterprise/enterprisexuqiu', query: { id: item.id } })">编辑</el-link
  357. ><br />
  358. <el-link :underline="false" @click="handleDelete(item)">彻底删除</el-link>
  359. <el-link :underline="false" @click="$router.push({ path: '/enterprise/enterprisexuqiu', query: { id: item.id } })"
  360. >查看申请</el-link
  361. >
  362. </el-col>
  363. </el-col>
  364. </el-col>
  365. </el-col>
  366. </el-col>
  367. <el-col class="page" :span="24">
  368. <el-pagination
  369. @size-change="handleSizeChange"
  370. @current-change="handleCurrentChange"
  371. :current-page="currentPage"
  372. layout="total, prev, pager, next, jumper"
  373. :total="total"
  374. >
  375. </el-pagination>
  376. </el-col>
  377. </el-tab-pane>
  378. <el-tab-pane label="审核中信息" name="second">
  379. <el-col :span="24" v-for="(item, index) in gonggeiData" :key="index">
  380. <el-col class="xqborder">
  381. <el-col :span="24" class="fbListTop">
  382. <el-col :span="20"> {{ item.name }} </el-col>
  383. <el-col :span="4">
  384. {{ item.meta && item.meta.createdAt ? new Date(item.meta.createdAt).toLocaleDateString() : '' || '' }}
  385. </el-col>
  386. </el-col>
  387. <el-col :span="24" class="fbListCenter">
  388. <el-col :span="6" class="fimage">
  389. <el-image style="width:100px;height:100px" :src="item.image.url"></el-image>
  390. </el-col>
  391. <el-col :span="6" class="fbListCenterC">
  392. <el-col :span="24" class="listName">
  393. <p class="textOver">产品:{{ item.name }}</p>
  394. <p>类别:{{ item.totaltype === '0' ? '技术' : item.totaltype === '1' ? '产品' : item.totaltype === '2' ? '服务' : 'underdind' }}</p>
  395. <p class="listMoney">{{ item.price }}/{{ item.priceunit }}</p>
  396. </el-col>
  397. </el-col>
  398. <el-col :span="6" class="fbListCenterTwo">
  399. <el-col :span="24">最新申请:</el-col>
  400. </el-col>
  401. <el-col :span="6" class="fbListCenterR">
  402. <el-col :span="24" class="bainji">
  403. <el-link :underline="false" @click="$router.push({ path: '/enterprise/enterprisexuqiu', query: { id: item.id } })">编辑</el-link
  404. ><br />
  405. <el-link :underline="false" @click="handleDelete(item)">彻底删除</el-link>
  406. </el-col>
  407. </el-col>
  408. </el-col>
  409. </el-col>
  410. </el-col>
  411. <el-col class="page" :span="24">
  412. <el-pagination
  413. @size-change="handleSizeChange"
  414. @current-change="handleCurrentChange"
  415. :current-page="currentPage"
  416. layout="total, prev, pager, next, jumper"
  417. :total="total"
  418. >
  419. </el-pagination>
  420. </el-col>
  421. </el-tab-pane>
  422. <el-tab-pane label="交易成功信息" name="thirth">
  423. <el-col :span="24" v-for="(item, index) in gonggeiData" :key="index">
  424. <el-col class="xqborder">
  425. <el-col :span="24" class="fbListTop">
  426. <el-col :span="20"> {{ item.name }} </el-col>
  427. <el-col :span="4">
  428. {{ item.meta && item.meta.createdAt ? new Date(item.meta.createdAt).toLocaleDateString() : '' || '' }}
  429. </el-col>
  430. </el-col>
  431. <el-col :span="24" class="fbListCenter">
  432. <el-col :span="6" class="fimage">
  433. <el-image style="width:100px;height:100px" :src="item.image.url"></el-image>
  434. </el-col>
  435. <el-col :span="6" class="fbListCenterC">
  436. <p class="textOver">产品:{{ item.name }}</p>
  437. <p>类别:{{ item.totaltype === '0' ? '技术' : item.totaltype === '1' ? '产品' : item.totaltype === '2' ? '服务' : 'underdind' }}</p>
  438. <p class="listMoney">{{ item.price }}/{{ item.priceunit }}</p>
  439. </el-col>
  440. <el-col :span="6" class="fbListCenterTwo">
  441. <el-col :span="24">最新申请:</el-col>
  442. </el-col>
  443. <el-col :span="6" class="fbListCenterR">
  444. <el-col :span="24" class="bainji">
  445. <el-link :underline="false" @click="handleDelete(item)">彻底删除</el-link>
  446. </el-col>
  447. </el-col>
  448. </el-col>
  449. </el-col>
  450. </el-col>
  451. <el-col class="page" :span="24">
  452. <el-pagination
  453. @size-change="handleSizeChange"
  454. @current-change="handleCurrentChange"
  455. :current-page="currentPage"
  456. layout="total, prev, pager, next, jumper"
  457. :total="total"
  458. >
  459. </el-pagination>
  460. </el-col>
  461. </el-tab-pane>
  462. </el-tabs>
  463. </el-row>
  464. </el-tab-pane> -->
  465. </el-tabs>
  466. <el-link :underline="false" class="fabuBtn" @click="messFabu()">信息发布</el-link>
  467. </el-col>
  468. </el-row>
  469. </div>
  470. </template>
  471. <script>
  472. export default {
  473. name: 'recruitLists',
  474. props: {
  475. recruitData: null,
  476. columnName: null,
  477. total: null,
  478. successlist: null,
  479. shenheList: null,
  480. tatalstatus2: null,
  481. tatalstatus1: null,
  482. Transactionlist: null,
  483. jiaoyilist1: null,
  484. jiaoyilist: null,
  485. total4: null,
  486. total5: null,
  487. total6: null,
  488. faqilist: null,
  489. totalfaqi: null,
  490. // gonggeiData: null,
  491. },
  492. components: {},
  493. data: () => ({
  494. currentPage: 0,
  495. activeName: 'first',
  496. activeNameFirst: 'first',
  497. pageSize: 3,
  498. }),
  499. created() {},
  500. computed: {},
  501. methods: {
  502. deteles(item) {
  503. this.$emit('deteles', { item });
  504. },
  505. success(item) {
  506. this.$emit('success', { item });
  507. },
  508. shibai(item) {
  509. this.$emit('shibai', { item });
  510. },
  511. jiaoyisuccess(item) {
  512. this.$emit('jiaoyisuccess', { item });
  513. },
  514. handleDelete(item) {
  515. this.$emit('handleDelete', { item });
  516. },
  517. messFabu() {
  518. this.$router.push({ path: '/enterprise/enterprisexuqiu' });
  519. },
  520. handleClick(tab, event) {
  521. console.log(tab, event);
  522. },
  523. handleClickFirst(tab, event) {
  524. console.log(tab, event);
  525. },
  526. // handleSizeChange(val) {
  527. // console.log(`每页 ${val} 条`);
  528. // },
  529. // handleCurrentChange(val) {
  530. // console.log(`当前页: ${val}`);
  531. // },
  532. handleSizeChange(pageSize) {
  533. // this.$emit('handleSizeChange', pageSize);
  534. },
  535. handleCurrentChange(currentPage) {
  536. console.log(currentPage);
  537. this.$emit('handleCurrentChange', { skip: (currentPage - 1) * this.pageSize, limit: this.pageSize, currentPage });
  538. },
  539. handleCurrentChange1(currentPage) {
  540. console.log(currentPage);
  541. this.$emit('handleCurrentChange1', { skip: (currentPage - 1) * this.pageSize, limit: this.pageSize, currentPage });
  542. },
  543. handleCurrentChange2(currentPage) {
  544. console.log(currentPage);
  545. this.$emit('handleCurrentChange2', { skip: (currentPage - 1) * this.pageSize, limit: this.pageSize, currentPage });
  546. },
  547. handleCurrentChange4(currentPage) {
  548. console.log(currentPage);
  549. this.$emit('handleCurrentChange4', { skip: (currentPage - 1) * this.pageSize, limit: this.pageSize, currentPage });
  550. },
  551. handleCurrentChange5(currentPage) {
  552. console.log(currentPage);
  553. this.$emit('handleCurrentChange5', { skip: (currentPage - 1) * this.pageSize, limit: this.pageSize, currentPage });
  554. },
  555. handleCurrentChange6(currentPage) {
  556. console.log(currentPage);
  557. this.$emit('handleCurrentChange6', { skip: (currentPage - 1) * this.pageSize, limit: this.pageSize, currentPage });
  558. },
  559. handleCurrentChangefaqi(currentPage) {
  560. console.log(currentPage);
  561. this.$emit('handleCurrentChangefaqi', { skip: (currentPage - 1) * this.pageSize, limit: this.pageSize, currentPage });
  562. },
  563. },
  564. };
  565. </script>
  566. <style lang="less" scoped>
  567. p {
  568. padding: 0;
  569. margin: 0;
  570. }
  571. .info {
  572. height: 650px;
  573. }
  574. .xqborder {
  575. // width: 889px;
  576. width: 100%;
  577. height: 183px;
  578. border: 1px solid #ccc;
  579. margin-top: 20px;
  580. }
  581. .fbListTop {
  582. width: 99.8%;
  583. height: 43px;
  584. margin-left: 1px;
  585. background: #fafafa;
  586. line-height: 43px;
  587. text-indent: 10px;
  588. font-size: 13px;
  589. color: #888888;
  590. }
  591. .fbListCenterTwo {
  592. width: 48%;
  593. float: left;
  594. margin-left: 10px;
  595. margin-right: 10px;
  596. background: #fafafa;
  597. height: 100px;
  598. }
  599. .fbListCenter {
  600. width: 100%;
  601. height: 119px;
  602. margin: 20px 0 0 12px;
  603. }
  604. .fimage {
  605. width: 12%;
  606. height: 119px;
  607. float: left;
  608. }
  609. .fbListCenterC {
  610. width: 22%;
  611. border-right: 1px solid #ccc;
  612. height: 100px;
  613. }
  614. .fbListCenterC p {
  615. padding: 5px 0;
  616. }
  617. .fbListCenterR {
  618. border-left: 1px solid #ccc;
  619. width: 125px;
  620. height: 100px;
  621. float: left;
  622. }
  623. .listName {
  624. width: 196px;
  625. height: 30px;
  626. font-size: 16px;
  627. color: #555555;
  628. }
  629. .listMoney {
  630. height: 30px;
  631. font-size: 16px;
  632. color: #fe0000;
  633. width: 196px;
  634. }
  635. .bainji {
  636. padding: 0 0 0 20px;
  637. }
  638. .page {
  639. padding: 11px 0 0 0;
  640. text-align: center;
  641. }
  642. /deep/.el-pagination {
  643. padding: 41px 0 0 0;
  644. white-space: nowrap;
  645. padding: 2px 5px;
  646. color: #303133;
  647. font-weight: 700;
  648. }
  649. .fabuBtn {
  650. position: absolute;
  651. top: 65px;
  652. right: 30px;
  653. }
  654. </style>