Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
integral-mall
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
integralMall
integral-mall
Commits
688d448e
Commit
688d448e
authored
Mar 03, 2022
by
crushh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: 修复
parent
49aa44d0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
editDeliver.vue
src/views/setting/editDeliver.vue
+13
-0
No files found.
src/views/setting/editDeliver.vue
View file @
688d448e
...
...
@@ -448,6 +448,7 @@ export default {
// let currentTime1 = new Date(new Date(new Date().getTime() + 1000 * 60).valueOf());
// this.form.timeRangeList[0].timeRange = [currentTime, currentTime1];
// }
this
.
getErpGoodsFlag
();
},
methods
:
{
// 添加时间段
...
...
@@ -815,6 +816,18 @@ export default {
name
:
'deliverSet'
,
});
},
// 检测是否开启 erp商品兑换接口
getErpGoodsFlag
()
{
request
.
get
(
'/api-integral-mall/get-config'
).
then
(
res
=>
{
if
(
res
.
data
.
errorCode
===
0
)
{
const
result
=
res
.
data
.
result
||
{};
this
.
$store
.
commit
(
'mutations_erpGoodsFlag'
,
result
.
goodsStockSync
||
0
);
}
else
{
this
.
$message
.
error
(
res
.
data
.
message
);
}
});
},
},
};
</
script
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment