去除打印控制台无效代码
This commit is contained in:
@@ -68,7 +68,6 @@ function iconClick() {
|
||||
//监视查询的内容的变化
|
||||
let queryCusForm = reactive({})
|
||||
watch(searchContent,(newValue,oldValue)=>{
|
||||
console.log("输入内容:",searchContent.value)
|
||||
queryCusForm.cusName = searchContent.value
|
||||
getYsCustomerList(queryCusForm).then(res=>{
|
||||
dataList.value = res.rows
|
||||
|
||||
@@ -213,7 +213,6 @@ onUnload(() => {
|
||||
|
||||
//选择客户人员
|
||||
function chooseClientUser() {
|
||||
console.log('点击了输入框', props.cusName);
|
||||
uni.navigateTo({
|
||||
url: '/pages/business/CRM/marketActivity/customerUserList?cusName=' + props.cusName + '&chooseType=日常走访'
|
||||
})
|
||||
|
||||
@@ -169,7 +169,6 @@ onShow(() => {
|
||||
if (cache.get('checkedLYMyUserList') != null && cache.get('checkedLYMyUserList') != []) {
|
||||
myUserList.value = cache.get('checkedLYMyUserList')
|
||||
}
|
||||
console.log(props.status, '获取的状态')
|
||||
|
||||
if (props.status == '完成') {
|
||||
isDisabled.value = true
|
||||
|
||||
@@ -60,7 +60,6 @@ const dataList = ref([])
|
||||
|
||||
function getClientUserName() {
|
||||
crmCustomerUser(queryParams.value).then(res => {
|
||||
console.log(res, '相应测试')
|
||||
dataList.value = res.rows
|
||||
})
|
||||
}
|
||||
|
||||
@@ -135,7 +135,6 @@ function refuse() {
|
||||
|
||||
//点击通过
|
||||
function adopt(item) {
|
||||
console.log(item.visistId,4123123)
|
||||
uni.showModal({
|
||||
title: '提交',
|
||||
content: '是否要通过本报告?',
|
||||
|
||||
@@ -129,7 +129,6 @@ let handleSearch = () => {
|
||||
}
|
||||
|
||||
})
|
||||
console.log(searchValue.value)
|
||||
}
|
||||
|
||||
// 新增
|
||||
|
||||
@@ -112,7 +112,6 @@ onLoad((options) => {
|
||||
onShow(()=>{
|
||||
getUserLike(visistId.value).then(res=>{
|
||||
zanFlag.value = res.rows[0]?.status==1?true:false
|
||||
console.log(zanFlag.value,'点赞响应数据内容')
|
||||
if(zanFlag.value==false){
|
||||
iconType.value = 'hand-up'
|
||||
}else{
|
||||
|
||||
@@ -130,14 +130,11 @@ const upCallback = async (mescroll) => {
|
||||
} else {
|
||||
list.value.push(...res.rows);
|
||||
}
|
||||
console.log(res,'长度测试')
|
||||
mescroll.endBySize(res.rows.length, res.total);
|
||||
}, 500);
|
||||
} catch (error) {
|
||||
mescroll.endErr();
|
||||
}
|
||||
|
||||
console.log('长度测试111')
|
||||
}
|
||||
|
||||
const upOption = ref({
|
||||
|
||||
@@ -116,7 +116,6 @@ const formData = ref({
|
||||
// 我方人员
|
||||
let chooseMyLeaderList = reactive([0]);
|
||||
const changeValue2 = (item, value) => {
|
||||
console.log("我方领导", item, value);
|
||||
chooseMyLeaderList = item;
|
||||
formData.value.leader = chooseMyLeaderList
|
||||
};
|
||||
@@ -132,7 +131,6 @@ let saveVisistReportForm = reactive({});
|
||||
const submitForm = async () => {
|
||||
try {
|
||||
// 验证表单
|
||||
console.log(formRef.value, '表单验证数据')
|
||||
await formRef.value.validate();
|
||||
// 验证通过后的操作
|
||||
uni.showToast({
|
||||
@@ -207,7 +205,6 @@ onUnmounted(() => {
|
||||
const handleCustomerSelected = (data) => {
|
||||
formData.value.cusName = data.cusName
|
||||
formData.value.cusId = data.cusId
|
||||
console.log("收到客户数据的值:", customerUser)
|
||||
}
|
||||
|
||||
//查询签到记录
|
||||
|
||||
Reference in New Issue
Block a user