本網站在啟用 JavaScript 的情況下可以運作的更好。
首頁
探索
說明
註冊
登入
liumin
/
NewZkgj
關注
1
收藏
0
複製
0
程式碼
問題
0
合併請求
0
版本發佈
0
Wiki
活動
瀏覽代碼
新增删除接待提示框
yun
douzhuo
2 年之前
父節點
a93118519f
當前提交
06405ca0e1
共有
1 個檔案被更改
,包括
17 行新增
和
9 行删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+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'
});
})
},
// 获取未读消息数量
Write
Preview
Loading…
取消
儲存