diff --git a/components/yz-audio/audioBg.js b/components/yz-audio/audioBg.js
deleted file mode 100644
index 2ba42a4..0000000
--- a/components/yz-audio/audioBg.js
+++ /dev/null
@@ -1,80 +0,0 @@
-import {
- mapState,
- mapActions,
- mapMutations
-} from 'vuex'
-export const audios = {
- data() {
- return {}
- },
-
- computed: {
- ...mapState(['bgAudioMannager', 'isBgPlay']),
- },
-
- methods: {
- setAudio(obj) {
- this.bgAudioMannager.title = '录音音频';
- this.bgAudioMannager.src = obj.src
- this.bgAudioMannager.startTime = obj.currentTime
- },
-
- setAudioFunc() {
- this.bgAudioMannager.onCanplay(() => {
- console.log('可以播放');
- });
- this.bgAudioMannager.onStop(() => {
- console.log('停止播放');
- });
- this.bgAudioMannager.onPause(() => {
- console.log('暂停播放');
- // 设置当前暂停的视频播放位置
- // this.seek(this.bgAudioMannager.currentTime)
- // this.play()
- });
- this.bgAudioMannager.onEnded(() => {
- console.log('自然播放结束事件');
- });
-
- this.bgAudioMannager.onError((res) => {
- console.log(res.errMsg);
- console.log(res.errCode);
- });
-
- this.bgAudioMannager.onTimeUpdate(() => {
- this.duration = this.bgAudioMannager.duration;
- this.currentTime = this.bgAudioMannager.currentTime;
- this.$emit('timeUpdate', {
- duration: this.bgAudioMannager.duration,
- currentTime: this.bgAudioMannager.currentTime
- })
- });
- },
-
- // 背景音频暂停
- audioPause() {
- this.bgAudioMannager.pause()
- },
-
- // 背景音频播放
- audioPlay() {
- this.pause()
- this.bgAudioMannager.play()
- },
-
- //背景音频指定秒数播放
- audioSeek(t) {
- this.bgAudioMannager.seek(t)
- },
-
- // 停止背景音频播放
- stopAduio() {
- if (this.bgAudioMannager != null) {
- this.bgAudioMannager.pause()
- if (this.bgAudioMannager.src != '') {
- this.bgAudioMannager.src = ''
- }
- }
- }
- }
-}
diff --git a/components/yz-audio/index.scss b/components/yz-audio/index.scss
deleted file mode 100644
index 53c375b..0000000
--- a/components/yz-audio/index.scss
+++ /dev/null
@@ -1,119 +0,0 @@
-@mixin textoverflow() {
- display: -webkit-box;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 1;
-}
-@keyframes rowup {
- 0% {
- -webkit-transform: translate(-50%, -50%) rotate(0deg);
- transform-origin: center center;
- }
-
- 100% {
- -webkit-transform: translate(-50%, -50%) rotate(360deg);
- transform-origin: center center;
- }
-}
-.imt-audio{
- position:relative;
- width: 100%;
- display: flex;
- box-sizing: border-box;
- background: #fff;
- overflow: hidden;
-
- .top {
- width: 140rpx;
- position: relative;
- }
-
- .audio-wrapper {
- display: flex;
- flex-direction: column;
- flex: 1;
- color: #fff;
- margin-left: 20rpx;
- }
- .slidebox {
- display: flex;
- justify-content: space-between;
- width: 96%;
- }
- /deep/ .uni-slider-tap-area {
- padding: 0;
- }
- /deep/ .uni-slider-wrapper {
- min-height: 0;
- }
- /deep/ .uni-slider-handle-wrapper {
- height: 6px;
- }
- .audio-slider {
- padding-top: 10rpx;
- margin-left: 150rpx;
- position: absolute;
- bottom: 40rpx;
- width: 75vw;
- left: 0;
- padding: 0;
- }
-
-
- // .cover {
- // width: 120rpx;
- // height: 120rpx;
- // box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
- // position: absolute;
- // top: 50%;
- // left: 50%;
- // transform: translate(-50%, -50%);
- // animation-fill-mode: forwards;
- // -webkit-animation-fill-mode: forwards;
- // }
-
- .play {
- width: 48rpx;
- height: 48rpx;
- z-index: 99;
- background: rgba(0, 0, 0, 0.4);
- border-radius: 50%;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- &.loading{
- width: 48rpx;
- height: 48rpx;
- animation: rotating_theme3 2s linear infinite;
- }
- }
-}
-
-@keyframes rotating {
- 0% {
- transform: rotateZ(0deg)
- }
- 100% {
- transform: rotateZ(360deg)
- }
-}
-@keyframes rotating_theme3 {
- 0% {
- transform: translate(-50%, -50%) rotateZ(0deg)
- }
- 100% {
- transform: translate(-50%, -50%) rotateZ(360deg)
- }
-}
-
-.hItem
-{
- margin-left: 16rpx;
-}
-
-.extrButton
-{
- font-size: 36rpx;
-}
\ No newline at end of file
diff --git a/components/yz-audio/static/backimg.png b/components/yz-audio/static/backimg.png
deleted file mode 100644
index fef382f..0000000
Binary files a/components/yz-audio/static/backimg.png and /dev/null differ
diff --git a/components/yz-audio/static/bg.png b/components/yz-audio/static/bg.png
deleted file mode 100644
index b49474e..0000000
Binary files a/components/yz-audio/static/bg.png and /dev/null differ
diff --git a/components/yz-audio/static/bg_act.png b/components/yz-audio/static/bg_act.png
deleted file mode 100644
index 01b1d6c..0000000
Binary files a/components/yz-audio/static/bg_act.png and /dev/null differ
diff --git a/components/yz-audio/static/loading.png b/components/yz-audio/static/loading.png
deleted file mode 100644
index edd7142..0000000
Binary files a/components/yz-audio/static/loading.png and /dev/null differ
diff --git a/components/yz-audio/static/loading2.png b/components/yz-audio/static/loading2.png
deleted file mode 100644
index 3483c9d..0000000
Binary files a/components/yz-audio/static/loading2.png and /dev/null differ
diff --git a/components/yz-audio/static/pausebtn.png b/components/yz-audio/static/pausebtn.png
deleted file mode 100644
index f2bc86c..0000000
Binary files a/components/yz-audio/static/pausebtn.png and /dev/null differ
diff --git a/components/yz-audio/static/playbtn.png b/components/yz-audio/static/playbtn.png
deleted file mode 100644
index 3f51b61..0000000
Binary files a/components/yz-audio/static/playbtn.png and /dev/null differ
diff --git a/components/yz-audio/yz-audio.vue b/components/yz-audio/yz-audio.vue
deleted file mode 100644
index 9285a58..0000000
--- a/components/yz-audio/yz-audio.vue
+++ /dev/null
@@ -1,430 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{formatSeconds(currentTime)}}
-
-
-
- {{formatSeconds(duration)}}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/pages.json b/pages.json
index dfd6376..fd6c2e7 100644
--- a/pages.json
+++ b/pages.json
@@ -1,594 +1,589 @@
-{
- "easycom": {
- "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
- },
- //这个pages里只放这五个页面,新增页面时请对应的放到下面的分包里
- "pages": [{
- "path": "pages/index/guide",
- "style": {
- "navigationBarBackgroundColor": "#008EF2",
- "navigationBarTextStyle": "white",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "AI销讲助手",
- "navigationBarBackgroundColor": "#2671E2",
- "navigationBarTextStyle": "white",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/index/consumer/index",
- "style": {
- "navigationBarTitleText": "客户管理",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/index/customer",
- "style": {
- "navigationBarTitleText": "接待",
- "navigationBarBackgroundColor": "#2671E2",
- "navigationBarTextStyle": "white",
- "enablePullDownRefresh":true
- }
- }, {
- "path": "pages/index/learning",
- "style": {
- "navigationBarTitleText": "学习",
- "navigationBarBackgroundColor": "#2671E2",
- "navigationBarTextStyle": "white",
- "enablePullDownRefresh": true
- }
- }, {
- "path": "pages/index/personal",
- "style": {
- "navigationBarTitleText": "我的",
- "navigationBarBackgroundColor": "#F8F8F8",
- "navigationBarTextStyle": "black"
- }
- }
- ],
- //这下面是分包
- "subPackages": [{
- "root": "pages/login", //登录相关
- "name": "login",
- "pages": [{
- "path": "index",
- "style": {
- "navigationBarTitleText": "登录",
- "navigationBarBackgroundColor": "#2671E2",
- "navigationBarTextStyle": "white"
- }
- },
- {
- "path": "Verification",
- "style": {
- "navigationBarTitleText": "登录",
- "navigationBarBackgroundColor": "#2671E2",
- "navigationBarTextStyle": "white"
- // "navigationStyle": "custom"
- }
- },
- {
- "path": "yinzhongmalogin",
- "style": {
- "navigationBarTitleText": "验证码登录",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "Setthepassword",
- "style": {
- "navigationBarTitleText": "设置密码",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "Verifythelogin",
- "style": {
- "navigationBarTitleText": "验证码登录",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- }
-
-
-
- ]
- },
- {
- "root": "pages/mine", //个人中心
- "name": "mine",
- "pages": [{
- "path": "details",
- "style": {
- "navigationBarTitleText": "详情",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "details2",
- "style": {
- "navigationBarTitleText": "详情",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "calibration",
- "style": {
- "navigationBarTitleText": "校验",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "ScoringPlaylist",
- "style": {
- "navigationBarTitleText": "匹配标签",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
-
- {
- "path": "Myprofile",
- "style": {
- "navigationBarTitleText": "编辑资料",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "nickname",
- "style": {
- "navigationBarTitleText": "编辑昵称",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "signature",
- "style": {
- "navigationBarTitleText": "编辑签名",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "Changehepassword",
- "style": {
- "navigationBarTitleText": "修改密码",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "reception/addreception",
- "style": {
- "navigationBarTitleText": "新增接待",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "reception/consultant",
- "style": {
- "navigationBarTitleText": "选择顾问",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "consultanonduty/index",
- "style": {
- "navigationBarTitleText": "值班顾问",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black",
- "enablePullDownRefresh":true
- }
- },
- {
- "path": "equipment/index",
- "style": {
- "navigationBarTitleText": "设备管理",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black",
- "enablePullDownRefresh": true
- }
- }
- ,{
- "path" : "messageList",
- "style" :
- {
- "navigationBarTitleText": "消息",
- "navigationBarBackgroundColor": "#2671E2",
- "navigationBarTextStyle": "white"
- }
-
- }
- ,{
- "path" : "daily/dailyList",
- "style" :
- {
- "navigationBarTitleText": "日报",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
-
- }
- ,{
- "path" : "daily/dailyDetail",
- "style" :
- {
- "navigationBarTitleText": "日报详情",
- "navigationBarBackgroundColor": "#2671E2",
- "navigationBarTextStyle": "white"
- }
-
- }
- ,{
- "path" : "selectBuilding",
- "style" :
- {
- "navigationBarTitleText": "切换项目",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
-
- }
- ,{
- "path" : "registerCode",
- "style" :
- {
- "navigationBarTitleText": "访客登记码",
- "navigationBarBackgroundColor": "#2671E2",
- "navigationBarTextStyle": "white"
- }
-
- }
- ,{
- "path" : "registerForm",
- "style" :
- {
- "navigationBarTitleText": "访客登记表",
- "navigationBarBackgroundColor": "#2671E2",
- "navigationBarTextStyle": "white"
- }
-
- },
- {
- "path" : "registerResult",
- "style" :
- {
- "navigationBarTitleText": "访客登记表",
- "navigationBarBackgroundColor": "#2671E2",
- "navigationBarTextStyle": "white"
- }
-
- }
- ,{
- "path" : "messageDetail",
- "style" :
- {
- "navigationBarTitleText": "升级公告",
- "navigationBarBackgroundColor": "#2671E2",
- "navigationBarTextStyle": "white"
- }
-
- }
- ]
- },
- {
- "root": "pages/learning", //学习
- "name": "learning",
- "pages": [{
- "path": "Thefulltext/index",
- "style": {
- "navigationBarTitleText": "全文学习",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "Thefulltext/index2",
- "style": {
- "navigationBarTitleText": "全文学习",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "Thefulltext/search",
- "style": {
- "navigationBarTitleText": "搜索",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "Keywordsearch",
- "style": {
- "navigationBarTitleText": "搜索",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "Equinoctiallearning",
- "style": {
- "navigationBarTitleText": "分点学习",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "Equinoctial/index",
- "style": {
- "navigationBarTitleText": "分点学习",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "Equinoctial/index2",
- "style": {
- "navigationBarTitleText": "分点学习",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- }
-
-
- ]
- },
- {
- "root": "pages/center", //中心逻辑的模块都放到这里
- "name": "center",
- "pages": [{
- "path": "Piabodata/index",
- "style": {
- "navigationBarTitleText": "销讲数据",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black",
- "enablePullDownRefresh":true
- }
- },
- {
- "path": "Piabodata/Groupcontrast",
- "style": {
- "navigationBarTitleText": "集团对比",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black",
- "enablePullDownRefresh":true
- }
- },
- {
- "path": "Piabodata/Theteamcompared",
- "style": {
- "navigationBarTitleText": "团队对比",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black",
- "enablePullDownRefresh":true
- }
- },
- {
- "path": "Piabodata/selectTeam",
- "style": {
- "navigationBarTitleText": "选择团队",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "Piabodata/selectGroup",
- "style": {
- "navigationBarTitleText": "选择项目",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "Piabodata/Userinsightinto",
- "style": {
- "navigationBarTitleText": "客户画像",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black",
- "enablePullDownRefresh":true
- }
- },
- {
- "path": "Piabodata/TrendAnalysis",
- "style": {
- "navigationBarTitleText": "趋势分析",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black",
- "enablePullDownRefresh":true
- }
- },
- {
- "path": "Piabodata/StaffAnalysis",
- "style": {
- "navigationBarTitleText": "员工分析",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black",
- "enablePullDownRefresh":true
- }
- },
-
- {
- "path": "Piabodata/Customerportrait/Detailsofthesearch",
- "style": {
- "navigationBarTitleText": "搜索",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "Piabodata/Customerportrait/Receivedetailabout",
- "style": {
- "navigationBarTitleText": "详情",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "Piabodata/Customerportrait/Receivingrecords",
- "style": {
- "navigationBarTitleText": "列表",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "Piabodata/Employeesstatistics",
- "style": {
- "navigationBarTitleText": "顾问排名",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black",
- "enablePullDownRefresh":true
- }
- },
-
- {
- "path": "records/index",
- "style": {
- "navigationBarTitleText": "接待记录",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "records/recordSearch",
- "style": {
- "navigationBarTitleText": "搜索",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "prohibited/index",
- "style": {
- "navigationBarTitleText": "违禁记录",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "consumer/index",
- "style": {
- "navigationBarTitleText": "客户管理",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "consumer/consumerSearch",
- "style": {
- "navigationBarTitleText": "搜索",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "consumer/consumerDetail",
- "style": {
- "navigationBarTitleText": "客户详情",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "consumer/remind",
- "style": {
- "navigationBarTitleText": "添加提醒",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "consumer/edit",
- "style": {
- "navigationBarTitleText": "编辑客户",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "consumer/newFollowup/newFollowup",
- "style": {
- "navigationBarTitleText": "写跟进",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTextStyle": "black"
- }
- }
- ]
- }
- ],
-
- "permission": {
- "scope.userLocation": {
- "desc": "你的位置信息将用于小程序位置接口的效果展示"
- }
- },
- "networkTimeout": {
- "request": 10000,
- "downloadFile": 10000
- },
- "debug": false,
- "tabBar": {
- "color": "#8E8E8E",
- "selectedColor": "#1296db",
- "borderStyle": "white",
- "list": [{
- "pagePath": "pages/index/customer",
- "iconPath": "/static/images/tabBar/customer.png",
- "selectedIconPath": "/static/images/tabBar/customerActive.png",
- "text": "接待"
- },
- {
- "pagePath": "pages/index/consumer/index",
- "iconPath": "/static/images/tabBar/kehu.png",
- "selectedIconPath": "/static/images/tabBar/kehu_act.png",
- "text": "客户"
- },
- {
- "pagePath": "pages/index/index",
- "iconPath": "/static/images/tabBar/works.png",
- "selectedIconPath": "/static/images/tabBar/worksActive.png",
- "text": "工作台"
- },
- {
- "pagePath": "pages/index/learning",
- "iconPath": "/static/images/tabBar/voice.png",
- "selectedIconPath": "/static/images/tabBar/voiceActive.png",
- "text": "学习"
- },
- {
- "pagePath": "pages/index/personal",
- "iconPath": "/static/images/tabBar/user.png",
- "selectedIconPath": "/static/images/tabBar/userActive.png",
- "text": "我的"
- }
- ]
- },
- "sitemapLocation": "sitemap.json",
- "globalStyle": {
- "backgroundColor": "#F6F6F6",
- "backgroundTextStyle": "dark",
- "navigationBarBackgroundColor": "#fff",
- "navigationBarTitleText": "AI销讲助手",
- "navigationBarTextStyle": "black"
- }
+{
+ "easycom": {
+ "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
+ },
+ //这个pages里只放这五个页面,新增页面时请对应的放到下面的分包里
+ "pages": [{
+ "path": "pages/index/guide",
+ "style": {
+ "navigationBarBackgroundColor": "#008EF2",
+ "navigationBarTextStyle": "white",
+ "navigationStyle": "custom"
+ }
+ },
+ {
+ "path": "pages/index/index",
+ "style": {
+ "navigationBarTitleText": "AI销讲助手",
+ "navigationBarBackgroundColor": "#2671E2",
+ "navigationBarTextStyle": "white",
+ "enablePullDownRefresh": true
+ }
+ },
+ {
+ "path": "pages/index/consumer/index",
+ "style": {
+ "navigationBarTitleText": "客户管理",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black",
+ "enablePullDownRefresh": true
+ }
+ },
+ {
+ "path": "pages/index/customer",
+ "style": {
+ "navigationBarTitleText": "接待",
+ "navigationBarBackgroundColor": "#2671E2",
+ "navigationBarTextStyle": "white",
+ "enablePullDownRefresh": true
+ }
+ }, {
+ "path": "pages/index/learning",
+ "style": {
+ "navigationBarTitleText": "学习",
+ "navigationBarBackgroundColor": "#2671E2",
+ "navigationBarTextStyle": "white",
+ "enablePullDownRefresh": true
+ }
+ }, {
+ "path": "pages/index/personal",
+ "style": {
+ "navigationBarTitleText": "我的",
+ "navigationBarBackgroundColor": "#F8F8F8",
+ "navigationBarTextStyle": "black"
+ }
+ }
+ ],
+ //这下面是分包
+ "subPackages": [{
+ "root": "pages/login", //登录相关
+ "name": "login",
+ "pages": [{
+ "path": "index",
+ "style": {
+ "navigationBarTitleText": "登录",
+ "navigationBarBackgroundColor": "#2671E2",
+ "navigationBarTextStyle": "white"
+ }
+ },
+ {
+ "path": "Verification",
+ "style": {
+ "navigationBarTitleText": "登录",
+ "navigationBarBackgroundColor": "#2671E2",
+ "navigationBarTextStyle": "white"
+ // "navigationStyle": "custom"
+ }
+ },
+ {
+ "path": "yinzhongmalogin",
+ "style": {
+ "navigationBarTitleText": "验证码登录",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "Setthepassword",
+ "style": {
+ "navigationBarTitleText": "设置密码",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "Verifythelogin",
+ "style": {
+ "navigationBarTitleText": "验证码登录",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ }
+
+
+
+ ]
+ },
+ {
+ "root": "pages/mine", //个人中心
+ "name": "mine",
+ "pages": [{
+ "path": "details",
+ "style": {
+ "navigationBarTitleText": "详情",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "details2",
+ "style": {
+ "navigationBarTitleText": "详情",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "calibration",
+ "style": {
+ "navigationBarTitleText": "校验",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "ScoringPlaylist",
+ "style": {
+ "navigationBarTitleText": "匹配标签",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+
+ {
+ "path": "Myprofile",
+ "style": {
+ "navigationBarTitleText": "编辑资料",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "nickname",
+ "style": {
+ "navigationBarTitleText": "编辑昵称",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "signature",
+ "style": {
+ "navigationBarTitleText": "编辑签名",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "Changehepassword",
+ "style": {
+ "navigationBarTitleText": "修改密码",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "reception/addreception",
+ "style": {
+ "navigationBarTitleText": "新增接待",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "reception/consultant",
+ "style": {
+ "navigationBarTitleText": "选择顾问",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "consultanonduty/index",
+ "style": {
+ "navigationBarTitleText": "值班顾问",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black",
+ "enablePullDownRefresh": true
+ }
+ },
+ {
+ "path": "equipment/index",
+ "style": {
+ "navigationBarTitleText": "设备管理",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black",
+ "enablePullDownRefresh": true
+ }
+ }, {
+ "path": "messageList",
+ "style": {
+ "navigationBarTitleText": "消息",
+ "navigationBarBackgroundColor": "#2671E2",
+ "navigationBarTextStyle": "white"
+ }
+
+ }, {
+ "path": "daily/dailyList",
+ "style": {
+ "navigationBarTitleText": "日报",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+
+ }, {
+ "path": "daily/dailyDetail",
+ "style": {
+ "navigationBarTitleText": "日报详情",
+ "navigationBarBackgroundColor": "#2671E2",
+ "navigationBarTextStyle": "white"
+ }
+
+ }, {
+ "path": "selectBuilding",
+ "style": {
+ "navigationBarTitleText": "切换项目",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+
+ }, {
+ "path": "registerCode",
+ "style": {
+ "navigationBarTitleText": "访客登记码",
+ "navigationBarBackgroundColor": "#2671E2",
+ "navigationBarTextStyle": "white"
+ }
+
+ }, {
+ "path": "registerForm",
+ "style": {
+ "navigationBarTitleText": "访客登记表",
+ "navigationBarBackgroundColor": "#2671E2",
+ "navigationBarTextStyle": "white"
+ }
+
+ },
+ {
+ "path": "registerResult",
+ "style": {
+ "navigationBarTitleText": "访客登记表",
+ "navigationBarBackgroundColor": "#2671E2",
+ "navigationBarTextStyle": "white"
+ }
+
+ }, {
+ "path": "messageDetail",
+ "style": {
+ "navigationBarTitleText": "升级公告",
+ "navigationBarBackgroundColor": "#2671E2",
+ "navigationBarTextStyle": "white"
+ }
+
+ }
+ ]
+ },
+ {
+ "root": "pages/learning", //学习
+ "name": "learning",
+ "pages": [{
+ "path": "Thefulltext/index",
+ "style": {
+ "navigationBarTitleText": "全文学习",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "Thefulltext/index2",
+ "style": {
+ "navigationBarTitleText": "全文学习",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "Thefulltext/search",
+ "style": {
+ "navigationBarTitleText": "搜索",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "Keywordsearch",
+ "style": {
+ "navigationBarTitleText": "搜索",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "Equinoctiallearning",
+ "style": {
+ "navigationBarTitleText": "分点学习",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "Equinoctial/index",
+ "style": {
+ "navigationBarTitleText": "分点学习",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "Equinoctial/index2",
+ "style": {
+ "navigationBarTitleText": "分点学习",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ }
+
+
+ ]
+ },
+ {
+ "root": "pages/center", //中心逻辑的模块都放到这里
+ "name": "center",
+ "pages": [{
+ "path": "Piabodata/index",
+ "style": {
+ "navigationBarTitleText": "销讲数据",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black",
+ "enablePullDownRefresh": true
+ }
+ },
+ {
+ "path": "Piabodata/Groupcontrast",
+ "style": {
+ "navigationBarTitleText": "集团对比",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black",
+ "enablePullDownRefresh": true
+ }
+ },
+ {
+ "path": "Piabodata/Theteamcompared",
+ "style": {
+ "navigationBarTitleText": "团队对比",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black",
+ "enablePullDownRefresh": true
+ }
+ },
+ {
+ "path": "Piabodata/selectTeam",
+ "style": {
+ "navigationBarTitleText": "选择团队",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "Piabodata/selectGroup",
+ "style": {
+ "navigationBarTitleText": "选择项目",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "Piabodata/Userinsightinto",
+ "style": {
+ "navigationBarTitleText": "客户画像",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black",
+ "enablePullDownRefresh": true
+ }
+ },
+ {
+ "path": "Piabodata/TrendAnalysis",
+ "style": {
+ "navigationBarTitleText": "趋势分析",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black",
+ "enablePullDownRefresh": true
+ }
+ },
+ {
+ "path": "Piabodata/StaffAnalysis",
+ "style": {
+ "navigationBarTitleText": "员工分析",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black",
+ "enablePullDownRefresh": true
+ }
+ },
+
+ {
+ "path": "Piabodata/Customerportrait/Detailsofthesearch",
+ "style": {
+ "navigationBarTitleText": "搜索",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "Piabodata/Customerportrait/Receivedetailabout",
+ "style": {
+ "navigationBarTitleText": "详情",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "Piabodata/Customerportrait/Receivingrecords",
+ "style": {
+ "navigationBarTitleText": "列表",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "Piabodata/Employeesstatistics",
+ "style": {
+ "navigationBarTitleText": "顾问排名",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black",
+ "enablePullDownRefresh": true
+ }
+ },
+
+ {
+ "path": "records/index",
+ "style": {
+ "navigationBarTitleText": "接待记录",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black",
+ "enablePullDownRefresh": true
+ }
+ },
+ {
+ "path": "records/recordSearch",
+ "style": {
+ "navigationBarTitleText": "搜索",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "prohibited/index",
+ "style": {
+ "navigationBarTitleText": "违禁记录",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black",
+ "enablePullDownRefresh": true
+ }
+ },
+ {
+ "path": "consumer/index",
+ "style": {
+ "navigationBarTitleText": "客户管理",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "consumer/consumerSearch",
+ "style": {
+ "navigationBarTitleText": "搜索",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "consumer/consumerDetail",
+ "style": {
+ "navigationBarTitleText": "客户详情",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "consumer/remind",
+ "style": {
+ "navigationBarTitleText": "添加提醒",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "consumer/edit",
+ "style": {
+ "navigationBarTitleText": "编辑客户",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ },
+ {
+ "path": "consumer/newFollowup/newFollowup",
+ "style": {
+ "navigationBarTitleText": "写跟进",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTextStyle": "black"
+ }
+ }
+ ]
+ }
+ ],
+
+ "permission": {
+ "scope.userLocation": {
+ "desc": "你的位置信息将用于小程序位置接口的效果展示"
+ }
+ },
+ "networkTimeout": {
+ "request": 10000,
+ "downloadFile": 10000
+ },
+ "debug": false,
+ "tabBar": {
+ "color": "#8E8E8E",
+ "selectedColor": "#1296db",
+ "borderStyle": "white",
+ "list": [{
+ "pagePath": "pages/index/customer",
+ "iconPath": "/static/images/tabBar/customer.png",
+ "selectedIconPath": "/static/images/tabBar/customerActive.png",
+ "text": "接待"
+ },
+ {
+ "pagePath": "pages/index/consumer/index",
+ "iconPath": "/static/images/tabBar/kehu.png",
+ "selectedIconPath": "/static/images/tabBar/kehu_act.png",
+ "text": "客户"
+ },
+ {
+ "pagePath": "pages/index/index",
+ "iconPath": "/static/images/tabBar/works.png",
+ "selectedIconPath": "/static/images/tabBar/worksActive.png",
+ "text": "工作台"
+ },
+ {
+ "pagePath": "pages/index/learning",
+ "iconPath": "/static/images/tabBar/voice.png",
+ "selectedIconPath": "/static/images/tabBar/voiceActive.png",
+ "text": "学习"
+ },
+ {
+ "pagePath": "pages/index/personal",
+ "iconPath": "/static/images/tabBar/user.png",
+ "selectedIconPath": "/static/images/tabBar/userActive.png",
+ "text": "我的"
+ }
+ ]
+ },
+ "sitemapLocation": "sitemap.json",
+ "globalStyle": {
+ "backgroundColor": "#F6F6F6",
+ "backgroundTextStyle": "dark",
+ "navigationBarBackgroundColor": "#fff",
+ "navigationBarTitleText": "AI销讲助手",
+ "navigationBarTextStyle": "black"
+ },
+ "condition" : { //模式配置,仅开发期间生效
+ "current": 0, //当前激活的模式(list 的索引项)
+ "list": [
+ {
+ "name": "访客登记表", //模式名称
+ "path": "pages/mine/registerForm", //启动页面,必选
+ "query": "" //启动参数,在页面的onLoad函数里面得到
+ }
+ ]
+ }
}
diff --git a/pages/center/Piabodata/index.vue b/pages/center/Piabodata/index.vue
index 5bcf54f..240ee69 100644
--- a/pages/center/Piabodata/index.vue
+++ b/pages/center/Piabodata/index.vue
@@ -84,8 +84,14 @@
-->
{{danwei}}
-
+
+
+
+
+
+
@@ -104,8 +110,8 @@
单位(%)
-
+
@@ -130,7 +136,7 @@
-->
单位(%)
-
@@ -327,6 +333,15 @@
commonly6: false,
},
+ lineOpts: {
+ yAxis: {
+ data: [{
+ max: 100,
+ min: 0,
+ }]
+ }
+ },
+
opts: {
yAxis: {
data: [{
@@ -362,21 +377,21 @@
// 获取维度
this.getindexZxl()
},
- onPullDownRefresh(){
+ onPullDownRefresh() {
// 获取员工
this.getStaffList()
// 获取团队
this.getSectionList()
// 获取团队是否显示权限
-
+
// 获取简报
this.getReport()
// 获取接待趋势
this.getRtrent()
// 获取维度
this.getindexZxl()
- setTimeout(function () {
- uni.stopPullDownRefresh();
+ setTimeout(function() {
+ uni.stopPullDownRefresh();
}, 1000);
},
methods: {
diff --git a/pages/mine/equipment/index.vue b/pages/mine/equipment/index.vue
index b665037..a208f40 100644
--- a/pages/mine/equipment/index.vue
+++ b/pages/mine/equipment/index.vue
@@ -63,7 +63,7 @@
待上传
- {{ item.fileCount }}条
+ {{ item.fileCount }}条
0
diff --git a/pages/mine/registerForm.vue b/pages/mine/registerForm.vue
index 7e5521e..81dd73f 100644
--- a/pages/mine/registerForm.vue
+++ b/pages/mine/registerForm.vue
@@ -15,7 +15,7 @@
-
+
性别
diff --git a/static/images/Customer.png b/static/images/Customer.png
index 397ad52..7bf3b04 100644
Binary files a/static/images/Customer.png and b/static/images/Customer.png differ
diff --git a/static/images/Shutdown.png b/static/images/Shutdown.png
index 08ea89a..b71f967 100644
Binary files a/static/images/Shutdown.png and b/static/images/Shutdown.png differ
diff --git a/static/images/Thtapedrive1.png b/static/images/Thtapedrive1.png
index 8225bd9..373363f 100644
Binary files a/static/images/Thtapedrive1.png and b/static/images/Thtapedrive1.png differ
diff --git a/static/images/Thtapedrive2.png b/static/images/Thtapedrive2.png
index 8faa334..2b81fc1 100644
Binary files a/static/images/Thtapedrive2.png and b/static/images/Thtapedrive2.png differ
diff --git a/static/images/Underimg.png b/static/images/Underimg.png
index 20fc66b..6e451e7 100644
Binary files a/static/images/Underimg.png and b/static/images/Underimg.png differ
diff --git a/static/images/add.png b/static/images/add.png
index d6f66e8..714cf45 100644
Binary files a/static/images/add.png and b/static/images/add.png differ
diff --git a/static/images/allimg.png b/static/images/allimg.png
index 44fb636..4068770 100644
Binary files a/static/images/allimg.png and b/static/images/allimg.png differ
diff --git a/static/images/arrow-right.png b/static/images/arrow-right.png
index 3bc73a0..61f5dfc 100644
Binary files a/static/images/arrow-right.png and b/static/images/arrow-right.png differ
diff --git a/static/images/arrow.png b/static/images/arrow.png
index 33c6491..559a75b 100644
Binary files a/static/images/arrow.png and b/static/images/arrow.png differ
diff --git a/static/images/audioinfo1.png b/static/images/audioinfo1.png
index 5c6e2de..37852c5 100644
Binary files a/static/images/audioinfo1.png and b/static/images/audioinfo1.png differ
diff --git a/static/images/audioinfo2.png b/static/images/audioinfo2.png
index 0089611..8af7133 100644
Binary files a/static/images/audioinfo2.png and b/static/images/audioinfo2.png differ
diff --git a/static/images/audioinfo3.png b/static/images/audioinfo3.png
index 8455a8f..a63dd4c 100644
Binary files a/static/images/audioinfo3.png and b/static/images/audioinfo3.png differ
diff --git a/static/images/audioinfo4.png b/static/images/audioinfo4.png
index cd8173b..b0c7316 100644
Binary files a/static/images/audioinfo4.png and b/static/images/audioinfo4.png differ
diff --git a/static/images/backTop.png b/static/images/backTop.png
index 502d1df..58ee9bb 100644
Binary files a/static/images/backTop.png and b/static/images/backTop.png differ
diff --git a/static/images/battery.png b/static/images/battery.png
index 9c190b3..065ffcf 100644
Binary files a/static/images/battery.png and b/static/images/battery.png differ
diff --git a/static/images/biaoqianya.png b/static/images/biaoqianya.png
index 1b0c16c..dd94e4c 100644
Binary files a/static/images/biaoqianya.png and b/static/images/biaoqianya.png differ
diff --git a/static/images/bishang.png b/static/images/bishang.png
index 24f044c..d37dcf2 100644
Binary files a/static/images/bishang.png and b/static/images/bishang.png differ
diff --git a/static/images/building.png b/static/images/building.png
index bb50185..ad281f2 100644
Binary files a/static/images/building.png and b/static/images/building.png differ
diff --git a/static/images/cus1.png b/static/images/cus1.png
index d518ed1..ca19d6e 100644
Binary files a/static/images/cus1.png and b/static/images/cus1.png differ
diff --git a/static/images/cus2.png b/static/images/cus2.png
index 13e5373..ea1faea 100644
Binary files a/static/images/cus2.png and b/static/images/cus2.png differ
diff --git a/static/images/cus3.png b/static/images/cus3.png
index f4b38ac..f5dabf4 100644
Binary files a/static/images/cus3.png and b/static/images/cus3.png differ
diff --git a/static/images/cus4.png b/static/images/cus4.png
index 95149c7..93ba5a7 100644
Binary files a/static/images/cus4.png and b/static/images/cus4.png differ
diff --git a/static/images/cus5.png b/static/images/cus5.png
index 0d00bdd..d339395 100644
Binary files a/static/images/cus5.png and b/static/images/cus5.png differ
diff --git a/static/images/cus6.png b/static/images/cus6.png
index 4c55324..7bfd5dc 100644
Binary files a/static/images/cus6.png and b/static/images/cus6.png differ
diff --git a/static/images/qushi.png b/static/images/qushi.png
index d0727d1..0bfedae 100644
Binary files a/static/images/qushi.png and b/static/images/qushi.png differ
diff --git a/static/images/ranking1.png b/static/images/ranking1.png
index b208794..1820deb 100644
Binary files a/static/images/ranking1.png and b/static/images/ranking1.png differ
diff --git a/static/images/ranking2.png b/static/images/ranking2.png
index eba4ce5..6420d1c 100644
Binary files a/static/images/ranking2.png and b/static/images/ranking2.png differ
diff --git a/static/images/ranking3.png b/static/images/ranking3.png
index 7ff27bf..5f7d7dc 100644
Binary files a/static/images/ranking3.png and b/static/images/ranking3.png differ
diff --git a/static/images/rankingguwen.png b/static/images/rankingguwen.png
index 055736c..67d97ba 100644
Binary files a/static/images/rankingguwen.png and b/static/images/rankingguwen.png differ
diff --git a/static/images/rate-checked.png b/static/images/rate-checked.png
index 8c1bf3e..b735839 100644
Binary files a/static/images/rate-checked.png and b/static/images/rate-checked.png differ
diff --git a/static/images/rate-nocheck.png b/static/images/rate-nocheck.png
index f6bb6e9..bedba83 100644
Binary files a/static/images/rate-nocheck.png and b/static/images/rate-nocheck.png differ
diff --git a/static/images/reg.png b/static/images/reg.png
index 6eed5a8..363361d 100644
Binary files a/static/images/reg.png and b/static/images/reg.png differ
diff --git a/static/images/reverse.png b/static/images/reverse.png
index 4aff597..4be567c 100644
Binary files a/static/images/reverse.png and b/static/images/reverse.png differ
diff --git a/static/images/right.png b/static/images/right.png
index 0fe4ed0..587c47f 100644
Binary files a/static/images/right.png and b/static/images/right.png differ
diff --git a/static/images/righttochoose.png b/static/images/righttochoose.png
index b8ea7e3..2eb4692 100644
Binary files a/static/images/righttochoose.png and b/static/images/righttochoose.png differ
diff --git a/static/images/screen.png b/static/images/screen.png
index a96ca98..d38cca3 100644
Binary files a/static/images/screen.png and b/static/images/screen.png differ
diff --git a/static/images/scuess.png b/static/images/scuess.png
index 6a19182..4bf03a7 100644
Binary files a/static/images/scuess.png and b/static/images/scuess.png differ
diff --git a/static/images/search.png b/static/images/search.png
index 02d37f8..84e403b 100644
Binary files a/static/images/search.png and b/static/images/search.png differ
diff --git a/static/images/setting.png b/static/images/setting.png
index be2e095..9e9445d 100644
Binary files a/static/images/setting.png and b/static/images/setting.png differ
diff --git a/static/images/signal0.png b/static/images/signal0.png
index 113fa1a..933dda8 100644
Binary files a/static/images/signal0.png and b/static/images/signal0.png differ
diff --git a/static/images/signal1.png b/static/images/signal1.png
index 39ba4da..f99e5f1 100644
Binary files a/static/images/signal1.png and b/static/images/signal1.png differ
diff --git a/static/images/signal2.png b/static/images/signal2.png
index 0285d3c..81fcc67 100644
Binary files a/static/images/signal2.png and b/static/images/signal2.png differ
diff --git a/static/images/signal3.png b/static/images/signal3.png
index 0ba1d94..a12cfc6 100644
Binary files a/static/images/signal3.png and b/static/images/signal3.png differ
diff --git a/static/images/signal4.png b/static/images/signal4.png
index 9d2225a..09c1fe4 100644
Binary files a/static/images/signal4.png and b/static/images/signal4.png differ
diff --git a/static/images/signal5.png b/static/images/signal5.png
index 248d97b..197eca3 100644
Binary files a/static/images/signal5.png and b/static/images/signal5.png differ
diff --git a/static/images/studyhot.png b/static/images/studyhot.png
index 480b6b0..3b85b13 100644
Binary files a/static/images/studyhot.png and b/static/images/studyhot.png differ
diff --git a/static/images/testimg.png b/static/images/testimg.png
index e9a77d6..cbc828e 100644
Binary files a/static/images/testimg.png and b/static/images/testimg.png differ
diff --git a/static/images/time.png b/static/images/time.png
index d966f7a..8f2d130 100644
Binary files a/static/images/time.png and b/static/images/time.png differ
diff --git a/static/images/tuandui.png b/static/images/tuandui.png
index 8317257..1269836 100644
Binary files a/static/images/tuandui.png and b/static/images/tuandui.png differ
diff --git a/static/images/yinghu.png b/static/images/yinghu.png
index 3e0fd94..a809654 100644
Binary files a/static/images/yinghu.png and b/static/images/yinghu.png differ
diff --git a/static/images/zhengkai.png b/static/images/zhengkai.png
index 9c577c0..c979b74 100644
Binary files a/static/images/zhengkai.png and b/static/images/zhengkai.png differ
diff --git a/utils/domain.js b/utils/domain.js
index 1819f25..82c9a97 100644
--- a/utils/domain.js
+++ b/utils/domain.js
@@ -1,4 +1,4 @@
-// const base = 'http://39.97.167.65' ;// 测试站
+// const base = 'http://81.70.55.170:9090' ;// 测试站
// const base = 'http://8kdmng.natappfree.cc' ;// 佳豪
// const base = 'http://192.168.31.134:9999' ;// 佳豪
// const base = 'http://192.168.31.86:9999' ;// 胜浩