index.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <template>
  2. <div class="my-table clear">
  3. <div class="my-table-li">
  4. <div class="my-table-li-top">数量(X):</div>
  5. <div class="my-table-li-bottom">单价(元):</div>
  6. <div class="my-table-li-bottom">税率:{{ tax }}%</div>
  7. </div>
  8. <div class="my-table-li" v-for="(si, i) in price_list" :key="si.min + i">
  9. <div class="my-table-li-top">
  10. {{ si.min + "≤X" + (si.max === 0 ? "" : "<" + si.max) }}
  11. </div>
  12. <div class="my-table-li-bottom">{{ si.price }}</div>
  13. </div>
  14. </div>
  15. </template>
  16. <script>
  17. export default {
  18. name: "showGoodPrice",
  19. props: ["price_list", "tax"],
  20. data() {
  21. return {};
  22. },
  23. watch: {
  24. // newTime: function (val) {
  25. // if (val) {
  26. // this.initForm();
  27. // }
  28. // },
  29. },
  30. };
  31. </script>
  32. <style scoped>
  33. .my-table {
  34. background: rgb(236, 245, 255);
  35. float: left;
  36. .my-table-li {
  37. float: left;
  38. min-width: 100px;
  39. &:first-child {
  40. width: 100px;
  41. }
  42. .my-table-li-top,
  43. .my-table-li-bottom {
  44. width: 100%;
  45. float: left;
  46. height: 32px;
  47. padding: 0 5px;
  48. line-height: 32px;
  49. text-align: center;
  50. font-size: 13px;
  51. }
  52. .my-table-li-top {
  53. background: rgb(217, 236, 255);
  54. }
  55. .my-table-li-bottom {
  56. background: rgb(236, 245, 255);
  57. }
  58. }
  59. }
  60. </style>