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

1

parent 1324ffeb
...@@ -357,9 +357,20 @@ ...@@ -357,9 +357,20 @@
}, },
//删除联系人 //删除联系人
removeSignPerson(index){ removeSignPerson(index){
this.signMsg.FirstShopLinkManList.splice(index,1); let that=this
this.clearInput(); uni.showModal({
this.isShowAdd=true; 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){ editSignPerson(item,index){
......
...@@ -95,20 +95,12 @@ ...@@ -95,20 +95,12 @@
<view class="activeList" v-for="(item, index) in dataList" :key="index"> <view class="activeList" v-for="(item, index) in dataList" :key="index">
<view class="left"> <view class="left">
<view class="LinkMan">{{ item.LinkMan }}</view> <view class="LinkMan">{{ item.LinkMan }}</view>
<view class="linkIconBox" <view class="linkIconBox">
><u-icon <image mode="heightFit" @click="edituser(item)" style="width:32rpx;height:32rpx"
name="comment" src="@/static/images/aedit.png">
color="#F27488" <image mode="heightFit" @click="deleteUser(item)" style="width:33rpx;height:33rpx;margin-left:40rpx;"
size="32" src="@/static/images/adel.png">
@click="edituser(item)" </view>
></u-icon
><u-icon
name="delete"
color="#F27488"
size="32"
@click="deleteUser(item)"
></u-icon
></view>
</view> </view>
<view class="right"> <view class="right">
<view class="rightItem"> <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