Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
member
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
member
member
Commits
fb253492
Commit
fb253492
authored
Mar 10, 2022
by
caoyanzhi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: 会员列表-批量操作调整
parent
6c706819
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
4 deletions
+9
-4
allCustomersList.vue
src/components/allCustomers/allCustomersList.vue
+1
-1
importDialog.vue
src/components/allCustomers/components/importDialog.vue
+1
-1
index.js
src/components/allCustomers/index.js
+7
-2
No files found.
src/components/allCustomers/allCustomersList.vue
View file @
fb253492
...
...
@@ -265,7 +265,7 @@
@
successImport
=
"successImport"
/>
<!--
批量导入
-->
<
import
-
dialog
:
dialogVisible
.
sync
=
"dialogImportVisible"
@
successImport
=
"
successImport
"
/>
<
import
-
dialog
:
dialogVisible
.
sync
=
"dialogImportVisible"
@
successImport
=
"
taskId => successImport(taskId, true)
"
/>
<
/div
>
<
/template
>
<
script
>
...
...
src/components/allCustomers/components/importDialog.vue
View file @
fb253492
...
...
@@ -9,7 +9,7 @@
<el-option
label=
"积分增加"
value=
"11"
></el-option>
<el-option
label=
"积分扣除"
value=
"12"
></el-option>
<el-option
label=
"等级调整"
value=
"13"
></el-option>
<el-option
label=
"服务门店调整"
value=
"14"
></el-option>
<el-option
label=
"服务门店
/专属导购
调整"
value=
"14"
></el-option>
<el-option
label=
"批量冻结会员"
value=
"15"
></el-option>
<el-option
label=
"批量解冻会员"
value=
"16"
></el-option>
</el-select>
...
...
src/components/allCustomers/index.js
View file @
fb253492
...
...
@@ -410,8 +410,13 @@ export default {
openDialogImport
()
{
this
.
dialogImportVisible
=
true
;
},
successImport
(
taskId
)
{
// this.dialogImportVisible = false;
successImport
(
taskId
,
isImport
)
{
// 不是批量导入,而且只选了一条数据时,不跳转到任务中心——炎羽
if
(
!
isImport
&&
this
.
multipleList
.
length
==
1
)
{
this
.
$message
.
success
(
'修改完成'
);
this
.
batchRefresh
()
return
}
this
.
$confirm
(
"任务发起成功,请去【企业管理】-【任务中心】查看处理结果和执行进度"
,
"任务发起成功"
,
...
...
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