details.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <!--
  2. * @Author: howie
  3. * @Date: 2022-06-21 09:56:25
  4. * @LastEditors: howie
  5. * @LastEditTime: 2022-06-21 11:00:51
  6. * @FilePath: \supply-front\src\views\supply\policy\components\details.vue
  7. * @Description:详情页面
  8. *
  9. * Copyright (c) 2022, All Rights Reserved.
  10. -->
  11. <template>
  12. <div>
  13. <my-detail/>
  14. </div>
  15. </template>
  16. <script>
  17. import myDetail from "./common/common";
  18. export default {
  19. data() {
  20. return {
  21. dataList: [],
  22. columns: [
  23. {
  24. prop: "saleCode",
  25. lable: "销售类型",
  26. widht: 160,
  27. },
  28. {
  29. prop: "saleCode",
  30. lable: "存货编码",
  31. widht: 160,
  32. },
  33. {
  34. prop: "saleCode",
  35. lable: "产品名称",
  36. widht: 160,
  37. },
  38. {
  39. prop: "saleCode",
  40. lable: "规格型号",
  41. widht: 160,
  42. },
  43. {
  44. prop: "saleCode",
  45. lable: "单位",
  46. widht: 160,
  47. },
  48. {
  49. prop: "saleCode",
  50. lable: "单价",
  51. widht: 160,
  52. },
  53. {
  54. prop: "saleCode",
  55. lable: "数量",
  56. widht: 160,
  57. },
  58. {
  59. prop: "saleCode",
  60. lable: "订单金额",
  61. widht: 160,
  62. },
  63. {
  64. prop: "saleCode",
  65. lable: "退利类型",
  66. widht: 160,
  67. },
  68. {
  69. prop: "saleCode",
  70. lable: "返利金额",
  71. widht: 160,
  72. },
  73. {
  74. prop: "saleCode",
  75. lable: "隔离折扣",
  76. widht: 160,
  77. },
  78. {
  79. prop: "saleCode",
  80. lable: "现在钱包",
  81. widht: 160,
  82. },
  83. {
  84. prop: "saleCode",
  85. lable: "实付金额",
  86. widht: 160,
  87. },
  88. {
  89. prop: "saleCode",
  90. lable: "直调",
  91. widht: 160,
  92. },
  93. {
  94. prop: "saleCode",
  95. lable: "直调数量",
  96. widht: 160,
  97. },
  98. {
  99. prop: "saleCode",
  100. lable: "原订单数量",
  101. widht: 160,
  102. },
  103. {
  104. prop: "saleCode",
  105. lable: "备注",
  106. widht: 160,
  107. },
  108. {
  109. prop: "saleCode",
  110. lable: "税率",
  111. widht: 160,
  112. },
  113. ],
  114. };
  115. },
  116. components: {
  117. myDetail,
  118. },
  119. };
  120. </script>
  121. <style lang="scss" scoped></style>