Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
marketing
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
marketing-web
marketing
Commits
08a78887
Commit
08a78887
authored
Dec 18, 2021
by
liuchenxi
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/12月迭代' into dev
parents
7cb966bd
9d001314
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
account-detail.vue
src/views/recharge/account-detail.vue
+4
-2
view-store.vue
src/views/recharge/components/view-store.vue
+4
-2
No files found.
src/views/recharge/account-detail.vue
View file @
08a78887
...
...
@@ -35,7 +35,7 @@
</div>
</div>
<add-depart
:visible
.
sync=
"addDepartDialog.visible"
@
saved=
"getTableData"
/>
<view-store
:visible
.
sync=
"viewStoreDialog.visible"
:depart-id=
"viewStoreDialog.departId"
/>
<view-store
:visible
.
sync=
"viewStoreDialog.visible"
:depart-id=
"viewStoreDialog.departId"
:depart-list=
"viewStoreDialog.departList"
/>
</div>
</template>
...
...
@@ -69,7 +69,8 @@ export default {
},
viewStoreDialog
:
{
visible
:
false
,
departId
:
''
departId
:
''
,
departList
:
[]
},
statusList
:
[
{
label
:
'启用'
,
value
:
1
},
...
...
@@ -191,6 +192,7 @@ export default {
}
},
showStore
(
row
)
{
this
.
viewStoreDialog
.
departList
=
row
.
accountEnterpriseDpartmentList
;
this
.
viewStoreDialog
.
departId
=
row
.
departmemtId
;
this
.
viewStoreDialog
.
visible
=
true
;
},
...
...
src/views/recharge/components/view-store.vue
View file @
08a78887
...
...
@@ -25,7 +25,8 @@ export default {
components
:
{},
props
:
{
visible
:
Boolean
,
departId
:
String
departId
:
String
,
departList
:
Array
},
data
()
{
return
{
...
...
@@ -54,7 +55,8 @@ export default {
search
:
this
.
search
,
pageSize
:
this
.
tableData
.
pageSize
,
pageNum
:
this
.
tableData
.
currentPage
,
departId
:
this
.
departId
departId
:
this
.
departId
,
accountEnterpriseDpartmentList
:
JSON
.
stringify
(
this
.
departList
||
[])
};
const
{
result
}
=
await
getStoreList
(
para
);
this
.
tableData
.
data
=
result
.
result
||
[];
...
...
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