From 08c13be954af461c1607b01dd5253ad160d2cb43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=A3=9E?= <1277061783@qq.com> Date: Thu, 20 Apr 2023 13:11:26 +0800 Subject: [PATCH 1/8] =?UTF-8?q?=E6=B2=B9=E7=AB=99=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E8=AF=A6=E6=83=85=E9=A1=B5=E9=9D=A2=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../site/oilSiteInfo/OilSiteInfoInfo.vue | 57 +++++++++++-------- 1 file changed, 34 insertions(+), 23 deletions(-) diff --git a/src/views/site/oilSiteInfo/OilSiteInfoInfo.vue b/src/views/site/oilSiteInfo/OilSiteInfoInfo.vue index cfc7a04..8fa81e6 100644 --- a/src/views/site/oilSiteInfo/OilSiteInfoInfo.vue +++ b/src/views/site/oilSiteInfo/OilSiteInfoInfo.vue @@ -193,10 +193,10 @@ class="kg" render="row" > - 禁用 - 启用
扫描油站二维码支付
- {{oilSiteInfo.qrcodeSitePay== 0 ? '禁用' : oilSiteInfo.qrcodeSitePay== 1 ? '启用' : '暂无数据'}} + +
司机主动支付
- 禁用 - 启用
@@ -703,17 +707,22 @@
支付方式
- {{oilSiteInfo.payMethod== 2 ? '联名卡支付' : oilSiteInfo.payMethod== 1 ? '普通支付方式' : '暂无数据'}} + + +
油站详情提示文案
- {{ oilSiteInfo.detailContent }} + + {{oilSiteInfo.detailContent== detailContent ? '' : '暂无数据'}} +
@@ -722,35 +731,37 @@ 全局禁用启用
- 禁用 - 启用
上架标识
- {{oilSiteInfo.putawayMark== 0 ? '下架' : oilSiteInfo.putawayMark== 1 ? '上架' : '暂无数据'}} + +
审核标识
- 待审核 - 审核通过 - 审核不通过
-- 2.36.2 From 49b394a6ae5f77dbc8e45347e12a4c7ac3509248 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=A3=9E?= <1277061783@qq.com> Date: Thu, 20 Apr 2023 14:35:48 +0800 Subject: [PATCH 2/8] =?UTF-8?q?=E6=94=AF=E4=BB=98=E6=9D=A5=E6=BA=90?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E6=B1=89=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/finance/order/OrderPersonalInfoList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/finance/order/OrderPersonalInfoList.vue b/src/views/finance/order/OrderPersonalInfoList.vue index 7dcc4ab..0fd398e 100644 --- a/src/views/finance/order/OrderPersonalInfoList.vue +++ b/src/views/finance/order/OrderPersonalInfoList.vue @@ -694,7 +694,7 @@ export default {
来源: - {cell} + { this.markData.ORDER_SOURCE[cell] }
支付: -- 2.36.2 From 1b98e1538904f609f8dadc38c4d5b3a6902a3e55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=A3=9E?= <1277061783@qq.com> Date: Thu, 20 Apr 2023 17:04:58 +0800 Subject: [PATCH 3/8] =?UTF-8?q?=E5=A4=84=E7=90=86=20=E6=B8=A0=E9=81=93?= =?UTF-8?q?=E8=AE=A2=E5=8D=95=E7=AE=A1=E7=90=86=EF=BC=8C=E5=BE=85=E7=A1=AE?= =?UTF-8?q?=E8=AE=A4=E4=BC=81=E4=B8=9A=E8=AE=A2=E5=8D=95=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=20=E6=B7=BB=E5=8A=A0=E6=95=B0=E6=8D=AE=E8=BF=94=E5=9B=9E?= =?UTF-8?q?=E4=B8=8D=E6=B8=85=E7=A9=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/finance/oilCompanyMatch/OilCompanyMatchAdd.vue | 2 +- src/views/finance/oilCompanyMatch/OilCompanyMatchList.vue | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/views/finance/oilCompanyMatch/OilCompanyMatchAdd.vue b/src/views/finance/oilCompanyMatch/OilCompanyMatchAdd.vue index 3485638..aa0ac1c 100644 --- a/src/views/finance/oilCompanyMatch/OilCompanyMatchAdd.vue +++ b/src/views/finance/oilCompanyMatch/OilCompanyMatchAdd.vue @@ -16,7 +16,7 @@ - + diff --git a/src/views/finance/oilCompanyMatch/OilCompanyMatchList.vue b/src/views/finance/oilCompanyMatch/OilCompanyMatchList.vue index 30ee8f3..a2ec171 100644 --- a/src/views/finance/oilCompanyMatch/OilCompanyMatchList.vue +++ b/src/views/finance/oilCompanyMatch/OilCompanyMatchList.vue @@ -184,6 +184,7 @@ title="添加" :visible.sync="addDialog" width="55%" + v-if="addDialog" > @@ -220,6 +221,7 @@ title="修改" :visible.sync="updateDialog" width="55%" + v-if="addDialog" > Date: Thu, 20 Apr 2023 17:11:18 +0800 Subject: [PATCH 4/8] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=8A=E6=AC=A1?= =?UTF-8?q?=E6=8E=A8=E9=80=81=E5=A4=9A=E6=89=93=E7=9A=84=E4=B8=80=E4=B8=AA?= =?UTF-8?q?=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/finance/oilCompanyMatch/OilCompanyMatchAdd.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/finance/oilCompanyMatch/OilCompanyMatchAdd.vue b/src/views/finance/oilCompanyMatch/OilCompanyMatchAdd.vue index aa0ac1c..3485638 100644 --- a/src/views/finance/oilCompanyMatch/OilCompanyMatchAdd.vue +++ b/src/views/finance/oilCompanyMatch/OilCompanyMatchAdd.vue @@ -16,7 +16,7 @@ - + -- 2.36.2 From eae2515834afbe3f34724bd0f9ff26cb69d97ec4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=A3=9E?= <1277061783@qq.com> Date: Mon, 8 May 2023 10:56:51 +0800 Subject: [PATCH 5/8] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=B0=83=E5=BA=A6?= =?UTF-8?q?=E7=B3=BB=E7=BB=9F=E8=B0=83=E5=BA=A6=E4=BB=BB=E5=8A=A1=E6=92=A4?= =?UTF-8?q?=E5=9B=9E404=E6=83=85=E5=86=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/AdjustTask/AdjustTask.js | 2 +- vue.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/AdjustTask/AdjustTask.js b/src/api/AdjustTask/AdjustTask.js index eca67af..0b56de4 100644 --- a/src/api/AdjustTask/AdjustTask.js +++ b/src/api/AdjustTask/AdjustTask.js @@ -1,6 +1,6 @@ import request from '@/utils/request' var service_name = 'xkhl-site' -var group_name = 'xoilDispatchSitePriceAdjustTask' +var group_name = 'saasDispatchSitePriceAdjustTask' export default { getByPage(page) { // 站点分页查询 return request({ diff --git a/vue.config.js b/vue.config.js index 7485924..02e5a21 100644 --- a/vue.config.js +++ b/vue.config.js @@ -26,7 +26,7 @@ module.exports = { [process.env.VUE_APP_BASE_API]: { // target: "http://uat.xingoil.com/adminapi", // target: 'https://www.xingoil.com/adminapi', - target: `http://192.168.0.27:38080`, + target: `http://192.168.0.22:38080`, changeOrigin: true, pathRewrite: { ['^' + process.env.VUE_APP_BASE_API]: '' -- 2.36.2 From 4e03e358d67477593d44b429ae3dda020e2b1b55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=A3=9E?= <1277061783@qq.com> Date: Tue, 9 May 2023 09:03:10 +0800 Subject: [PATCH 6/8] =?UTF-8?q?=E8=B0=83=E5=BA=A6=20=E6=B2=B9=E4=BB=B7?= =?UTF-8?q?=E7=AE=A1=E7=90=86=E9=A2=84=E7=BA=A6=E6=97=B6=E9=97=B4=E5=8F=AA?= =?UTF-8?q?=E8=83=BD=E9=80=89=E8=AE=BE=E7=BD=AE=E5=BD=93=E5=89=8D15?= =?UTF-8?q?=E5=88=86=E9=92=9F=E5=90=8E=E7=9A=84=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 2 +- .../adjustStrategyPiliangAdd.vue | 188 ++++++++---------- vue.config.js | 2 +- 3 files changed, 90 insertions(+), 102 deletions(-) diff --git a/.env.development b/.env.development index 8af6fdc..2500aba 100644 --- a/.env.development +++ b/.env.development @@ -12,7 +12,7 @@ VUE_APP_UPLOAD_PRIVATE_URL = '/api/xkhl-dict/imageHandler/uploadProtectedImg' VUE_APP_DOMAIN = '192.168.0.199:38080' # 开发环境,不会进行加密,会打印出数据 -VUE_APP_ENV = 'development' +VUE_APP_ENV = 'production' #production diff --git a/src/views/site/oilCompanySiteDiaodu/adjustStrategyPiliangAdd.vue b/src/views/site/oilCompanySiteDiaodu/adjustStrategyPiliangAdd.vue index a203edf..b023599 100644 --- a/src/views/site/oilCompanySiteDiaodu/adjustStrategyPiliangAdd.vue +++ b/src/views/site/oilCompanySiteDiaodu/adjustStrategyPiliangAdd.vue @@ -1,14 +1,6 @@