...
|
...
|
@@ -17,7 +17,7 @@ |
|
|
<td>{$vo.phone}</td>
|
|
|
<td>
|
|
|
<button type="button" class="btn btn-default" data-toggle="modal" data-target="#myModal" onclick="chakan({$vo.id})">查看</button>
|
|
|
<button type="button" class="btn btn-default" >删除</button>
|
|
|
<button type="button" class="btn btn-default" onclick="del({$vo.id})">删除</button>
|
|
|
</td>
|
|
|
</tr>
|
|
|
</volist>
|
...
|
...
|
@@ -69,6 +69,17 @@ |
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
//删除数据
|
|
|
function del(id){
|
|
|
|
|
|
cc = window.confirm('是否删除联系人');
|
|
|
if(cc){
|
|
|
alert('shanchu');
|
|
|
}
|
|
|
|
|
|
|
|
|
}
|
|
|
</script>
|
|
|
</body>
|
|
|
</html> |
|
|
\ No newline at end of file |
...
|
...
|
|