修复编辑店铺时,步骤按钮不正确问题

master
paulGao 2022-09-02 16:44:55 +08:00
parent 96b6565272
commit 36c4584970
1 changed files with 5 additions and 5 deletions

View File

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