This commit is contained in:
parent
597e1157ee
commit
732ff3cb50
|
@ -0,0 +1,13 @@
|
||||||
|
<template>
|
||||||
|
<div>配置</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
|
||||||
|
</style>
|
|
@ -832,7 +832,9 @@ export default {
|
||||||
if (this.isAdd) {
|
if (this.isAdd) {
|
||||||
this.$api.mer_admin
|
this.$api.mer_admin
|
||||||
.addShippingTemplate({
|
.addShippingTemplate({
|
||||||
linkId: JSON.parse(sessionStorage.getItem("userInfo")).shopId,
|
linkId: JSON.parse(sessionStorage.getItem("userInfo")).shopId
|
||||||
|
? JSON.parse(sessionStorage.getItem("userInfo")).shopId
|
||||||
|
: JSON.parse(sessionStorage.getItem("userInfo")).merchantId,
|
||||||
defaults: 0, //默认值,待确认
|
defaults: 0, //默认值,待确认
|
||||||
sort: 0, //默认值,待确认
|
sort: 0, //默认值,待确认
|
||||||
type: 2, //默认值,待确认
|
type: 2, //默认值,待确认
|
||||||
|
@ -891,7 +893,9 @@ export default {
|
||||||
this.$api.mer_admin
|
this.$api.mer_admin
|
||||||
.updateShippingTemplate({
|
.updateShippingTemplate({
|
||||||
id: this.modalData.id,
|
id: this.modalData.id,
|
||||||
linkId: JSON.parse(sessionStorage.getItem("userInfo")).shopId,
|
linkId: JSON.parse(sessionStorage.getItem("userInfo")).shopId
|
||||||
|
? JSON.parse(sessionStorage.getItem("userInfo")).shopId
|
||||||
|
: JSON.parse(sessionStorage.getItem("userInfo")).merchantId,
|
||||||
defaults: 0, //默认值,待确认
|
defaults: 0, //默认值,待确认
|
||||||
sort: 0, //默认值,待确认
|
sort: 0, //默认值,待确认
|
||||||
type: 2, //默认值,待确认
|
type: 2, //默认值,待确认
|
||||||
|
|
Loading…
Reference in New Issue