add.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <template>
  2. <div class="activeAdd pagePadding">
  3. <div
  4. v-if="powers && powers.length > 0 && powers.some((item) => item == '007')"
  5. >
  6. <el-tabs v-model="activeName" type="card" @tab-click="handleClick">
  7. <el-tab-pane label="基础/规格" name="1"> <base-form /></el-tab-pane>
  8. <el-tab-pane label="包装/发货/图片" name="2">
  9. <pack-form
  10. /></el-tab-pane>
  11. <el-tab-pane label="固定/阶梯成本" name="3"> <cost-form /></el-tab-pane>
  12. </el-tabs>
  13. </div>
  14. <div v-else>
  15. <no-auth></no-auth>
  16. </div>
  17. </div>
  18. </template>
  19. <script>
  20. import asyncRequest from "@/apis/service/goodStore/active";
  21. import resToken from "@/mixins/resToken";
  22. import { mapGetters } from "vuex";
  23. // import baseForm from "./components/baseForm";
  24. // import costForm from "./components/costForm";
  25. // import packForm from "./components/packForm";
  26. export default {
  27. name: "activeAdd",
  28. mixins: [resToken],
  29. components: {
  30. baseForm,
  31. costForm,
  32. packForm,
  33. },
  34. computed: {
  35. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  36. powers() {
  37. let tran =
  38. this.$store.getters.btnList.find(
  39. (item) => item.menu_route == "activeAdd"
  40. ) || {};
  41. if (tran && tran.action && tran.action.length > 0) {
  42. return tran.action;
  43. } else {
  44. return [];
  45. }
  46. },
  47. },
  48. data() {
  49. return {
  50. size: "small",
  51. activeName: "3",
  52. loading: false,
  53. };
  54. },
  55. mounted() {
  56. this.initForm();
  57. },
  58. methods: {
  59. async initForm() {
  60. this.loading = true;
  61. this.loading = false;
  62. },
  63. handleClick(row) {
  64. console.log(row);
  65. },
  66. async initData() {
  67. this.loading = true;
  68. let res = await asyncRequest.detail({ id: this.id });
  69. this.loading = false;
  70. if (res.code === 0) {
  71. await this.resetForm(res.data);
  72. }
  73. },
  74. },
  75. };
  76. </script>
  77. <style lang="scss" scoped>
  78. .activeAdd {
  79. .activeAdd-title {
  80. border-top: 1px solid #ebeef5;
  81. span {
  82. height: 50px;
  83. line-height: 50px;
  84. font-family: "微软雅黑", sans-serif;
  85. font-weight: 400;
  86. font-style: normal;
  87. font-size: 16fpx;
  88. text-align: left;
  89. }
  90. }
  91. /deep/ .ddiv {
  92. border-top: 1px solid #dcdfe6;
  93. }
  94. /deep/ .dtitle {
  95. width: 40px;
  96. text-align: center;
  97. height: 100%;
  98. min-height: 100%;
  99. ul{
  100. padding:20px 0 0 0;
  101. }
  102. }
  103. /deep/ .dmain {
  104. padding: 20px 0 0 0;
  105. width: calc(100% - 40px);
  106. border-left: 1px solid #dcdfe6;
  107. }
  108. }
  109. </style>