123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- <template>
- <div class="activeAdd pagePadding">
- <div
- v-if="powers && powers.length > 0 && powers.some((item) => item == '007')"
- >
- <el-tabs v-model="activeName" type="card" @tab-click="handleClick">
- <el-tab-pane label="基础/规格" name="1"> <base-form /></el-tab-pane>
- <el-tab-pane label="包装/发货/图片" name="2">
- <pack-form
- /></el-tab-pane>
- <el-tab-pane label="固定/阶梯成本" name="3"> <cost-form /></el-tab-pane>
- </el-tabs>
- </div>
- <div v-else>
- <no-auth></no-auth>
- </div>
- </div>
- </template>
- <script>
- import asyncRequest from "@/apis/service/goodStore/active";
- import resToken from "@/mixins/resToken";
- import { mapGetters } from "vuex";
- // import baseForm from "./components/baseForm";
- // import costForm from "./components/costForm";
- // import packForm from "./components/packForm";
- export default {
- name: "activeAdd",
- mixins: [resToken],
- components: {
- baseForm,
- costForm,
- packForm,
- },
- computed: {
- ...mapGetters(["tablebtnSize", "searchSize", "size"]),
- powers() {
- let tran =
- this.$store.getters.btnList.find(
- (item) => item.menu_route == "activeAdd"
- ) || {};
- if (tran && tran.action && tran.action.length > 0) {
- return tran.action;
- } else {
- return [];
- }
- },
- },
- data() {
- return {
- size: "small",
- activeName: "3",
- loading: false,
-
-
-
-
- };
- },
- mounted() {
- this.initForm();
- },
- methods: {
- async initForm() {
- this.loading = true;
-
- this.loading = false;
- },
- handleClick(row) {
- console.log(row);
- },
- async initData() {
- this.loading = true;
- let res = await asyncRequest.detail({ id: this.id });
- this.loading = false;
- if (res.code === 0) {
- await this.resetForm(res.data);
- }
- },
-
-
-
- },
- };
- </script>
- <style lang="scss" scoped>
- .activeAdd {
- .activeAdd-title {
- border-top: 1px solid #ebeef5;
- span {
- height: 50px;
- line-height: 50px;
- font-family: "微软雅黑", sans-serif;
- font-weight: 400;
- font-style: normal;
- font-size: 16fpx;
- text-align: left;
- }
- }
- /deep/ .ddiv {
- border-top: 1px solid #dcdfe6;
-
- }
- /deep/ .dtitle {
- width: 40px;
- text-align: center;
- height: 100%;
- min-height: 100%;
- ul{
- padding:20px 0 0 0;
- }
- }
- /deep/ .dmain {
- padding: 20px 0 0 0;
- width: calc(100% - 40px);
- border-left: 1px solid #dcdfe6;
- }
- }
- </style>
-
|