GoodList.vue 20 KB

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