GoodList.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679
  1. <template>
  2. <div>
  3. <div>
  4. <div class="tab-filter" >
  5. <div class="fl">&nbsp;&nbsp;| 产品信息(<span class="text-num"></span><span class="text-num" v-text="good_list.total"></span>)</div>
  6. <div class="fr">
  7. <div @click="sortBy('normal1')" :class="activeTag==='normal1'?'active':''"><a >综合排序</a></div>
  8. <div @click="sortBy('normal2')" :class="activeTag==='normal2'?'active':''"><a >现货优选</a></div>
  9. <div @click="sortBy('type')" :class="activeTag==='type'?'active':''"><a >型号精确</a></div>
  10. <div style="display:none"><a href="">销量</a></div>
  11. <div style="display:none"><a href="">人气</a></div>
  12. <div style="display:none"><a href="">信用</a></div>
  13. <div @click="sortBy('price')" :class="activeTag==='price'?'active':''"><a>价格<i class="fa fa-long-arrow-down" v-show="price_asc"></i><i class="fa fa-long-arrow-up" v-show="!price_asc"></i></a></div>
  14. <div class="price-filter">
  15. <div class="price-input">
  16. <input type="number" min="0" step="0.01" v-model="min_price" class="form-control" placeholder="¥" onfocus="this.placeholder=''" onblur="this.placeholder='¥'" />
  17. <span>-</span>
  18. <input type="number" :min="min_price === ''?0:min_price" step="0.01" v-model="max_price" class="form-control" placeholder="¥" onfocus="this.placeholder=''" onblur="this.placeholder='¥'" />
  19. </div>
  20. <div class="price-hover">
  21. <a @click="clear_price">清空</a>
  22. <a @click="filter_price">确定</a>
  23. </div>
  24. </div>
  25. <div style="display:none;padding-top: 5px; margin-left: 0;">
  26. <select class="select-adder form-control" style="width: 120px;">
  27. <option value="1">发货地</option>
  28. </select>
  29. </div>
  30. <div class="off">
  31. <a @click="list_open=!list_open">
  32. <span v-text="list_open?'收起':'展开'"></span>
  33. <i class="fa fa-angle-down" v-show="!list_open"></i>
  34. <i class="fa fa-angle-up"v-show="list_open"></i>
  35. </a>
  36. </div>
  37. </div>
  38. </div>
  39. <div v-if="list_open">
  40. <table class="product-list" >
  41. <thead>
  42. <tr style="height: 40px;">
  43. <th width="80"></th>
  44. <th width="160">品牌/型号/类目</th>
  45. <th width="100">封装/生产日期</th>
  46. <th width="110">店铺名称</th>
  47. <th width="110">库存</th>
  48. <th width="90">阶梯</th>
  49. <th width="90" v-if="!crname_click_flag.rmb_click_flag">香港交货</th>
  50. <th width="110" v-if="!crname_click_flag.usd_click_flag">大陆交货<span style="font-size: 12px;">(含税)</span></th>
  51. <th width="110">交期<span style="font-size: 12px;">(天)</span></th>
  52. <th width="100">操作</th>
  53. </tr>
  54. </thead>
  55. <tbody id="productList-content">
  56. <tr v-for="item in good_list.components">
  57. <td>
  58. <nuxt-link class="component-img-box" :to="item.batchCode?`/store/${item.storeId}/${item.batchCode}`:`/product/component/${item.uuid}`">
  59. <!-- <img :src="item.img?item.img:item.brand&&item.brand.logoUrl?item.brand.logoUrl:'/images/component/default.png'">-->
  60. <img :src="item.batchCode?item.img?item.img:'/images/component/default.png':item.brand&&item.brand.logoUrl?item.brand.logoUrl:'/images/component/default.png'">
  61. </nuxt-link>
  62. </td>
  63. <td class="brand-code">
  64. <div class="brand" v-if="item.brand.nameEn"><nuxt-link :to="`/product/brand/${item.brand.uuid}`" class="text-num" v-text="item.brand.nameEn"></nuxt-link></div>
  65. <div class="brand" v-if="!item.brand.nameEn">—</div>
  66. <div class="code" v-if="item.code"><nuxt-link :to="`/product/component/${item.uuid}`" class="f16 text-bold text-num" v-text="item.code"></nuxt-link></div>
  67. <div class="brand" v-if="!item.code">—</div>
  68. <div class="brand" v-if="item.kind.nameCn"><nuxt-link :to="`/product/kind/${item.kindid}`" v-text="item.kind.nameCn"></nuxt-link></div>
  69. <div class="brand" v-if="!item.kind.nameCn">—</div>
  70. </td>
  71. <td>
  72. <div class="package" v-text="item.packaging"></div>
  73. <div class="date" v-text="item.produceDate"></div>
  74. <div v-if="!item.packaging && !item.produceDate">—</div>
  75. </td>
  76. <td>
  77. <div v-if="item.storeName">
  78. <nuxt-link :to="'/store/' + item.storeId" v-text="item.storeName">
  79. </nuxt-link>
  80. </div>
  81. <div v-if="!item.storeName">—</div>
  82. </td>
  83. <td class="text-left">
  84. <div class="goods" v-if="item.reserve">
  85. 库存:<span v-text="item.reserve"></span>
  86. </div>
  87. <div v-if="!item.reserve" style="text-align: center;margin-left: 0;"><span>—</span></div>
  88. <div class="from" v-if="item.reserve && item.reserve > 0">
  89. 起拍:<span v-text="item.minBuyQty" v-if="item.minBuyQty"></span>
  90. </div>
  91. <!-- <div class="multiple" v-if="item.reserve > 0">
  92. 倍数:<span v-text="item.minPackQty"></span>
  93. </div>-->
  94. <div v-if="item.reserve" v-text="item.breakUp?'可拆卖':'不可拆卖'"></div>
  95. </td>
  96. <td>
  97. <div v-show="!item.prices">
  98. <span>—</span>
  99. </div>
  100. <div v-for="price in item.prices">
  101. <span v-text="price.start"></span> +
  102. </div>
  103. </td>
  104. <td v-if="!crname_click_flag.rmb_click_flag">
  105. <div v-show="!(item.currencyName == 'USD') || !item.prices">
  106. <span>—</span>
  107. </div>
  108. <div v-for="price in item.prices">
  109. <span>{{price.uSDPrice | currency}}</span>
  110. </div>
  111. </td>
  112. <td v-if="!crname_click_flag.usd_click_flag">
  113. <div v-show="!(item.currencyName == 'RMB') || !item.prices">
  114. <span>—</span>
  115. </div>
  116. <div v-for="price in item.prices">
  117. <span>{{price.rMBPrice | currency}}</span>
  118. </div>
  119. </td>
  120. <td>
  121. <div v-show="!item.b2cMinDelivery">
  122. <span>—</span>
  123. </div>
  124. <div v-if="item.b2cMinDelivery">交期:
  125. <!--<span v-text="item.b2cMinDelivery + '-' + item.b2cMaxDelivery"></span>-->
  126. <span v-if="item.b2cMinDelivery != item.b2cMaxDelivery" v-text="item.b2cMinDelivery + '-' + item.b2cMaxDelivery"></span>
  127. <span v-if="item.b2cMinDelivery == item.b2cMaxDelivery" v-text="item.b2cMinDelivery"></span>
  128. </div>
  129. </td>
  130. <td>
  131. <div v-show="!item.reserve">
  132. <span>—</span>
  133. </div>
  134. <div v-if="item.reserve > 0">
  135. <buy :item="item" :isStoreStyle="false"></buy>
  136. </div>
  137. </td>
  138. </tr>
  139. <tr v-if="good_list.components.length == 'undefined' ||good_list.components.length == 0">
  140. <td colspan="10" class="text-center" style="line-height: 40px; font-size: 20px;">
  141. <i class="fa fa-smile-o fa-lg"></i> 暂无产品信息
  142. </td>
  143. </tr>
  144. </tbody>
  145. </table>
  146. </div>
  147. <page :total="total_count" :page-size="pageSize"
  148. :current="nowPage" @childEvent="listenPage"></page>
  149. </div>
  150. </div>
  151. </template>
  152. <script>
  153. import Page from '~components/common/page/pageComponent.vue'
  154. import Buy from '~components/common/buyOrCar/buyComponent.vue'
  155. export default {
  156. data () {
  157. return {
  158. list_open: true,
  159. nowPage: 1,
  160. pageSize: 15,
  161. sorting: {},
  162. price_asc: true,
  163. min_price: '',
  164. max_price: '',
  165. filter: {},
  166. activeTag: 'normal1'
  167. }
  168. },
  169. components: {
  170. Page,
  171. Buy
  172. },
  173. props: ['crname_click_flag'],
  174. filters: {
  175. currency: function (input) {
  176. if (typeof input === 'number') {
  177. if (input <= 0.000001) {
  178. input = 0.000001
  179. } else {
  180. if (input.toString().indexOf('.') === -1) {
  181. input = input + '.00'
  182. } else {
  183. let inputStr = input.toString()
  184. let arr = inputStr.split('.')
  185. let floatNum = arr[1]
  186. if (floatNum.length > 6) {
  187. input = inputStr.substring(0, arr[0].length + 7)
  188. if (Number(floatNum.charAt(6)) > 4) {
  189. input = (Number(input) * 1000000 + 1) / 1000000
  190. }
  191. } else if (floatNum.length === 1) {
  192. input = input + '0'
  193. }
  194. }
  195. }
  196. }
  197. return input
  198. }
  199. },
  200. computed: {
  201. good_lists () {
  202. return this.$store.state.searchData.searchList.lists
  203. },
  204. good_list () {
  205. return this.good_lists.data
  206. },
  207. total_count () {
  208. return Math.min(this.good_list.total, 100 * this.pageSize)
  209. },
  210. buy_info () {
  211. return this.$store.state.user.buy.buyInfo.data
  212. },
  213. car_info () {
  214. return this.$store.state.user.car.addCarInfo.data
  215. }
  216. },
  217. methods: {
  218. listenPage: function (changedPage) {
  219. this.nowPage = changedPage
  220. this.$emit('pageEvent', this.nowPage)
  221. },
  222. sortBy: function (param) {
  223. if (param === 'normal1') {
  224. this.sorting = {'GO_RESERVE': 'DESC', 'GO_SEARCH': 'DESC'}
  225. this.activeTag = 'normal1'
  226. } else if (param === 'normal2') {
  227. this.sorting = {'GO_RESERVE': 'DESC', 'GO_SEARCH': 'DESC'}
  228. this.activeTag = 'normal2'
  229. } else if (param === 'type') {
  230. this.sorting = {'GO_SEARCH': 'DESC', 'GO_RESERVE': 'DESC'}
  231. this.activeTag = 'type'
  232. } else if (param === 'price') {
  233. if (this.price_asc) {
  234. this.sorting = {'GO_MINPRICERMB': 'ASC', 'GO_RESERVE': 'DESC', 'GO_SEARCH': 'DESC'}
  235. } else {
  236. this.sorting = {'GO_MINPRICERMB': 'DESC', 'GO_RESERVE': 'DESC', 'GO_SEARCH': 'DESC'}
  237. }
  238. this.activeTag = 'price'
  239. this.price_asc = !this.price_asc
  240. }
  241. this.$emit('sortEvent', this.sorting)
  242. },
  243. filter_price: function () {
  244. if (this.min_price === '' && this.max_price !== '') {
  245. this.filter.goods_maxpricermb = this.max_price
  246. } else if (this.min_price !== '' && this.max_price === '') {
  247. this.filter.goods_minpricermb = this.min_price
  248. } else if (this.min_price !== '' && this.max_price !== '') {
  249. if (this.min_price <= this.max_price) {
  250. this.filter.goods_minpricermb = this.min_price
  251. this.filter.goods_maxpricermb = this.max_price
  252. }
  253. } else {
  254. delete this.filter.goods_minpricermb
  255. delete this.filter.goods_maxpricermb
  256. }
  257. this.$emit('filterPriceEvent', this.filter)
  258. },
  259. clear_price: function () {
  260. this.min_price = ''
  261. this.max_price = ''
  262. this.$emit('filterPriceEvent', this.filter)
  263. }
  264. }
  265. }
  266. </script>
  267. <style scoped>
  268. /* .tab-filter {
  269. width: 1190px;
  270. height: 40px;
  271. margin: 0 auto;
  272. line-height: 40px;
  273. margin-top: 20px;
  274. margin-bottom: 10px;
  275. background: #f1efef;
  276. }
  277. .tab-filter .fl {
  278. font-size: 14px;
  279. }
  280. .tab-filter .fl, .tab-filter .fr {
  281. float: left;
  282. }
  283. .tab-filter .fl span {
  284. font-size: 14px;
  285. }
  286. .text-num {
  287. font-style: normal;
  288. font-family: verdana;
  289. }
  290. .tab-filter .fr {
  291. max-width: 1050px;
  292. }
  293. .tab-filter .fr div {
  294. float: left;
  295. margin: 0 5px;
  296. }
  297. .tab-filter .fr a {
  298. display: inline-block;
  299. padding: 1px 10px;
  300. border: #ccc 1px solid;
  301. line-height: 26px;
  302. font-size: 14px;
  303. text-align: center;
  304. color: #333;
  305. max-height: 30px;
  306. background: #fff;
  307. }
  308. .tab-filter .fr .price-filter {
  309. padding-top: 5px;
  310. width: 176px;
  311. margin: 0;
  312. }
  313. .price-filter {
  314. position: relative;
  315. }*/
  316. .price-filter .price-input {
  317. position: relative;
  318. z-index: 10;
  319. margin: 0 10px !important;
  320. width: 180px;
  321. }
  322. .tab-filter .fr .price-filter input, .tab-filter .fr .price-filter span {
  323. float: left;
  324. }
  325. .tab-filter .fr .form-control {
  326. width: 70px;
  327. height: 30px;
  328. border-radius: 0;
  329. padding-left: 5px;
  330. }
  331. .tab-filter .fr .price-filter span {
  332. margin: 0 5px;
  333. line-height: 30px;
  334. }
  335. .price-filter .price-hover {
  336. display: none;
  337. width: 165px;
  338. height: 25px;
  339. padding: 60px 6px 6px;
  340. margin: 0 10px;
  341. border: 1px solid #999;
  342. position: absolute;
  343. background: #fff;
  344. top: 0;
  345. -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.2);
  346. -moz-box-shadow: 1px 1px 2px rgba(0,0,0,.2);
  347. box-shadow: 1px 1px 2px rgba(0,0,0,.2);
  348. }
  349. .price-filter .price-hover a:first-child {
  350. position: absolute;
  351. top: 37px;
  352. left: 6px;
  353. width: 36px;
  354. height: 25px;
  355. line-height: 25px;
  356. text-align: center;
  357. color: #5078cb;
  358. display: inline-block;
  359. border: none;
  360. padding: 0;
  361. }
  362. .price-filter .price-hover a:last-child {
  363. position: absolute;
  364. top: 37px;
  365. right: 7px;
  366. width: 38px;
  367. height: 25px;
  368. line-height: 24px;
  369. border: 1px solid #ccc;
  370. text-align: center;
  371. background: #f7f7f7;
  372. color: #333;
  373. display: inline-block;
  374. padding: 0;
  375. }
  376. /* .tab-filter .fr .off {
  377. margin-left: 130px;
  378. float: right;
  379. }
  380. .tab-filter .fr .off a {
  381. border: none;
  382. text-align: right;
  383. padding-left: 360px;
  384. background: none;
  385. }
  386. .tab-filter .fr .off a i {
  387. font-size: 16px;
  388. }*/
  389. .product-list{
  390. width: 1190px;
  391. /*margin-bottom: 20px;*/
  392. }
  393. .product-list thead tr{
  394. /*border-top: #6493ff 2px solid;*/
  395. color: #323232;
  396. background: none;
  397. }
  398. /* 物品列表 */
  399. .product-list .brand-code {
  400. font-size: 14px;
  401. text-align: center;
  402. }
  403. .product-list .brand-code .brand{
  404. font-size: 12px;
  405. }
  406. .product-list .brand-code .code {
  407. font-weight: 600;
  408. }
  409. .product-list th {
  410. color: rgb(50,50,50);
  411. font-size: 14px;
  412. font-weight: 600;
  413. background-color: #f7f7f7;
  414. text-align: center;
  415. }
  416. .product-list tbody>tr {
  417. border: 1px solid #e8e8e8;
  418. }
  419. .product-list tbody>tr .component-img-box {
  420. width: 80px;
  421. height: 80px;
  422. }
  423. .product-list tbody>tr img {
  424. border: 1px solid #e8e8e8;
  425. margin: 10px 0 5px 0;
  426. max-width: 80px;
  427. max-height: 80px;
  428. }
  429. .product-list tbody>tr .contact{
  430. font-size: 14px;
  431. color: #5078cb;
  432. width: 90%;
  433. margin: 0 auto;
  434. display: inline-block;
  435. }
  436. .product-list tbody>tr .contact:hover{
  437. color: #d32526;
  438. }
  439. .product-list td {
  440. font-size: 12px;
  441. color: #333;
  442. text-align: center;
  443. line-height: 20px;
  444. }
  445. /* 物品列表按钮 */
  446. /* .product-list .btn-buy-now {
  447. background-color: #5078CB;
  448. color: #fff;
  449. width: 80px;
  450. height: 30px;
  451. font-size: 12px;
  452. border: 1px solid #5078cb;
  453. padding-top: 8px;
  454. }
  455. .product-list .btn-add-cart {
  456. margin-top: 10px;
  457. color: #214797;
  458. width: 80px;
  459. height: 30px;
  460. font-size: 12px;
  461. background-color: #fff;
  462. border: 1px solid #e8e8e8;
  463. padding-top: 8px;
  464. }
  465. .product-list .btn-buy-now:hover{
  466. background: #214797;
  467. }
  468. .product-list .btn-add-cart:hover{
  469. background-color: #5078CB;
  470. color: #fff;
  471. }*/
  472. .product-list .text-left{
  473. text-align: left;
  474. }
  475. .product-list .text-left div{
  476. margin-left: 30px;
  477. }
  478. .product-list tbody tr td{
  479. padding: 10px 0;
  480. }
  481. .search-record{
  482. width: 100%;
  483. margin: 0 auto;
  484. height: 40px;
  485. font-size: 16px;
  486. line-height: 40px;
  487. margin-top: 20px;
  488. }
  489. .search-record span.red{
  490. color: #ff0909;
  491. }
  492. .tab-filter{
  493. width: 1190px;
  494. height: 40px;
  495. margin: 0 auto;
  496. line-height: 40px;
  497. margin-bottom: 10px;
  498. background: #f1efef;
  499. }
  500. .tab-filter .fl,.tab-filter .fr{
  501. float: left;
  502. }
  503. .tab-filter .fl{
  504. font-size: 14px;
  505. }
  506. .tab-filter .fr{
  507. max-width: 1050px;
  508. }
  509. .tab-filter .fl span{
  510. font-size: 14px;
  511. }
  512. .tab-filter .fr div{
  513. float: left;
  514. margin: 0 5px;
  515. }
  516. .tab-filter .fr div.active a{
  517. border: #5078cb 1px solid;
  518. color: #5078cb;
  519. }
  520. .tab-filter .fr a{
  521. display: inline-block;
  522. padding: 1px 10px;
  523. border: #ccc 1px solid;
  524. line-height: 26px;
  525. font-size: 14px;
  526. text-align: center;
  527. color: #333;
  528. max-height: 30px;
  529. background: #fff;
  530. }
  531. .tab-filter .fr a i{
  532. /*margin-left: 5px;*/
  533. }
  534. .tab-filter .fr a:hover{
  535. border: #5078cb 1px solid;
  536. color: #5078cb;
  537. }
  538. .tab-filter .fr .off{
  539. margin-left : 129px;
  540. float: right;
  541. }
  542. .tab-filter .fr .off a:hover{
  543. border: none;
  544. color: #5078cb;
  545. }
  546. .tab-filter .fr .off a{
  547. border: none;
  548. text-align: right;
  549. padding-left: 360px;
  550. background: none;
  551. }
  552. .tab-filter .fr .off a i{
  553. font-size: 16px;
  554. }
  555. .tab-filter .fr .form-control{
  556. width: 70px;
  557. height: 30px;
  558. border-radius: 0;
  559. padding-left: 5px;
  560. }
  561. .tab-filter .fr .price-filter input,.tab-filter .fr .price-filter span{
  562. float: left;
  563. }
  564. .tab-filter .fr select{
  565. -webkit-appearance: none;
  566. appearance: none;
  567. background: transparent;
  568. -o-appearance: none;
  569. -moz-appearance: none;
  570. -ms-appearance: none;
  571. width: 120px;
  572. }
  573. .tab-filter .fr .price-filter{
  574. padding-top: 5px;
  575. width: 176px;
  576. margin: 0;
  577. }
  578. .tab-filter .fr .price-filter span{
  579. margin: 0 5px;
  580. line-height: 30px;
  581. }
  582. .close{
  583. display: none;
  584. }
  585. .price-filter{
  586. position: relative;
  587. }
  588. .price-filter:hover .price-hover{
  589. display: block;
  590. }
  591. .price-filter .price-hover{
  592. background: transparent;
  593. }
  594. .price-filter .price-input{
  595. position: relative;
  596. z-index: 10;
  597. margin: 0 10px !important;
  598. }
  599. .price-filter .price-hover{
  600. display: none;
  601. width: 165px;
  602. height: 25px;
  603. padding: 60px 6px 6px;
  604. margin: 0 10px;
  605. border: 1px solid #999;
  606. position: absolute;
  607. background: #fff;
  608. top: 0;
  609. -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.2);
  610. -moz-box-shadow: 1px 1px 2px rgba(0,0,0,.2);
  611. box-shadow: 1px 1px 2px rgba(0,0,0,.2);
  612. }
  613. .price-filter .price-hover a:first-child{
  614. position: absolute;
  615. top: 37px;
  616. left: 6px;
  617. width: 36px;
  618. height: 25px;
  619. line-height: 25px;
  620. text-align: center;
  621. color: #5078cb;
  622. display: inline-block;
  623. border: none;
  624. padding: 0;
  625. }
  626. .price-filter .price-hover a:last-child{
  627. position: absolute;
  628. top: 37px;
  629. right: 7px;
  630. width: 38px;
  631. height: 25px;
  632. line-height: 24px;
  633. border: 1px solid #ccc;
  634. text-align: center;
  635. background: #f7f7f7;
  636. color: #333;
  637. display: inline-block;
  638. padding: 0;
  639. }
  640. .price-filter .price-hover a:last-child:hover{
  641. background: #5078cb;
  642. color: #fff;
  643. }
  644. div.ng-table-pager input.page-number {
  645. vertical-align: inherit;
  646. display: inline-block;
  647. width: 40px;
  648. height: 31px;
  649. padding: 6px 6px;
  650. font-size: 14px;
  651. line-height: 1.42857143;
  652. color: #9B9792;
  653. text-align: center;
  654. background-color: #F6F5F4;
  655. background-image: none;
  656. border: 1px solid #ccc;
  657. border-top-left-radius: 4px;
  658. border-bottom-left-radius: 4px;
  659. box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  660. transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  661. }
  662. div.ng-table-pager a.page-a{
  663. background: #5078cb !important;
  664. color: #fff;
  665. float: right;
  666. }
  667. tbody a:hover{
  668. color: #f39801;
  669. }
  670. </style>