이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
도움말
가입하기
로그인
liumin
/
NewZkgj
보기
1
좋아요
0
포크
0
코드
이슈
0
풀 리퀘스트
0
릴리즈
0
위키
활동
소스 검색
新增删除接待提示框
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'
});
})
},
// 获取未读消息数量
쓰기
미리보기
불러오는 중...
취소
저장