Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mallapp
Project
Project
Details
Activity
Releases
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
viitto
mallapp
Commits
84cdcce2
Commit
84cdcce2
authored
Sep 01, 2021
by
罗超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
1324ffeb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
17 deletions
+20
-17
activeSignUp.vue
pages/kotra/activeSignUp.vue
+14
-3
signList.vue
pages/kotra/signList.vue
+6
-14
No files found.
pages/kotra/activeSignUp.vue
View file @
84cdcce2
...
...
@@ -357,9 +357,20 @@
},
//删除联系人
removeSignPerson
(
index
){
this
.
signMsg
.
FirstShopLinkManList
.
splice
(
index
,
1
);
this
.
clearInput
();
this
.
isShowAdd
=
true
;
let
that
=
this
uni
.
showModal
({
title
:
"提示"
,
content
:
"确认删除?"
,
success
:
function
(
res
)
{
if
(
res
.
confirm
)
{
that
.
signMsg
.
FirstShopLinkManList
.
splice
(
index
,
1
);
that
.
clearInput
();
that
.
isShowAdd
=
true
;
}
else
if
(
res
.
cancel
)
{
}
},
});
},
//编辑联系人
editSignPerson
(
item
,
index
){
...
...
pages/kotra/signList.vue
View file @
84cdcce2
...
...
@@ -95,20 +95,12 @@
<view
class=
"activeList"
v-for=
"(item, index) in dataList"
:key=
"index"
>
<view
class=
"left"
>
<view
class=
"LinkMan"
>
{{
item
.
LinkMan
}}
</view>
<view
class=
"linkIconBox"
><u-icon
name=
"comment"
color=
"#F27488"
size=
"32"
@
click=
"edituser(item)"
></u-icon
><u-icon
name=
"delete"
color=
"#F27488"
size=
"32"
@
click=
"deleteUser(item)"
></u-icon
></view>
<view
class=
"linkIconBox"
>
<image
mode=
"heightFit"
@
click=
"edituser(item)"
style=
"width:32rpx;height:32rpx"
src=
"@/static/images/aedit.png"
>
<image
mode=
"heightFit"
@
click=
"deleteUser(item)"
style=
"width:33rpx;height:33rpx;margin-left:40rpx;"
src=
"@/static/images/adel.png"
>
</view>
</view>
<view
class=
"right"
>
<view
class=
"rightItem"
>
...
...
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