소스 검색

新增删除排队接待功能

yun
douzhuo 2 년 전
부모
커밋
04a49a9cd7
2개의 변경된 파일21개의 추가작업 그리고 3개의 파일을 삭제
  1. +19
    -1
      pages/index/customer.vue
  2. +2
    -2
      utils/domain.js

+ 19
- 1
pages/index/customer.vue 파일 보기

@@ -61,6 +61,9 @@
<template v-if="zhipai">
<view class="footer3" @click.stop="assign(item)">指派顾问</view>
</template>
<template v-if="checkAuthority('删除接待记录')">
<view @tap.stop="deleteReception(item)" class="footer3">删除接待</view>
</template>
</view>

</view>
@@ -125,6 +128,21 @@
this.updateInit()
},
methods: {
// 删除接待
deleteReception(data) {
this.$u.get(`/customer/delete?id=${data.id}`).then(res => {
if (!res) {
this.init()
}
}).catch(e => {
console.log(e)
uni.showToast({
title: '网络异常,请稍后重试~',
icon: 'none'
});
})
},
// 获取未读消息数量
updateInit() {
uni.request({
url: config.service.notReadNum,
@@ -425,7 +443,7 @@
}

.footer3 {
flex: 1;
flex-grow: 1;
text-align: center;
line-height: 90rpx;
}


+ 2
- 2
utils/domain.js 파일 보기

@@ -1,8 +1,8 @@
// http.js使用域名
const baseUrl = 'http://81.70.55.170:9090/autoSR/api';// 最新测试
// const baseUrl = 'http://81.70.55.170:9090/autoSR/api';// 最新测试
// const baseUrl = 'http://127.0.0.1:8080/autoSR/api'; // 本地
// const baseUrl = 'http://192.168.31.169:8080/autoSR/api'; // 长龙
// const baseUrl = 'http://192.168.31.149:9090/api'; // 盛浩
const baseUrl = 'http://192.168.31.149:9090/api'; // 盛浩
// const baseUrl = 'https://zkgj.quhouse.com/api'; // 质控正式
// const baseUrl = 'https://hfju.com/api'; // 数智正式
// const baseUrl = 'https://xitong.pachira.cn/api'; // AI营销辅助 普强使用


불러오는 중...
취소
저장