Invoice.vue 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <!--
  2. * @Author: howie
  3. * @Date: 2022-06-21 10:26:55
  4. * @LastEditors: howie
  5. * @LastEditTime: 2022-06-21 11:08:28
  6. * @FilePath: \supply-front\src\views\supply\policy\components\Invoice.vue
  7. * @Description: 发货单页面
  8. *
  9. * Copyright (c) 2022, All Rights Reserved.
  10. -->
  11. <template>
  12. <div>
  13. <my-table-info/>
  14. </div>
  15. </template>
  16. <script>
  17. import myTableInfo from "./common/table_info";
  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. };
  85. },
  86. components: {
  87. myTableInfo,
  88. },
  89. };
  90. </script>
  91. <style lang="scss" scoped></style>