From 3cd57a6915dffe0355cc9e755a6813ef72d2afce Mon Sep 17 00:00:00 2001 From: mhhhh Date: Tue, 17 May 2022 09:19:36 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9A=90=E7=A7=81=E5=8D=8F=E8=AE=AE=E8=8F=9C?= =?UTF-8?q?=E5=8D=95=EF=BC=8C=E5=BA=97=E9=93=BA=E8=AF=A6=E6=83=85=E5=BA=97?= =?UTF-8?q?=E9=93=BA=E8=AF=A6=E6=83=85=E9=9D=9E=E7=A9=BA=E5=88=A4=E6=96=AD?= =?UTF-8?q?=EF=BC=8C=E8=87=AA=E5=AE=9A=E4=B9=89logo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- buyer/src/App.vue | 22 ++ buyer/src/api/common.js | 10 + buyer/src/config/index.js | 4 +- buyer/src/vuex/mutations.js | 6 + buyer/src/vuex/store.js | 3 +- manager/public/config.js | 6 +- manager/src/api/common.js | 4 + manager/src/api/pages.js | 11 + manager/src/views/Main.vue | 53 +++- manager/src/views/privacy-content/index.vue | 261 ++++++++++++++++++ manager/src/views/seller/bill/bill-detail.vue | 257 +++++++++-------- manager/src/views/seller/shop/shopDetail.vue | 4 +- .../setting-manage/setting/BASE_SETTING.vue | 7 +- .../setting-manage/setting/POINT_SETTING.vue | 4 +- seller/src/libs/routerJson.js | 18 +- 15 files changed, 531 insertions(+), 139 deletions(-) create mode 100644 manager/src/views/privacy-content/index.vue 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, + // } ] } ]