Commit 84cdcce2 authored by 罗超's avatar 罗超

1

parent 1324ffeb
......@@ -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){
......
......@@ -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">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment