使用 JavaScript能使本网站更好的工作。
首页
探索
帮助
注册
登录
liumin
/
NewZkgj
关注
1
点赞
0
派生
0
代码
工单
0
合并请求
0
版本发布
0
百科
动态
浏览代码
新增删除接待提示框
yun
douzhuo
2 年前
父节点
a93118519f
当前提交
06405ca0e1
共有
1 个文件被更改
,包括
17 次插入
和
9 次删除
分列视图
Diff 选项
显示统计
下载 Patch 文件
下载 Diff 文件
+17
-9
pages/index/customer.vue
+ 17
- 9
pages/index/customer.vue
查看文件
@@ -135,16 +135,24 @@
methods: {
// 删除接待
deleteReception(data) {
this.$u.get(`/customer/delete?id=${data.id}`).then(res => {
if (!res) {
this.init()
uni.showModal({
content: `确认删除“${data.name}”接待吗?`,
cancelColor: "#999999",
success: res => {
if (res.confirm) {
this.$u.get(`/customer/delete?id=${data.id}`).then(res => {
if (!res) {
this.init()
}
}).catch(e => {
console.log(e)
uni.showToast({
title: '网络异常,请稍后重试~',
icon: 'none'
});
})
}
}
}).catch(e => {
console.log(e)
uni.showToast({
title: '网络异常,请稍后重试~',
icon: 'none'
});
})
},
// 获取未读消息数量
撰写
预览
正在加载...
取消
保存