diff --git a/buyer/src/App.vue b/buyer/src/App.vue index f8f2ece7..b8eebdad 100644 --- a/buyer/src/App.vue +++ b/buyer/src/App.vue @@ -6,9 +6,31 @@ diff --git a/manager/src/views/seller/shop/shopDetail.vue b/manager/src/views/seller/shop/shopDetail.vue index c36c0a87..e252e0de 100644 --- a/manager/src/views/seller/shop/shopDetail.vue +++ b/manager/src/views/seller/shop/shopDetail.vue @@ -93,9 +93,9 @@

退货地址: - {{storeInfo.salesConsigneeName || storeInfo.salesConsigneeMobile || storeInfo.salesConsigneeAddressPath || storeInfo.salesConsigneeDetail?storeInfo.salesConsigneeName + storeInfo.salesConsigneeMobile +' '+ storeInfo.salesConsigneeAddressPath + storeInfo.salesConsigneeDetail:'暂未完善'}} + {{storeInfo.salesConsigneeName !== 'null' ? storeInfo.salesConsigneeName : '' || storeInfo.salesConsigneeMobile !=='null' ?storeInfo.salesConsigneeMobile:''|| storeInfo.salesConsigneeAddressPath !=='null'?storeInfo.salesConsigneeAddressPath:'' || storeInfo.salesConsigneeDetail !=='null'?storeInfo.salesConsigneeDetail:'' ?storeInfo.salesConsigneeName + storeInfo.salesConsigneeMobile +' '+ storeInfo.salesConsigneeAddressPath + storeInfo.salesConsigneeDetail:'暂未完善'}} + -

店铺定位: diff --git a/manager/src/views/sys/setting-manage/setting/BASE_SETTING.vue b/manager/src/views/sys/setting-manage/setting/BASE_SETTING.vue index 0e7c3c26..08811844 100644 --- a/manager/src/views/sys/setting-manage/setting/BASE_SETTING.vue +++ b/manager/src/views/sys/setting-manage/setting/BASE_SETTING.vue @@ -56,7 +56,10 @@ import { handleSubmit } from "./validate"; import ossManage from "@/views/sys/oss-manage/ossManage"; export default { title: "基础设置", - props: ["res", "type"], + props: { + res:Object, + type:'' + }, components: { ossManage, }, @@ -104,6 +107,8 @@ export default { setSetting(this.type, this.formValidate).then((res) => { if (res.success) { this.$Message.success("保存成功!"); + localStorage.setItem("icon", this.formValidate.domainLogo); + window.document.title = this.formValidate.siteName + " - 运营后台"; } else { this.$Message.error("保存失败!"); } diff --git a/manager/src/views/sys/setting-manage/setting/POINT_SETTING.vue b/manager/src/views/sys/setting-manage/setting/POINT_SETTING.vue index 4b85dddd..90967891 100644 --- a/manager/src/views/sys/setting-manage/setting/POINT_SETTING.vue +++ b/manager/src/views/sys/setting-manage/setting/POINT_SETTING.vue @@ -8,13 +8,13 @@ - + diff --git a/seller/src/libs/routerJson.js b/seller/src/libs/routerJson.js index 216fe8a8..21d86b46 100644 --- a/seller/src/libs/routerJson.js +++ b/seller/src/libs/routerJson.js @@ -432,15 +432,15 @@ export const result = [{ component: "shop/shopSetting", children: null, }, - { - name: "shopAddress", - level: 2, - type: 0, - title: "自提管理", - path: "shopAddress", - component: "shop/shopAddress", - children: null, - } + // { + // name: "shopAddress", + // level: 2, + // type: 0, + // title: "自提管理", + // path: "shopAddress", + // component: "shop/shopAddress", + // children: null, + // } ] } ]