diff --git a/frontend/views/common/index.php b/frontend/views/common/index.php index 131b59d..4c153bd 100644 --- a/frontend/views/common/index.php +++ b/frontend/views/common/index.php @@ -106,20 +106,24 @@
-
跳过
-
权限管理,系统管理功能,用户设置,权限管理,权限分配,部门管理
-
- 数据库管理,总库分配到小组或个人,数据库管理可以对所有的数据进行分配一般会通过业务人员电话核实之后,分为意向客户,成单客户,无效客户 - (数据库列表名称可根据自己的偏好进行编辑),车辆数据和车险数据相通,供坐席查询相关资料和信息 -
-
- 销售管理,可以看到从数据库分配到业务里面的数据,显示业务所有通话数据和已提交订单,退单,预约信息等等,电销下单,电销系统全程通话录音, - 详细的通话记录。共查询分析,录音可保存为MP3格式,支持导入导出功能 -
- -
下一步
- - +
跳过
+
+
权限管理,系统管理功能,用户设置,权限管理,权限分配,部门管理
+ +
下一步
+
+
+
数据库管理,总库分配到小组或个人,数据库管理可以对所有的数据进行分配一般会通过业务人员电话核实之后,分为意向客户,成单客户,无效客户 + (数据库列表名称可根据自己的偏好进行编辑),车辆数据和车险数据相通,供坐席查询相关资料和信息
+ +
下一步
+
+
+
销售管理,可以看到从数据库分配到业务里面的数据,显示业务所有通话数据和已提交订单,退单,预约信息等等,电销下单,电销系统全程通话录音, + 详细的通话记录。共查询分析,录音可保存为MP3格式,支持导入导出功能
+ +
下一步
+
diff --git a/frontend/web/assets/css/popUps.css b/frontend/web/assets/css/popUps.css index 8299370..be0d5ec 100644 --- a/frontend/web/assets/css/popUps.css +++ b/frontend/web/assets/css/popUps.css @@ -8,7 +8,10 @@ display:none; z-index:2001; } -.content{ +.unchoose{ + display: none; +} +.model-bg{ width: 560px; position: absolute; top: calc(65% - 322px); @@ -16,26 +19,22 @@ color:#fff; margin-left: -600px; z-index:2002 ; - font-size:20px; } -.unchoose{ - display: none; +.content{ + font-size:20px; } .jump{ - position: absolute; width:80px; background-color: coral; font-size:16px; color:#fff; padding: 10px 20px; border-radius: 6px; - top: calc(50% - 322px); - left: 71%; + margin-bottom:20px; + margin-left:450px; text-align: center; - z-index:2002 ; } .Previous{ - position: absolute; width:100px; text-align: center; background-color: #4fbd51; @@ -43,20 +42,16 @@ color:#fff; padding: 10px 20px; border-radius: 6px; - top: calc(70% - 322px); - left: 71%; - z-index:2002 ; + margin-top: 20px; } .nextPage{ - position: absolute; width: 100px; background-color: #4fbd51; font-size:16px; color:#fff; padding: 10px 20px; border-radius: 6px; - top: calc(70% - 322px); - left: 80%; text-align: center; - z-index:2002 ; + margin-top:-65px; + margin-left:45px; } \ No newline at end of file diff --git a/frontend/web/assets/js/popUps.js b/frontend/web/assets/js/popUps.js index 4ae0d10..05efef8 100644 --- a/frontend/web/assets/js/popUps.js +++ b/frontend/web/assets/js/popUps.js @@ -1,20 +1,12 @@ $(function(){ $(".prompt").click(function(){ $(".model_wrap").show(); - $(".jump").removeClass("unchoose"); - $(".Previous").removeClass("unchoose"); - $(".nextPage").removeClass("unchoose"); - $(".content").eq(0).removeClass("unchoose"); + $(".model-bg").eq(0).removeClass("unchoose"); }); $(".nextPage").click(function () { - $(".content").each(function (i,item) { - console.log(i); - console.log(item); - if(!$(this).eq(i).toggleClass("unchoose")){ - $(this).eq(i).addClass("unchoose"); - $(this).eq(i+1).removeClass("unchoose"); - } + $(".model-bg").each(function (i,item) { + $(this).addClass("unchoose").eq(i).removeClass("unchoose"); }) }) }); \ No newline at end of file