system-phone 1.2.127 → 1.2.128

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
File without changes
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "system-phone",
3
- "version": "1.2.127",
3
+ "version": "1.2.128",
4
4
  "description": "手机模块 前端组件",
5
5
  "author": "何宁社 <524395609@qq.com>",
6
6
  "license": "ISC",
@@ -1,185 +1,187 @@
1
- <template>
2
- <div style="height: 7%">
3
- <tools-page :need-back="!isMenu" :title="titleName" @back="back('返回')" > </tools-page>
4
- </div>
5
- <div id="app" :class="{'auto':isMenu,'app-height':!isMenu}">
6
- <div class="row" style="overflow-y: scroll;">
7
- <route v-ref:route> </route>
8
- </div>
9
- <tab-bar @select-item="onClickTabBarItem" v-show="isMenu">
10
- </tab-bar>
11
- </div>
12
- <modal v-if="showFile" :show.sync="showFile" v-ref:modal :backdrop="false" title="业务提醒">
13
- <header slot="modal-header" class="modal-header">
14
- <h4 class="modal-title">业务提醒</h4>
15
- </header>
16
- <article slot="modal-body" class="modal-body">
17
- <div class="form-group" style="text-align: center">
18
- 安检代办:{{result.safe[0].safenum}}条,其中预约单{{result.safeorder[0].safeyuyuenum}}条 <br/>
19
- 维修代办:{{result.tel[0].telnum}}条,其中预约单{{result.telorder[0].telyuyuenum}}条<br/>
20
- 报建代办:{{result.apply[0].applynum}}条,其中预约单{{result.applyorder[0].applyyuyuenum}}条<br/>
21
- </div>
22
- </article>
23
- <footer slot="modal-footer" class="modal-footer">
24
- <button type="button" @click="closeFile" style="background-color: limegreen;color: white">确定</button>
25
- </footer>
26
- </modal>
27
- </template>
28
-
29
- <script>
30
-
31
- import {HttpResetClass} from "vue-client";
32
- import Vue from 'vue'
33
- export default {
34
- title: 'app',
35
- data: function () {
36
- return {
37
- item: 0,
38
- isMenu:true,
39
- beforeName:'主界面',
40
- titleName:'待办工作',
41
- backthis:'',
42
- safe:false,
43
- showFile:false,
44
- beforetabs:[],
45
- iftabbar:'',
46
- result:[]
47
- }
48
- },
49
- ready(){
50
- let zhi=this.$appdata.getSingleValue('是否开启代办提醒')
51
- if(zhi=='是'){
52
- console.log("99999",Vue.user)
53
- new HttpResetClass().load('post',`${this.$androidUtil.getProxyUrl()}/rs/logic/getModuleUpcoming`,{
54
- id:Vue.user.id,
55
- name:Vue.user.name,
56
- orgid:Vue.user.orgid
57
- }).then(res=>{
58
- console.log("888888===>"+JSON.stringify(res.data))
59
- this.result = res.data
60
- this.showFile=true
61
- // this.$showMessage(`你有${result.safe[0].safenum}条需要处理的安检待办业务,<br/>
62
- // ${result.safeorder[0].safeyuyuenum}条需要处理的安检预约业务,<br/>
63
- // ${result.tel[0].telnum}条需要处理的维修待办业务,<br/>
64
- // ${result.telorder[0].telyuyuenum}条需要处理的维修预约业务,<br/>
65
- // ${result.applyorder[0].applyyuyuenum}条需要处理的报建预约业务,<br/>
66
- // ${result.apply[0].applynum}条需要处理的报建待办业务`)
67
- })
68
- }
69
- },
70
- methods: {
71
- closeFile(){
72
- this.showFile=false
73
- },
74
- back (flag){
75
- if(this.safe && flag == '返回' ){
76
- this.$showMessage('此返回所录入内容将无法找回!', ['confirm', 'cancel']).then((res) => {
77
- if (res === 'confirm') {
78
- //this.safe = false 返回父页面后不能修改父级页面定义的 是否返回提示
79
- this.delback()
80
- this.backthis.$back()
81
- this.closeAndDelAudio()
82
- }
83
- })
84
- }else{
85
- this.delback()
86
- //this.safe = false 返回父页面后不能修改父级页面定义的 是否返回提示
87
- this.backthis.$back()
88
- }
89
- },
90
- delback(){
91
- // 先确认出 前一个组件的名字
92
- var title = this.beforeName
93
- var beforetitle = '主界面'
94
- var j = -1
95
- for(var i = 0;i<this.beforetabs.length;i++){
96
- if(this.beforetabs[i].titleName == title){
97
- beforetitle = this.beforetabs[i].beforeName
98
- this.backthis =this.beforetabs[i].backthis
99
- this.safe = this.beforetabs[i].safe
100
- j = i
101
- break;
102
- }
103
- }
104
- this.beforetabs.splice(j + 1, 1)
105
- this.beforeName = beforetitle
106
- this.titleName = title
107
- // 判断是否 显示底层导航
108
- if(this.iftabbar == this.titleName){
109
- this.isMenu = true
110
- }
111
- },
112
- onClickTabBarItem(titlefg) {
113
- var param = titlefg.link
114
- if(titlefg.name == '退出系统'){
115
- this.$showMessage('即将返回登陆界面!', ['confirm', 'cancel']).then((res) => {
116
- if (res === 'confirm') {
117
- this.$androidUtil.setPreference('f_repairman_id', 'x')
118
- this.$androidUtil.setPreference('f_repairman_name', 'x')
119
- this.$back()
120
- }
121
- })
122
- }else{
123
- if(this.beforeName == titlefg.name){
124
- return
125
- }
126
- this.titleName = titlefg.name
127
- this.beforeName = titlefg.name
128
- let data = {
129
- sourcet: '竖屏'
130
- }
131
- // if(titlefg.name == '待办工单'){
132
- // param = param+'V'
133
- // }
134
- this.$refs.route.init(param,data)
135
- }
136
- },
137
- closeAndDelAudio() {
138
- console.log("停止无限制录音")
139
- HostApp.startOrStopAudioClip("-----","停止录音")
140
- }
141
- },
142
- events: {
143
- 'gotoson': function (prpdata) {
144
- // 事件回调内的 `this` 自动绑定到注册它的实例上
145
- // safe 返回事件是否进行判断后再返回
146
- // 每进入一次,beforetabs 数组添加 返回 删除
147
- this.backthis = prpdata._this
148
- this.safe = prpdata.safe
149
- this.isMenu = false
150
- // 记录本次跳转
151
- var beforedata = {
152
- beforeName: this.titleName,
153
- titleName: prpdata.title,
154
- backthis:prpdata._this,
155
- safe:prpdata.safe
156
- }
157
- this.beforetabs.push(beforedata)
158
- if( this.beforetabs.length == 1){
159
- this.iftabbar = beforedata.beforeName
160
- }
161
- // 写入跳转后 前后组件名字
162
- this.beforeName = this.titleName
163
- this.titleName = prpdata.title
164
-
165
- console.log('进入子组件,通知外层组件,我已经进入')
166
- },
167
- 'confirm': function () {
168
- // 提交处理返回事件
169
- this.back('提交')
170
- },
171
- 'backarrdel': function () {
172
- this.delback()
173
- },
174
- 'gologin': function () {
175
- this.beforetabs = []
176
- this.$back()
177
- }
178
- }
179
- }
180
- </script>
181
- <style scoped>
182
- .app-height{
183
- height: 93%;
184
- }
185
- </style>
1
+ <template>
2
+ <div style="height: 7%">
3
+ <tools-page style="z-index: 9999" :need-back="!isMenu" :title="titleName" @back="back('返回')" > </tools-page>
4
+ </div>
5
+ <div id="app" :class="{'auto':isMenu,'app-height':!isMenu}">
6
+ <div class="row" style="height: 100vh">
7
+ <div style="overflow-y: scroll">
8
+ <route v-ref:route> </route>
9
+ </div>
10
+ </div>
11
+ <tab-bar @select-item="onClickTabBarItem" v-show="isMenu">
12
+ </tab-bar>
13
+ </div>
14
+ <modal v-if="showFile" :show.sync="showFile" v-ref:modal :backdrop="false" title="业务提醒">
15
+ <header slot="modal-header" class="modal-header">
16
+ <h4 class="modal-title">业务提醒</h4>
17
+ </header>
18
+ <article slot="modal-body" class="modal-body">
19
+ <div class="form-group" style="text-align: center">
20
+ 安检代办:{{result.safe[0].safenum}}条,其中预约单{{result.safeorder[0].safeyuyuenum}}条 <br/>
21
+ 维修代办:{{result.tel[0].telnum}}条,其中预约单{{result.telorder[0].telyuyuenum}}条<br/>
22
+ 报建代办:{{result.apply[0].applynum}}条,其中预约单{{result.applyorder[0].applyyuyuenum}}条<br/>
23
+ </div>
24
+ </article>
25
+ <footer slot="modal-footer" class="modal-footer">
26
+ <button type="button" @click="closeFile" style="background-color: limegreen;color: white">确定</button>
27
+ </footer>
28
+ </modal>
29
+ </template>
30
+
31
+ <script>
32
+
33
+ import {HttpResetClass} from "vue-client";
34
+ import Vue from 'vue'
35
+ export default {
36
+ title: 'app',
37
+ data: function () {
38
+ return {
39
+ item: 0,
40
+ isMenu:true,
41
+ beforeName:'主界面',
42
+ titleName:'待办工作',
43
+ backthis:'',
44
+ safe:false,
45
+ showFile:false,
46
+ beforetabs:[],
47
+ iftabbar:'',
48
+ result:[]
49
+ }
50
+ },
51
+ ready(){
52
+ let zhi=this.$appdata.getSingleValue('是否开启代办提醒')
53
+ if(zhi==''){
54
+ console.log("99999",Vue.user)
55
+ new HttpResetClass().load('post',`${this.$androidUtil.getProxyUrl()}/rs/logic/getModuleUpcoming`,{
56
+ id:Vue.user.id,
57
+ name:Vue.user.name,
58
+ orgid:Vue.user.orgid
59
+ }).then(res=>{
60
+ console.log("888888===>"+JSON.stringify(res.data))
61
+ this.result = res.data
62
+ this.showFile=true
63
+ // this.$showMessage(`你有${result.safe[0].safenum}条需要处理的安检待办业务,<br/>
64
+ // ${result.safeorder[0].safeyuyuenum}条需要处理的安检预约业务,<br/>
65
+ // ${result.tel[0].telnum}条需要处理的维修待办业务,<br/>
66
+ // ${result.telorder[0].telyuyuenum}条需要处理的维修预约业务,<br/>
67
+ // ${result.applyorder[0].applyyuyuenum}条需要处理的报建预约业务,<br/>
68
+ // ${result.apply[0].applynum}条需要处理的报建待办业务`)
69
+ })
70
+ }
71
+ },
72
+ methods: {
73
+ closeFile(){
74
+ this.showFile=false
75
+ },
76
+ back (flag){
77
+ if(this.safe && flag == '返回' ){
78
+ this.$showMessage('此返回所录入内容将无法找回!', ['confirm', 'cancel']).then((res) => {
79
+ if (res === 'confirm') {
80
+ //this.safe = false 返回父页面后不能修改父级页面定义的 是否返回提示
81
+ this.delback()
82
+ this.backthis.$back()
83
+ this.closeAndDelAudio()
84
+ }
85
+ })
86
+ }else{
87
+ this.delback()
88
+ //this.safe = false 返回父页面后不能修改父级页面定义的 是否返回提示
89
+ this.backthis.$back()
90
+ }
91
+ },
92
+ delback(){
93
+ // 先确认出 前一个组件的名字
94
+ var title = this.beforeName
95
+ var beforetitle = '主界面'
96
+ var j = -1
97
+ for(var i = 0;i<this.beforetabs.length;i++){
98
+ if(this.beforetabs[i].titleName == title){
99
+ beforetitle = this.beforetabs[i].beforeName
100
+ this.backthis =this.beforetabs[i].backthis
101
+ this.safe = this.beforetabs[i].safe
102
+ j = i
103
+ break;
104
+ }
105
+ }
106
+ this.beforetabs.splice(j + 1, 1)
107
+ this.beforeName = beforetitle
108
+ this.titleName = title
109
+ // 判断是否 显示底层导航
110
+ if(this.iftabbar == this.titleName){
111
+ this.isMenu = true
112
+ }
113
+ },
114
+ onClickTabBarItem(titlefg) {
115
+ var param = titlefg.link
116
+ if(titlefg.name == '退出系统'){
117
+ this.$showMessage('即将返回登陆界面!', ['confirm', 'cancel']).then((res) => {
118
+ if (res === 'confirm') {
119
+ this.$androidUtil.setPreference('f_repairman_id', 'x')
120
+ this.$androidUtil.setPreference('f_repairman_name', 'x')
121
+ this.$back()
122
+ }
123
+ })
124
+ }else{
125
+ if(this.beforeName == titlefg.name){
126
+ return
127
+ }
128
+ this.titleName = titlefg.name
129
+ this.beforeName = titlefg.name
130
+ let data = {
131
+ sourcet: '竖屏'
132
+ }
133
+ // if(titlefg.name == '待办工单'){
134
+ // param = param+'V'
135
+ // }
136
+ this.$refs.route.init(param,data)
137
+ }
138
+ },
139
+ closeAndDelAudio() {
140
+ console.log("停止无限制录音")
141
+ HostApp.startOrStopAudioClip("-----","停止录音")
142
+ }
143
+ },
144
+ events: {
145
+ 'gotoson': function (prpdata) {
146
+ // 事件回调内的 `this` 自动绑定到注册它的实例上
147
+ // safe 返回事件是否进行判断后再返回
148
+ // 每进入一次,beforetabs 数组添加 返回 删除
149
+ this.backthis = prpdata._this
150
+ this.safe = prpdata.safe
151
+ this.isMenu = false
152
+ // 记录本次跳转
153
+ var beforedata = {
154
+ beforeName: this.titleName,
155
+ titleName: prpdata.title,
156
+ backthis:prpdata._this,
157
+ safe:prpdata.safe
158
+ }
159
+ this.beforetabs.push(beforedata)
160
+ if( this.beforetabs.length == 1){
161
+ this.iftabbar = beforedata.beforeName
162
+ }
163
+ // 写入跳转后 前后组件名字
164
+ this.beforeName = this.titleName
165
+ this.titleName = prpdata.title
166
+
167
+ console.log('进入子组件,通知外层组件,我已经进入')
168
+ },
169
+ 'confirm': function () {
170
+ // 提交处理返回事件
171
+ this.back('提交')
172
+ },
173
+ 'backarrdel': function () {
174
+ this.delback()
175
+ },
176
+ 'gologin': function () {
177
+ this.beforetabs = []
178
+ this.$back()
179
+ }
180
+ }
181
+ }
182
+ </script>
183
+ <style scoped>
184
+ .app-height{
185
+ height: 93%;
186
+ }
187
+ </style>
@@ -1,165 +1,165 @@
1
- <template>
2
- <div class="page-header app-header auto">
3
- <span style="margin-left:33px">{{title}}</span>
4
- <div class="app-header-back" @click='back()' v-show="needBack">
5
- <img src="../assets/返回.png" style="height: 20px;margin-right:-10px"/>
6
- </div>
7
- <div class="app-header-back" style="margin-top: 20px" v-show="!needBack">
8
- <img src="../assets/denglu.png" style="height: 20px;margin-right:-10px;margin-top:-10px"/>
9
- <span style="margin-left:5px;color: #ffffff;font-size: 1.0em;">{{loginname}}</span>
10
- </div>
11
- <div class="app-header-list" v-if="showList">
12
- <dropdown>
13
- <a href="#" data-toggle="dropdown" class="dropdown-toggle" style="color: white;font-size:19px">
14
- <div class="app-header-newaddserver" style="line-height: 1px;margin-top: -5px">
15
- <img src="../assets/newadd3.png" style="height: 20px;margin-right:-10px"/>
16
- </div>
17
- </a>
18
- <ul slot="dropdown-menu" class="dropdown-menu dropdown-menu-right">
19
- <li >
20
- <a href="#" @click="gotopage('sell-info',{user:user})">
21
- <img src="../assets/待办工单竖屏3.png"> 报修工单
22
- </a>
23
- <hr>
24
- <a href="#" @click="gotopage('repair-message',{user:user})">
25
- <img src="../assets/安检导航竖屏3.png"/> 安检计划
26
- </a>
27
- <hr>
28
- <a href="#" @click="gotopage('changemeter-info',{user:user})">
29
- <img src="../assets/手机抄表竖屏3.png"/> 抄表计划
30
- </a>
31
- <hr>
32
- <hr>
33
- </li>
34
- </ul>
35
- </dropdown>
36
- </div>
37
- <div class="app-header-guanbishengyin" style="line-height: 25px" @click='mute()'>
38
- <img src="../assets/jingyin3.png" style="height: 20px;"/>
39
- </div>
40
- </div>
41
- </template>
42
-
43
- <script>
44
- import Vue from 'vue'
45
- export default {
46
- title: '通用头部组件',
47
- data () {
48
- return {
49
- loginname: Vue.user.name
50
- }
51
- },
52
- props: {
53
- user:{
54
- type:Object
55
- },
56
- userinfo:{
57
- type:Object
58
- },
59
- // 是否显示列表控件
60
- showList: {
61
- type: Boolean,
62
- default: false
63
- },
64
- title: {
65
- type: String,
66
- default: '燃气应用'
67
- },
68
- needBack: {
69
- type: Boolean,
70
- default: true
71
- }
72
- },
73
- methods: {
74
- // 新增工单
75
- newadd(){
76
- // 事件
77
- },
78
- // 跳转页面
79
- gotopage(param,props) {
80
- this.$goto(param,props)
81
- },
82
- back () {
83
- // console.log('发送返回事件')
84
- this.$emit('back')
85
- },
86
- // 关闭新消息响铃(静音)
87
- mute () {
88
- if(navigator.userAgent.match('iPad') || navigator.userAgent.match('iPhone')){
89
- window.prompt("mute","")
90
- }else{
91
- HostApp.mute()
92
- }
93
- },
94
- }
95
- }
96
- </script>
97
- <style scoped>
98
- .app-header {
99
- position: fixed;
100
- top:0px;
101
- width: 100%;
102
- margin: 0px;
103
- background: #499edf;
104
- color: #FFF;
105
- padding: 10px;
106
- text-align: center;
107
- font-size: 15px;
108
- height: 7%;
109
-
110
- /*margin-bottom: 20px;*/
111
- }
112
- .app-header-back {
113
- position: absolute;
114
- top: 12px;
115
- color: #D8DCE5;
116
- }
117
- .app-header-list {
118
- height: 40px;
119
- float: right;
120
- color: #D8DCE5;
121
- }
122
- .app-header-guanbishengyin {
123
- margin-right: 10px;
124
- float: right;
125
- color: #D8DCE5;
126
- }
127
- .app-header-newaddserver {
128
- margin-right: 10px;
129
- float: right;
130
- color: #D8DCE5;
131
- }
132
- .app-header-volume {
133
- position: absolute;
134
- top: 0;
135
- display: flex;
136
- flex-direction: column;
137
- justify-content: center;
138
- right: 20px;
139
- color: #D8DCE5;
140
- font-size: 1.5em;
141
- }
142
- .dropdown-menu {
143
- background-color: #212a35;
144
- }
145
- .dropdown-menu a{
146
- color: white;
147
- }
148
- .dropdown-menu a:hover{
149
- color: white;
150
- background-color: #6b85a3;
151
- }
152
- .dropdown-menu img{
153
- width: 22%;
154
- margin-top: -5px;
155
- }
156
- .dropdown-menu hr{
157
- margin-top: 0px;
158
- margin-bottom: 0px;
159
- margin-right:0px;
160
- width: 80%;
161
- }
162
- .glyphicon-menu-left{
163
- color:#fff;
164
- }
165
- </style>
1
+ <template>
2
+ <div class="page-header app-header auto">
3
+ <span style="margin-left:33px">{{title}}</span>
4
+ <div class="app-header-back" @click='back()' v-show="needBack">
5
+ <img src="../assets/返回.png" style="height: 20px;margin-right:-10px"/>
6
+ </div>
7
+ <div class="app-header-back" style="margin-top: 20px" v-show="!needBack">
8
+ <img src="../assets/denglu.png" style="height: 20px;margin-right:-10px;margin-top:-10px"/>
9
+ <span style="margin-left:5px;color: #ffffff;font-size: 1.0em;">{{loginname}}</span>
10
+ </div>
11
+ <div class="app-header-list" v-if="showList">
12
+ <dropdown>
13
+ <a href="#" data-toggle="dropdown" class="dropdown-toggle" style="color: white;font-size:19px">
14
+ <div class="app-header-newaddserver" style="line-height: 1px;margin-top: -5px">
15
+ <img src="../assets/newadd3.png" style="height: 20px;margin-right:-10px"/>
16
+ </div>
17
+ </a>
18
+ <ul slot="dropdown-menu" class="dropdown-menu dropdown-menu-right">
19
+ <li >
20
+ <a href="#" @click="gotopage('sell-info',{user:user})">
21
+ <img src="../assets/待办工单竖屏3.png"> 报修工单
22
+ </a>
23
+ <hr>
24
+ <a href="#" @click="gotopage('repair-message',{user:user})">
25
+ <img src="../assets/安检导航竖屏3.png"/> 安检计划
26
+ </a>
27
+ <hr>
28
+ <a href="#" @click="gotopage('changemeter-info',{user:user})">
29
+ <img src="../assets/手机抄表竖屏3.png"/> 抄表计划
30
+ </a>
31
+ <hr>
32
+ <hr>
33
+ </li>
34
+ </ul>
35
+ </dropdown>
36
+ </div>
37
+ <div class="app-header-guanbishengyin" style="line-height: 25px" @click='mute()'>
38
+ <img src="../assets/jingyin3.png" style="height: 20px;"/>
39
+ </div>
40
+ </div>
41
+ </template>
42
+
43
+ <script>
44
+ import Vue from 'vue'
45
+ export default {
46
+ title: '通用头部组件',
47
+ data () {
48
+ return {
49
+ loginname: Vue.user.name
50
+ }
51
+ },
52
+ props: {
53
+ user:{
54
+ type:Object
55
+ },
56
+ userinfo:{
57
+ type:Object
58
+ },
59
+ // 是否显示列表控件
60
+ showList: {
61
+ type: Boolean,
62
+ default: false
63
+ },
64
+ title: {
65
+ type: String,
66
+ default: '燃气应用'
67
+ },
68
+ needBack: {
69
+ type: Boolean,
70
+ default: true
71
+ }
72
+ },
73
+ methods: {
74
+ // 新增工单
75
+ newadd(){
76
+ // 事件
77
+ },
78
+ // 跳转页面
79
+ gotopage(param,props) {
80
+ this.$goto(param,props)
81
+ },
82
+ back () {
83
+ // console.log('发送返回事件')
84
+ this.$emit('back')
85
+ },
86
+ // 关闭新消息响铃(静音)
87
+ mute () {
88
+ if(navigator.userAgent.match('iPad') || navigator.userAgent.match('iPhone')){
89
+ window.prompt("mute","")
90
+ }else{
91
+ HostApp.mute()
92
+ }
93
+ },
94
+ }
95
+ }
96
+ </script>
97
+ <style scoped>
98
+ .app-header {
99
+ position: fixed;
100
+ top:0px;
101
+ width: 100%;
102
+ margin: 0px;
103
+ background: #499edf;
104
+ color: #FFF;
105
+ padding: 10px;
106
+ text-align: center;
107
+ font-size: 15px;
108
+ height: 7%;
109
+
110
+ /*margin-bottom: 20px;*/
111
+ }
112
+ .app-header-back {
113
+ position: absolute;
114
+ top: 12px;
115
+ color: #D8DCE5;
116
+ }
117
+ .app-header-list {
118
+ height: 40px;
119
+ float: right;
120
+ color: #D8DCE5;
121
+ }
122
+ .app-header-guanbishengyin {
123
+ margin-right: 10px;
124
+ float: right;
125
+ color: #D8DCE5;
126
+ }
127
+ .app-header-newaddserver {
128
+ margin-right: 10px;
129
+ float: right;
130
+ color: #D8DCE5;
131
+ }
132
+ .app-header-volume {
133
+ position: absolute;
134
+ top: 0;
135
+ display: flex;
136
+ flex-direction: column;
137
+ justify-content: center;
138
+ right: 20px;
139
+ color: #D8DCE5;
140
+ font-size: 1.5em;
141
+ }
142
+ .dropdown-menu {
143
+ background-color: #212a35;
144
+ }
145
+ .dropdown-menu a{
146
+ color: white;
147
+ }
148
+ .dropdown-menu a:hover{
149
+ color: white;
150
+ background-color: #6b85a3;
151
+ }
152
+ .dropdown-menu img{
153
+ width: 22%;
154
+ margin-top: -5px;
155
+ }
156
+ .dropdown-menu hr{
157
+ margin-top: 0px;
158
+ margin-bottom: 0px;
159
+ margin-right:0px;
160
+ width: 80%;
161
+ }
162
+ .glyphicon-menu-left{
163
+ color:#fff;
164
+ }
165
+ </style>