From 6dc7dcc36b8542e29b558b61e1465745f3f398ea Mon Sep 17 00:00:00 2001
From: wangxiaohua <1214073490@qq.com>
Date: Tue, 23 Nov 2021 16:37:18 +0800
Subject: [PATCH] init
---
src/views/Customer/AgentManagement.vue | 2 +-
src/views/Customer/CompanyRecord.vue | 2 +-
src/views/Customer/Companymanagement.vue | 2 +-
src/views/Customer/SalesStage.vue | 2 +-
src/views/Customer/index.vue | 30 +---------------
src/views/Customer/label.vue | 4 +--
src/views/Equipment/batch.vue | 2 +-
src/views/Equipment/index.vue | 2 +-
src/views/Equipment/record.vue | 2 +-
src/views/Equipment/state.vue | 2 +-
src/views/File/index.vue | 2 +-
src/views/Receive/index.vue | 10 +++---
src/views/ReceivingRecords/index.vue | 36 +------------------
src/views/Statistics/BuildingContrast.vue | 2 +-
src/views/Statistics/ConsultantBrand.vue | 2 +-
src/views/Statistics/EmployeesReceive.vue | 2 +-
.../Statistics/Insightintothedetails.vue | 2 +-
src/views/Statistics/MentoringAbility.vue | 10 +++---
src/views/Statistics/ReceptionOverview.vue | 4 +--
src/views/Statistics/ReceptionStatistical.vue | 2 +-
src/views/Statistics/TheTeamCompared.vue | 2 +-
src/views/Statistics/TrendAnalysis.vue | 2 +-
src/views/Statistics/dataScreeOrg.vue | 2 +-
src/views/Statistics/dataScreeSys.vue | 2 +-
src/views/Statistics/index.vue | 2 +-
src/views/Template/Pinspeakwords.vue | 2 +-
src/views/Template/SystemarketingWordMB.vue | 2 +-
src/views/Template/taboo.vue | 2 +-
src/views/Template/wrongword.vue | 5 +--
src/views/building/area.vue | 2 +-
src/views/building/index.vue | 2 +-
31 files changed, 42 insertions(+), 105 deletions(-)
diff --git a/src/views/Customer/AgentManagement.vue b/src/views/Customer/AgentManagement.vue
index 4f420b0..0f476ca 100644
--- a/src/views/Customer/AgentManagement.vue
+++ b/src/views/Customer/AgentManagement.vue
@@ -995,7 +995,7 @@ export default {
.box-center {
width: 100%;
padding: 15px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 100px;
}
.cen-tab{
diff --git a/src/views/Customer/CompanyRecord.vue b/src/views/Customer/CompanyRecord.vue
index 77f36fe..e3bb0e3 100644
--- a/src/views/Customer/CompanyRecord.vue
+++ b/src/views/Customer/CompanyRecord.vue
@@ -1013,7 +1013,7 @@ export default {
.box-center {
width: 100%;
padding: 15px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 100px;
}
.cen-tab{
diff --git a/src/views/Customer/Companymanagement.vue b/src/views/Customer/Companymanagement.vue
index b59327e..6eb0777 100644
--- a/src/views/Customer/Companymanagement.vue
+++ b/src/views/Customer/Companymanagement.vue
@@ -816,7 +816,7 @@ export default {
.box-center {
width: 100%;
padding: 15px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 100px;
}
.cen-tab{
diff --git a/src/views/Customer/SalesStage.vue b/src/views/Customer/SalesStage.vue
index f771e76..8f8cd08 100644
--- a/src/views/Customer/SalesStage.vue
+++ b/src/views/Customer/SalesStage.vue
@@ -255,7 +255,7 @@ computed: {
.box-center {
width: 100%;
padding: 15px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 100px;
}
.cen-tab {
diff --git a/src/views/Customer/index.vue b/src/views/Customer/index.vue
index 2dfa4af..2a9701c 100644
--- a/src/views/Customer/index.vue
+++ b/src/views/Customer/index.vue
@@ -555,27 +555,10 @@ export default {
this.searchForm.endDate = "";
// this.$set(this, "time", null);
this.searchForm.dateType = idx;
- // let num = 24 * 3600 * 1000;
- // // 获取当前时间戳转换为日期格式
- // if (idx == 0) {
- // num = 24 * 3600 * 1000 * 0;
- // }
- // if (idx == 2) {
- // num = 24 * 3600 * 1000 * 6;
- // }
- // if (idx == 6) {
- // num = 24 * 3600 * 1000 * 29;
- // }
- // this.time = [
- // this.timestampToTime(new Date().getTime() - num),
- // this.timestampToTime(new Date().getTime()),
- // ];
this.houseChange();
},
timestampToTime(timestamp) {
var date = new Date(timestamp); //时间戳为10位需*1000,时间戳为13位的话不需乘1000
- // var date = new Date(timestamp * 1000);//时间戳为10位需*1000,时间戳为13位的话不需乘1000
-
var yyyy = date.getFullYear() + "-";
var MM =
@@ -586,17 +569,6 @@ export default {
// var dd = date.getDate() + ' ';
var dd =
(date.getDate() < 10 ? "0" + date.getDate() : date.getDate()) + " ";
-
- // var HH = date.getHours() + ':';
- // var HH = (date.getHours() < 10 ? '0'+(date.getHours()) : date.getHours()) + ':';
- //
- // // var mm = date.getMinutes() + ':';
- // var mm = (date.getMinutes() < 10 ? '0'+(date.getMinutes()) : date.getMinutes()) + ':';
- //
- // // var ss = date.getSeconds();
- // var ss = (date.getSeconds() < 10 ? '0'+(date.getSeconds()) : date.getSeconds());
-
- // return yyyy+MM+dd+HH+mm+ss;
return yyyy + MM + dd;
},
},
@@ -607,7 +579,7 @@ export default {
.box-center {
width: 100%;
padding: 15px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 100px;
}
.cen-tab {
diff --git a/src/views/Customer/label.vue b/src/views/Customer/label.vue
index 9d29c6c..57e53a7 100644
--- a/src/views/Customer/label.vue
+++ b/src/views/Customer/label.vue
@@ -204,7 +204,7 @@
@@ -652,7 +652,7 @@ export default {
.box-center {
width: 100%;
padding: 15px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 100px;
}
#app {
diff --git a/src/views/Equipment/batch.vue b/src/views/Equipment/batch.vue
index 12b57fe..5cc66a9 100644
--- a/src/views/Equipment/batch.vue
+++ b/src/views/Equipment/batch.vue
@@ -275,7 +275,7 @@ export default {
.box-center {
width: 100%;
padding: 15px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 40px;
}
.cen-tab{
diff --git a/src/views/Equipment/index.vue b/src/views/Equipment/index.vue
index d974051..f59a61a 100644
--- a/src/views/Equipment/index.vue
+++ b/src/views/Equipment/index.vue
@@ -1388,7 +1388,7 @@ export default {
.box-center {
width: 100%;
padding: 15px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 100px;
}
.cen-tab {
diff --git a/src/views/Equipment/record.vue b/src/views/Equipment/record.vue
index 9709f7f..fcda427 100644
--- a/src/views/Equipment/record.vue
+++ b/src/views/Equipment/record.vue
@@ -223,7 +223,7 @@ export default {
.box-center {
width: 100%;
padding: 15px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 100px;
}
.cen-tab {
diff --git a/src/views/Equipment/state.vue b/src/views/Equipment/state.vue
index 88378d8..e5c1908 100644
--- a/src/views/Equipment/state.vue
+++ b/src/views/Equipment/state.vue
@@ -1210,7 +1210,7 @@ export default {
.box-center {
width: 100%;
padding: 15px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 100px;
}
.tongji {
diff --git a/src/views/File/index.vue b/src/views/File/index.vue
index eada662..c9cd2ca 100644
--- a/src/views/File/index.vue
+++ b/src/views/File/index.vue
@@ -186,7 +186,7 @@ export default {
width: 100%;
height: 100%;
padding: 15px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 20px;
}
.cen-tab{
diff --git a/src/views/Receive/index.vue b/src/views/Receive/index.vue
index 365d464..1683c5f 100644
--- a/src/views/Receive/index.vue
+++ b/src/views/Receive/index.vue
@@ -1399,7 +1399,7 @@ export default {
width: 100%;
height:100%;
padding: 15px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 100px;
background: #FFFFFF;
}
@@ -1643,7 +1643,7 @@ export default {
display: flex;
.topzuo{
width:75% ;
- min-width: 800px;
+ min-width: 700px;
height: 140px;
background: #FFFFFF;
border: 1px solid #E0E0E0;
@@ -1669,7 +1669,7 @@ export default {
}
.topyou{
width:24% ;
- min-width: 380px;
+ min-width: 300px;
height: 140px;
padding: 10px;
background: #FFFFFF;
@@ -1703,7 +1703,7 @@ export default {
height: calc(80vh - 150px);
.topzuo{
width:75% ;
- min-width: 800px;
+ min-width: 700px;
height: 100%;
display: flex;
.topzuo-zuo{
@@ -1746,7 +1746,7 @@ export default {
}
.topyou{
width:24% ;
- min-width: 380px;
+ min-width: 300px;
height: 100%;
background: #FFFFFF;
border: 1px solid #E0E0E0;
diff --git a/src/views/ReceivingRecords/index.vue b/src/views/ReceivingRecords/index.vue
index fafa5e4..7067040 100644
--- a/src/views/ReceivingRecords/index.vue
+++ b/src/views/ReceivingRecords/index.vue
@@ -556,14 +556,6 @@ export default {
this.searchForm.projectId = res.data[0].id;
}
this.houseChange();
- // this.searchForm.projectId = res.data[0].id;
- // this.tabtimetap(0);
- // // 获取接待记录列表
- // this.findbypage();
- // // 获取客户意向
- // this.findKeywords();
- // // 获取置业顾问列表
- // this.findUserListByHouseId();
});
},
// 置业顾问列表
@@ -590,21 +582,6 @@ export default {
this.searchForm.endDate = "";
// this.$set(this, "time", null);
this.searchForm.dateType = idx;
- // let num = 24 * 3600 * 1000;
- // // 获取当前时间戳转换为日期格式
- // if (idx == 0) {
- // num = 24 * 3600 * 1000 * 0;
- // }
- // if (idx == 1) {
- // num = 24 * 3600 * 1000 * 1;
- // }
- // if (idx == 2) {
- // num = 24 * 3600 * 1000 * 7;
- // }
- // this.time = [
- // this.timestampToTime(new Date().getTime() - num),
- // this.timestampToTime(new Date().getTime()),
- // ];
this.houseChange();
},
timestampToTime(timestamp) {
@@ -621,17 +598,6 @@ export default {
// var dd = date.getDate() + ' ';
var dd =
(date.getDate() < 10 ? "0" + date.getDate() : date.getDate()) + " ";
-
- // var HH = date.getHours() + ':';
- // var HH = (date.getHours() < 10 ? '0'+(date.getHours()) : date.getHours()) + ':';
- //
- // // var mm = date.getMinutes() + ':';
- // var mm = (date.getMinutes() < 10 ? '0'+(date.getMinutes()) : date.getMinutes()) + ':';
- //
- // // var ss = date.getSeconds();
- // var ss = (date.getSeconds() < 10 ? '0'+(date.getSeconds()) : date.getSeconds());
-
- // return yyyy+MM+dd+HH+mm+ss;
return yyyy + MM + dd;
},
},
@@ -642,7 +608,7 @@ export default {
.box-center {
width: 100%;
padding: 15px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 100px;
}
.cen-tab {
diff --git a/src/views/Statistics/BuildingContrast.vue b/src/views/Statistics/BuildingContrast.vue
index 9c42f86..3722274 100644
--- a/src/views/Statistics/BuildingContrast.vue
+++ b/src/views/Statistics/BuildingContrast.vue
@@ -495,7 +495,7 @@ export default {
.box-center {
width: 100%;
padding: 15px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 100px;
}
.cen-tab{
diff --git a/src/views/Statistics/ConsultantBrand.vue b/src/views/Statistics/ConsultantBrand.vue
index 357fb35..de30169 100644
--- a/src/views/Statistics/ConsultantBrand.vue
+++ b/src/views/Statistics/ConsultantBrand.vue
@@ -698,7 +698,7 @@ export default {
.box-center {
width: 100%;
padding: 15px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 100px;
}
.cen-tab {
diff --git a/src/views/Statistics/EmployeesReceive.vue b/src/views/Statistics/EmployeesReceive.vue
index 3db0ca4..798a9d3 100644
--- a/src/views/Statistics/EmployeesReceive.vue
+++ b/src/views/Statistics/EmployeesReceive.vue
@@ -333,7 +333,7 @@ export default {
.box-center {
width: 100%;
padding: 15px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 100px;
}
.app-titel{
diff --git a/src/views/Statistics/Insightintothedetails.vue b/src/views/Statistics/Insightintothedetails.vue
index 14131f5..dd8b0f7 100644
--- a/src/views/Statistics/Insightintothedetails.vue
+++ b/src/views/Statistics/Insightintothedetails.vue
@@ -284,7 +284,7 @@ export default {
.box-center {
width: 100%;
padding: 15px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 100px;
}
.cen-tab{
diff --git a/src/views/Statistics/MentoringAbility.vue b/src/views/Statistics/MentoringAbility.vue
index c0970a8..a05ff99 100644
--- a/src/views/Statistics/MentoringAbility.vue
+++ b/src/views/Statistics/MentoringAbility.vue
@@ -44,7 +44,9 @@
>
-
+
+
+
@@ -1043,7 +1045,7 @@ export default {
.box-center {
width: 100%;
padding: 15px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 100px;
}
.cen-tab {
@@ -1093,7 +1095,7 @@ export default {
}
.app-top{
- width: 100%;
+ width: 98.6%;
background: #ffffff;
box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.04);
border-radius: 4px;
diff --git a/src/views/Statistics/ReceptionOverview.vue b/src/views/Statistics/ReceptionOverview.vue
index c8a90fc..4e4fdd6 100644
--- a/src/views/Statistics/ReceptionOverview.vue
+++ b/src/views/Statistics/ReceptionOverview.vue
@@ -907,14 +907,14 @@ export default {
.box-center {
width: 100%;
padding: 15px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 100px;
}
.container {
display: grid;
grid-template-columns: repeat(5, 19%) ;
- grid-column-gap: 18px;
+ grid-column-gap: 12px;
}
diff --git a/src/views/Statistics/ReceptionStatistical.vue b/src/views/Statistics/ReceptionStatistical.vue
index 651651c..730d477 100644
--- a/src/views/Statistics/ReceptionStatistical.vue
+++ b/src/views/Statistics/ReceptionStatistical.vue
@@ -537,7 +537,7 @@ export default {
.box-center {
width: 100%;
padding: 15px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 100px;
}
.cen-tab {
diff --git a/src/views/Statistics/TheTeamCompared.vue b/src/views/Statistics/TheTeamCompared.vue
index 8e9f318..d36c0b0 100644
--- a/src/views/Statistics/TheTeamCompared.vue
+++ b/src/views/Statistics/TheTeamCompared.vue
@@ -728,7 +728,7 @@ tbody tr {
.box-center {
width: 100%;
padding: 15px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 100px;
}
.cen-tab{
diff --git a/src/views/Statistics/TrendAnalysis.vue b/src/views/Statistics/TrendAnalysis.vue
index afa177a..3adc6d4 100644
--- a/src/views/Statistics/TrendAnalysis.vue
+++ b/src/views/Statistics/TrendAnalysis.vue
@@ -1057,7 +1057,7 @@ export default {
.box-center {
width: 100%;
padding: 15px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 100px;
}
diff --git a/src/views/Statistics/dataScreeOrg.vue b/src/views/Statistics/dataScreeOrg.vue
index 80c2cb9..bdff34f 100644
--- a/src/views/Statistics/dataScreeOrg.vue
+++ b/src/views/Statistics/dataScreeOrg.vue
@@ -666,7 +666,7 @@ export default {
.box-center {
width: 100%;
padding: 15px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 100px;
}
diff --git a/src/views/Statistics/dataScreeSys.vue b/src/views/Statistics/dataScreeSys.vue
index f243e3d..d41687a 100644
--- a/src/views/Statistics/dataScreeSys.vue
+++ b/src/views/Statistics/dataScreeSys.vue
@@ -691,7 +691,7 @@ export default {
.box-center {
width: 100%;
padding: 15px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 100px;
}
diff --git a/src/views/Statistics/index.vue b/src/views/Statistics/index.vue
index 32a81ed..033cda1 100644
--- a/src/views/Statistics/index.vue
+++ b/src/views/Statistics/index.vue
@@ -392,7 +392,7 @@ export default {
.box-center {
width: 100%;
padding: 15px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 100px;
}
.tophove {
diff --git a/src/views/Template/Pinspeakwords.vue b/src/views/Template/Pinspeakwords.vue
index 16a87cd..354ff1d 100644
--- a/src/views/Template/Pinspeakwords.vue
+++ b/src/views/Template/Pinspeakwords.vue
@@ -120,7 +120,7 @@
删除
-
+
{{sanji.name||''}}
diff --git a/src/views/Template/SystemarketingWordMB.vue b/src/views/Template/SystemarketingWordMB.vue
index e1eaef0..93611a2 100644
--- a/src/views/Template/SystemarketingWordMB.vue
+++ b/src/views/Template/SystemarketingWordMB.vue
@@ -429,7 +429,7 @@ export default {
width: 100%;
padding: 15px;
padding-top: 0px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 100px;
}
.center{
diff --git a/src/views/Template/taboo.vue b/src/views/Template/taboo.vue
index 97c0d22..784633d 100644
--- a/src/views/Template/taboo.vue
+++ b/src/views/Template/taboo.vue
@@ -290,7 +290,7 @@ export default {
.box-center {
width: 100%;
padding: 15px;
- min-width: 1200px;
+ min-width: 1000px;
padding-bottom: 100px;
}
.cen-tab {
diff --git a/src/views/Template/wrongword.vue b/src/views/Template/wrongword.vue
index 8462d63..6e204f0 100644
--- a/src/views/Template/wrongword.vue
+++ b/src/views/Template/wrongword.vue
@@ -108,9 +108,6 @@
-