运费模版
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
ac41f54a07
commit
b95c767c98
|
@ -1,5 +1,6 @@
|
|||
<template>
|
||||
<div>
|
||||
<div v-if="shopId">
|
||||
<obj-table-plus
|
||||
style="height: calc(100vh - 132px)"
|
||||
ref="oTable"
|
||||
|
@ -33,6 +34,10 @@
|
|||
@refresh="$refs.oTable.refresh()"
|
||||
></add-template>
|
||||
</div>
|
||||
<div style="height: calc(100vh - 200px)" v-else>
|
||||
<el-empty :image-size="200" description="请先去完成认证"></el-empty>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
@ -45,8 +50,12 @@ export default {
|
|||
searchForm: {
|
||||
name: "",
|
||||
},
|
||||
shopId: "",
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.shopId = JSON.parse(sessionStorage.getItem("userInfo")).shopId;
|
||||
},
|
||||
methods: {
|
||||
queryList(pageNo, pageSize) {
|
||||
this.$api.mer_admin
|
||||
|
|
|
@ -100,9 +100,12 @@ export default {
|
|||
},
|
||||
productFilterType: "SALE",
|
||||
selectList: [],
|
||||
shopId: sessionStorage.getItem("userInfo").shopId,
|
||||
shopId: "",
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.shopId = JSON.parse(sessionStorage.getItem("userInfo")).shopId;
|
||||
},
|
||||
methods: {
|
||||
addProduct() {
|
||||
this.$refs.addOrUpdate.toggle().add();
|
||||
|
|
Loading…
Reference in New Issue