This commit is contained in:
学习很差啦
2022-09-05 14:22:00 +08:00
151 changed files with 1907 additions and 163 deletions

View File

@@ -556,7 +556,7 @@
</template>
<script>
import region from "@/views/lili-components/region";
import region from "@/components/region";
import ossManage from "@/views/sys/oss-manage/ossManage";
import * as RegExp from '@/libs/RegExp.js';
import {getCategoryTree} from "@/api/goods";

View File

@@ -361,12 +361,12 @@
@click="prev"
>上一步</Button
>
<Button type="primary" v-show="tabNameList.indexOf(tabName) < 4" @click="next"
<Button type="primary" v-show="tabNameList.indexOf(tabName) < tabNameList.length - 1" @click="next"
>下一步</Button
>
<Button
type="primary"
v-show="tabNameList.indexOf(tabName) === 4"
v-show="tabNameList.indexOf(tabName) === tabNameList.length - 1"
@click="save"
v-if="!isRead"
>
@@ -413,9 +413,9 @@ import memberLayout from "@/views/member/list/index";
import ossManage from "@/views/sys/oss-manage/ossManage";
import { getCategoryTree } from "@/api/goods";
import { shopDetail, shopAdd, shopEdit, getShopByMemberId, shopAudit } from "@/api/shops";
import uploadPicInput from "@/views/my-components/lili/upload-pic-input";
import region from "@/views/lili-components/region";
import liliMap from "@/views/my-components/map/index";
import uploadPicInput from "@/components/lili/upload-pic-input";
import region from "@/components/region";
import liliMap from "@/components/map/index";
export default {
name: "shop-operation",