Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
soss
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
hooloo
web
soss
Commits
a5bb8c8c
Commit
a5bb8c8c
authored
May 21, 2022
by
lixiaomin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改店铺
parent
5c7fd7d5
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
26 additions
and
22 deletions
+26
-22
src/views/shop/shop/components/TodaySpecial.vue
+4
-4
src/views/shop/shop/components/addShop.vue
+5
-6
src/views/shop/shop/components/commodity.vue
+1
-1
src/views/shop/shop/components/machine.vue
+4
-4
src/views/shop/shop/components/recommend.vue
+4
-4
src/views/shop/shop/index.vue
+1
-1
src/views/shop/shop/setShop.vue
+7
-2
No files found.
src/views/shop/shop/components/TodaySpecial.vue
View file @
a5bb8c8c
...
...
@@ -38,12 +38,12 @@ export default {
}
},
watch
:
{
shopId
()
{
this
.
getList
()
}
//
shopId() {
//
this.getList()
//
}
},
mounted
()
{
this
.
getList
()
//
this.getList()
},
methods
:
{
getList
()
{
...
...
src/views/shop/shop/components/addShop.vue
View file @
a5bb8c8c
...
...
@@ -59,14 +59,12 @@ export default {
if
(
id
)
{
this
.
getShopInfo
(
id
)
}
}
},
mounted
()
{
if
(
this
.
shopId
)
{
this
.
getShopInfo
(
this
.
shopId
)
}
},
data
()
{
return
{
...
...
@@ -114,7 +112,10 @@ export default {
surplus
.
zone
=
province
[
2
]
if
(
surplus
.
id
!=
null
)
{
updateShop
(
surplus
).
then
((
res
)
=>
{
this
.
$modal
.
msgSuccess
(
"修改成功"
);
if
(
res
.
code
==
"200"
){
this
.
$modal
.
msgSuccess
(
"修改成功"
);
this
.
$emit
(
'getList'
)
}
});
}
else
{
addShop
(
surplus
).
then
(({
data
})
=>
{
...
...
@@ -128,9 +129,7 @@ export default {
},
// 取消按钮
cancel
()
{
this
.
$emit
(
'closeDialog'
)
// this.open = false;
// this.reset();
this
.
$emit
(
'closeDialog'
);
},
// 表单重置
reset
()
{
...
...
src/views/shop/shop/components/commodity.vue
View file @
a5bb8c8c
...
...
@@ -97,7 +97,7 @@ export default {
}
},
mounted
()
{
this
.
getList
()
//
this.getList()
},
methods
:
{
getPicsList
(
str
){
...
...
src/views/shop/shop/components/machine.vue
View file @
a5bb8c8c
...
...
@@ -63,13 +63,13 @@ export default {
}
},
watch
:
{
shopId
()
{
this
.
getList
()
}
//
shopId() {
//
this.getList()
//
}
},
mounted
()
{
if
(
!
this
.
shopId
)
return
this
.
getList
()
//
this.getList()
},
methods
:
{
/** 查询列表 */
...
...
src/views/shop/shop/components/recommend.vue
View file @
a5bb8c8c
...
...
@@ -38,12 +38,12 @@ export default {
}
},
watch
:
{
shopId
()
{
this
.
getList
()
}
//
shopId() {
//
this.getList()
//
}
},
mounted
()
{
this
.
getList
()
//
this.getList()
},
methods
:
{
getList
()
{
...
...
src/views/shop/shop/index.vue
View file @
a5bb8c8c
<
template
>
<div
class=
"app-container"
>
<SetShop
ref=
"setShop"
/>
<SetShop
ref=
"setShop"
@
getList=
"getList"
/>
<el-form
:model=
"queryParams"
ref=
"queryForm"
size=
"small"
:inline=
"true"
v-show=
"showSearch"
label-width=
"68px"
>
<el-form-item
label=
"店铺名称"
prop=
"name"
>
<el-input
v-model=
"queryParams.name"
placeholder=
"请输入店铺名称"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
...
...
src/views/shop/shop/setShop.vue
View file @
a5bb8c8c
...
...
@@ -3,7 +3,7 @@
<el-dialog
title=
"店铺设置"
:visible
.
sync=
"open"
width=
"1200px"
append-to-body
>
<el-tabs
v-model=
"activeName"
@
tab-click=
"handleClick"
>
<el-tab-pane
label=
"店铺信息"
name=
"first"
>
<AddShop
:shopId=
"shopId"
@
setShopId=
"setShopId"
@
closeDialog=
"closeHandle
"
/>
<AddShop
:shopId=
"shopId"
@
closeDialog=
"closeHandle"
@
getList=
"getList
"
/>
</el-tab-pane>
<el-tab-pane
:disabled=
"!shopId"
label=
"机器信息"
name=
"second"
>
<Machine
ref=
"Machine"
:shopId=
"shopId"
/>
...
...
@@ -66,7 +66,12 @@ export default {
},
closeHandle
()
{
this
.
activeName
=
'first'
;
this
.
open
=
false
// 控制取消和X按钮,关闭弹窗
this
.
open
=
false
// 控制取消和X按钮,关闭弹窗;
this
.
getList
();
},
// 店铺列表
getList
(){
this
.
$emit
(
'getList'
);
}
}
...
...
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