apply-clients 5.0.361 → 6.0.3

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.
Files changed (192) hide show
  1. package/build/css-loaders.js +34 -0
  2. package/build/dev-android.js +101 -0
  3. package/build/dev-client.js +8 -0
  4. package/build/dev-server-app.js +76 -0
  5. package/build/dev-server.js +72 -0
  6. package/build/example-server.js +80 -0
  7. package/build/release.sh +28 -0
  8. package/build/utils.js +80 -0
  9. package/build/webpack.base.conf.js +83 -0
  10. package/build/webpack.baseandroid.conf.js +84 -0
  11. package/build/webpack.dev.conf.js +39 -0
  12. package/build/webpack.devandroid.conf.js +34 -0
  13. package/build/webpack.example.conf.js +49 -0
  14. package/build/webpack.prod.conf.js +60 -0
  15. package/build/webpack.prodandroid.conf.js +60 -0
  16. package/build/webpack.test.conf.js +31 -0
  17. package/dist-android/static/.gitkeep +0 -0
  18. package/dist-android/static/batchleft.png +0 -0
  19. package/dist-android/static/batchright.png +0 -0
  20. package/dist-android/static/bluemainbg.jpg +0 -0
  21. package/dist-android/static/huangtengbiaozhi.png +0 -0
  22. package/dist-android/static/login_bg.jpg +0 -0
  23. package/dist-android/static/login_title.png +0 -0
  24. package/dist-android/static/login_title1.png +0 -0
  25. package/dist-android/static/loginbg.jpg +0 -0
  26. package/dist-android/static/loginlogo.png +0 -0
  27. package/dist-android/static/main_logo.png +0 -0
  28. package/dist-android/static/mainbg.jpg +0 -0
  29. package/dist-android/static/menulogo.png +0 -0
  30. package/dist-android/static/newmainbg.jpg +0 -0
  31. package/dist-android/static/psicon.png +0 -0
  32. package/dist-android/static/singleleft.png +0 -0
  33. package/dist-android/static/singleright.png +0 -0
  34. package/dist-android/static/treeopen.png +0 -0
  35. package/dist-android/static/treeout.png +0 -0
  36. package/dist-android/static/treeset.png +0 -0
  37. package/dist-android/static/usericon.png +0 -0
  38. package/dist-android/static/xinxi.png +0 -0
  39. package/package.json +5 -10
  40. package/src/AndroidApp.vue +1 -1
  41. package/src/App.vue +0 -1
  42. package/src/apply.js +172 -104
  43. package/src/applyAndroid.js +0 -5
  44. package/src/assets/shipin1.mp4 +0 -0
  45. package/src/bootstrap/less/bootstrap.less +2 -1
  46. package/src/components/Hello.vue +39 -0
  47. package/src/components/Table.js +2 -2
  48. package/src/components/Test.vue +26 -0
  49. package/src/components/Util.js +6 -11
  50. package/src/components/app_apply/Acceptance.vue +2 -7
  51. package/src/components/app_apply/ApplyApp.vue +6 -16
  52. package/src/components/app_apply/ApplyInfo.vue +1 -1
  53. package/src/components/app_apply/ApplyListUpload.vue +3 -3
  54. package/src/components/app_apply/ApplyToDoList.vue +3 -3
  55. package/src/components/app_apply/ApplyUserInfo.vue +3 -2
  56. package/src/components/app_apply/FieldExploration.vue +1 -3
  57. package/src/components/app_apply/PlaceControler.vue +49 -38
  58. package/src/components/{product/VueUtils → apply/base}/rightview/InstallCardList2.vue +38 -29
  59. package/src/components/{product/VueUtils → apply/base}/rightview/carddetail/ReduceFeeDetail2.vue +77 -77
  60. package/src/components/{product/VueUtils → apply/base}/rightview/carddetail/StopApplyDetail2.vue +1 -1
  61. package/src/components/build/Install/ApplyChargeSearch.vue +210 -0
  62. package/src/components/build/Install/ExplorationSelect.vue +308 -0
  63. package/src/components/build/Install/ExplorationUser.vue +315 -0
  64. package/src/components/build/Install/InstallFee/AddContract.vue +257 -0
  65. package/src/components/build/Install/InstallFee/InstallFee.vue +929 -0
  66. package/src/components/build/Install/InstallFee/InstallFee2.vue +291 -0
  67. package/src/components/{product/Function/functions → build/Install/InstallFee}/InstallFeeInfo.vue +11 -42
  68. package/src/components/build/Install/InstallFee/InstallFunction.vue +242 -0
  69. package/src/components/build/Install/InstallFee/InstallInfoSelect.vue +232 -0
  70. package/src/components/{product/Process → build/Install}/ModifyUserFiles.vue +1 -1
  71. package/src/components/build/Install/Process/BuildJob.vue +242 -0
  72. package/src/components/build/Install/Process/ContratSigne.vue +283 -0
  73. package/src/components/build/Install/Process/CustomerEssentialInfo.vue +325 -0
  74. package/src/components/build/Install/Process/CustomerFile.vue +423 -0
  75. package/src/components/build/Install/Process/CustomerMaterialMessage.vue +414 -0
  76. package/src/components/build/Install/Process/CustomerRecordMessage.vue +749 -0
  77. package/src/components/build/Install/Process/DispatchingJob.vue +261 -0
  78. package/src/components/build/Install/Process/FeeNorme.vue +252 -0
  79. package/src/components/build/Install/Process/FeeNormeAndContratSigne.vue +376 -0
  80. package/src/components/build/Install/Process/FeeVerifier.vue +199 -0
  81. package/src/components/build/Install/Process/IgnitionVentilation.vue +232 -0
  82. package/src/components/build/Install/Process/MeterType.vue +379 -0
  83. package/src/components/build/Install/Process/PlaceControler.vue +304 -0
  84. package/src/components/build/Install/Process/ProjeterFigure.vue +211 -0
  85. package/src/components/build/Install/Process/ReceivingNote.vue +317 -0
  86. package/src/components/build/Install/Process/boneng/qbj_placecontroler.vue +370 -0
  87. package/src/components/build/Install/Process/zhongran/ZR_Construction.vue +388 -0
  88. package/src/components/build/Install/Process/zhongran/ZR_ContratSigne.vue +496 -0
  89. package/src/components/build/Install/Process/zhongran/ZR_CustomerEssentialInfo.vue +415 -0
  90. package/src/components/build/Install/Process/zhongran/ZR_DispatchingJob.vue +409 -0
  91. package/src/components/build/Install/Process/zhongran/ZR_FeeNorme.vue +342 -0
  92. package/src/components/build/Install/Process/zhongran/ZR_IgnitionVentilation.vue +253 -0
  93. package/src/components/build/Install/Process/zhongran/ZR_IgnitionVentilation_transfer.vue +198 -0
  94. package/src/components/build/Install/Process/zhongran/ZR_MaterialPlan.vue +259 -0
  95. package/src/components/build/Install/Process/zhongran/ZR_MaterialPlanExamine.vue +243 -0
  96. package/src/components/build/Install/Process/zhongran/ZR_PlaceControler.vue +426 -0
  97. package/src/components/build/Install/Process/zhongran/ZR_PlaceControler_print.vue +187 -0
  98. package/src/components/build/Install/Process/zhongran/ZR_ReceivingNote.vue +404 -0
  99. package/src/components/build/Install/Process/zhongran/ZR_ReceivingNote1.vue +301 -0
  100. package/src/components/build/Install/Process/zhongran/ZR_TestDesign.vue +441 -0
  101. package/src/components/build/Install/Process/zhongran/ZR_end.vue +20 -0
  102. package/src/components/build/Install/ProcessInfo/BasicInfo.vue +68 -0
  103. package/src/components/build/Install/ProcessInfo/BuildInfo.vue +110 -0
  104. package/src/components/build/Install/ProcessInfo/ContratProcessInfo.vue +116 -0
  105. package/src/components/build/Install/ProcessInfo/DispatchingInfo.vue +114 -0
  106. package/src/components/build/Install/ProcessInfo/FeeNormeInfo.vue +108 -0
  107. package/src/components/build/Install/ProcessInfo/FeeVerifierInfo.vue +102 -0
  108. package/src/components/build/Install/ProcessInfo/IgnitionInfo.vue +99 -0
  109. package/src/components/build/Install/ProcessInfo/MeterProcessInfo.vue +114 -0
  110. package/src/components/build/Install/ProcessInfo/PlaceProcessInfo.vue +115 -0
  111. package/src/components/build/Install/ProcessInfo/ProjeterProcessInfo.vue +107 -0
  112. package/src/components/build/Install/ProcessInfo/ReceivingInfo.vue +107 -0
  113. package/src/components/build/Install/ProcessInfo/zhongran/ZR_BasicInfo.vue +74 -0
  114. package/src/components/build/Install/ProcessInfo/zhongran/ZR_BuildInfo.vue +114 -0
  115. package/src/components/build/Install/ProcessInfo/zhongran/ZR_ContratProcessInfo.vue +114 -0
  116. package/src/components/build/Install/ProcessInfo/zhongran/ZR_DispatchingInfo.vue +119 -0
  117. package/src/components/build/Install/ProcessInfo/zhongran/ZR_FeeNormeInfo.vue +105 -0
  118. package/src/components/build/Install/ProcessInfo/zhongran/ZR_IgnitionInfo.vue +99 -0
  119. package/src/components/build/Install/ProcessInfo/zhongran/ZR_MaterialPlan_info.vue +104 -0
  120. package/src/components/build/Install/ProcessInfo/zhongran/ZR_PlaceProcessInfo.vue +109 -0
  121. package/src/components/build/Install/ProcessInfo/zhongran/ZR_ReceivingInfo.vue +102 -0
  122. package/src/components/build/Install/ProcessInfo/zhongran/ZR_ignition_transfer_info.vue +104 -0
  123. package/src/components/{product/Bill → build/Install/bill}/BillXSDMakeInfo.vue +1 -1
  124. package/src/components/build/Install/monitor/SupervisoryControl.vue +178 -0
  125. package/src/components/build/Install/monitor/SupervisoryList.vue +209 -0
  126. package/src/components/{product/Supervisory → build/Install/monitor}/SupervisoryhCart.vue +3 -29
  127. package/src/components/product/Process/Processes/Service/ServiceControl.vue +91 -1718
  128. package/src/main.js +2 -9
  129. package/src/stores/ApplyLoadParams.js +1 -1
  130. package/src/bootstrap/less/standard.less +0 -208
  131. package/src/components/app_apply/ServiceControl.vue +0 -442
  132. package/src/components/app_apply/ServiceView.vue +0 -356
  133. package/src/components/product/Common/ApplyValidateBill.vue +0 -55
  134. package/src/components/product/Common/PrintBill.vue +0 -120
  135. package/src/components/product/Function/InstallFunction.vue +0 -142
  136. package/src/components/product/Function/InstallInfoSelect.vue +0 -254
  137. package/src/components/product/Function/Service/FunctionServiceControl.vue +0 -328
  138. package/src/components/product/Function/functions/AddContract.vue +0 -301
  139. package/src/components/product/Function/functions/BuyerMessage.vue +0 -512
  140. package/src/components/product/Function/functions/InstallFee.vue +0 -919
  141. package/src/components/product/Function/functions/material_recording.vue +0 -237
  142. package/src/components/product/MaterialBatchList.vue +0 -109
  143. package/src/components/product/MaterialBatchManage.vue +0 -34
  144. package/src/components/product/Process/ExplorationSelect.vue +0 -636
  145. package/src/components/product/Process/ExplorationUser.vue +0 -131
  146. package/src/components/product/Process/MaterialUseList.vue +0 -159
  147. package/src/components/product/Process/ProcessInfo/history_control.vue +0 -134
  148. package/src/components/product/Process/Processes/CustomerMaterialMessage.vue +0 -776
  149. package/src/components/product/Process/Processes/CustomerRecordMessage.vue +0 -910
  150. package/src/components/product/Process/Processes/ProjectSettlement.vue +0 -383
  151. package/src/components/product/Process/Processes/ReceiveBatch.vue +0 -957
  152. package/src/components/product/Process/Processes/SendOrder.vue +0 -47
  153. package/src/components/product/Process/Processes/Service/ApplyAcceptBill.vue +0 -89
  154. package/src/components/product/Process/Processes/Service/ApplyChargeSearch.vue +0 -305
  155. package/src/components/product/Process/Processes/Service/GasStop.vue +0 -96
  156. package/src/components/product/Process/ShowBackReason.vue +0 -18
  157. package/src/components/product/ServiceView.vue +0 -800
  158. package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +0 -407
  159. package/src/components/product/Supervisory/SupervisoryControl.vue +0 -130
  160. package/src/components/product/Supervisory/SupervisoryList.vue +0 -349
  161. package/src/components/product/stopInfo/ApplyStopInfo.vue +0 -280
  162. package/src/plugins/commonService.js +0 -229
  163. package/yarn.lock +0 -8072
  164. /package/src/components/{product/VueUtils → apply/base}/ToolsPage.vue +0 -0
  165. /package/src/components/{product/VueUtils → apply/base}/rightview/carddetail/BuildFeeDetail2.vue +0 -0
  166. /package/src/components/{product/VueUtils → apply/base}/rightview/carddetail/ChangeFeeDetail2.vue +0 -0
  167. /package/src/components/{product/Function/functions → build/Install/InstallFee}/AllSelect.vue +0 -0
  168. /package/src/components/{product/Function → build/Install/InstallFee}/InstallInfoDown.vue +0 -0
  169. /package/src/components/{product/Function/functions → build/Install/InstallFee}/PreparationFee.vue +0 -0
  170. /package/src/components/{product/Function/functions → build/Install/InstallFee}/PrestoreFee.vue +0 -0
  171. /package/src/components/{product/Function/functions → build/Install/InstallFee}/ReduceFee.vue +0 -0
  172. /package/src/components/{product/Function/functions → build/Install/InstallFee}/StopInstall.vue +0 -0
  173. /package/src/components/{product/Function/functions → build/Install/InstallFee}/UpdateFee.vue +0 -0
  174. /package/src/components/{product/Process/Processes → build/Install/Process}/CustomerBuildingMessage.vue +0 -0
  175. /package/src/components/{product/Process/Processes → build/Install/Process}/CustomerEquipmentMessage.vue +0 -0
  176. /package/src/components/{product/Function/functions → build/Install/ProcessInfo}/ApplyRecordCancel.vue +0 -0
  177. /package/src/components/{product/Bill → build/Install/bill}/BillGZK.vue +0 -0
  178. /package/src/components/{product/Bill → build/Install/bill}/BillGZKMakeInfo.vue +0 -0
  179. /package/src/components/{product/Bill → build/Install/bill}/BillGZKRecordInfo.vue +0 -0
  180. /package/src/components/{product/Bill → build/Install/bill}/BillJLB.vue +0 -0
  181. /package/src/components/{product/Bill → build/Install/bill}/BillJLBMakeInfo.vue +0 -0
  182. /package/src/components/{product/Bill → build/Install/bill}/BillJLBRecordInfo.vue +0 -0
  183. /package/src/components/{product/Bill → build/Install/bill}/BillKTK.vue +0 -0
  184. /package/src/components/{product/Bill → build/Install/bill}/BillKTKMakeInfo.vue +0 -0
  185. /package/src/components/{product/Bill → build/Install/bill}/BillKTKRecordInfo.vue +0 -0
  186. /package/src/components/{product/Bill → build/Install/bill}/BillQRK.vue +0 -0
  187. /package/src/components/{product/Bill → build/Install/bill}/BillQRKMakeInfo.vue +0 -0
  188. /package/src/components/{product/Bill → build/Install/bill}/BillQRKRecordInfo.vue +0 -0
  189. /package/src/components/{product/Bill → build/Install/bill}/BillSelect.vue +0 -0
  190. /package/src/components/{product/Bill → build/Install/bill}/BillXSD.vue +0 -0
  191. /package/src/components/{product/Bill → build/Install/bill}/BillXSDRecordInfo.vue +0 -0
  192. /package/src/components/{product/Supervisory → build/Install/monitor}/SupervisoryBaseInfo.vue +0 -0
package/src/main.js CHANGED
@@ -4,24 +4,17 @@ import { all } from 'vue-client'
4
4
  import {ldap} from 'ldap-clients'
5
5
  import {system} from 'system-clients'
6
6
  import {sale} from 'sale-client'
7
- import {material} from 'material-client'
8
-
9
7
  import apply from './apply'
10
8
  import applyAndroid from './applyAndroid'
11
9
  import 'lib-flexible/flexible.js'
12
- /*import vueBubble from 'vue-bubble'
13
- Vue.use(vueBubble)*/
14
10
  // import AndroidPlugin from './AndroidPlugin.js'
15
11
  import {systemphonegrid} from 'system-phone'
16
- // var Verificationfalg = false
17
- // system(Verificationfalg)
12
+
18
13
  all()
19
- system(false)
14
+ system()
20
15
  apply()
21
16
  ldap()
22
17
  sale()
23
- material()
24
-
25
18
  applyAndroid()
26
19
  // Vue.use(AndroidPlugin)
27
20
  require('./bootstrap/less/bootstrap.less')
@@ -22,7 +22,7 @@ let ApplyLoadParams = {
22
22
  },
23
23
 
24
24
  async loadParam () {
25
- //await loadParamGen()
25
+ await loadParamGen()
26
26
  },
27
27
 
28
28
  // 开启卡监听
@@ -1,208 +0,0 @@
1
-
2
- /*=========================通用样式表=========================*/
3
- @font-face {
4
- font-family: PingFang;
5
- /*src:url('../fonts/PingFangSC-Regular.ttf');*/
6
- }
7
-
8
-
9
- /********************字体*****************/
10
- /*字体标题_粗体*/
11
- .font_bold_title{font-weight: bold; color: #333333;text-align: right;vertical-align: middle;}
12
- /*字体正文_粗体*/
13
- .font_bold_body{ font-family: PingFang; font-weight: bold;color: #666666;text-align: right;vertical-align: middle; }
14
- /*字体_粗体*/
15
- .font_bold_title1{ font-family: PingFang; font-weight: bold;color: #999999;text-align: right;vertical-align: middle;}
16
- /*字体按钮_粗体*/
17
- .font_bold_button{ font-family: PingFang; font-weight: bold;color: #ffffff;text-align: right;vertical-align: middle;}
18
- /*字体蓝色_粗体*/
19
- .font_bold_blue{ font-family: PingFang; font-weight: bold;color: #6aa6e2;text-align: right;vertical-align: middle;}
20
-
21
- /*字体标题_正常*/
22
- .font_normal_title{ font-family: PingFang; font-weight: normal;color: #333333!important;text-align: right;vertical-align: middle;}
23
- /*字体正文_正常*/
24
- .font_normal_body{ font-family: PingFang; font-weight: normal !important;color: #666666!important;text-align: right;vertical-align: middle;}
25
- /*字体_正常*/
26
- .font_normal_title1{ font-family: PingFang;font-weight: normal;color: #999999!important;text-align: right;vertical-align: middle;}
27
- /*字体按钮_正常*/
28
- .font_normal_button{ font-family: PingFang;font-weight: normal;color: #ffffff!important;text-align: right;vertical-align: middle;}
29
- /*字体蓝色_正常*/
30
- .font_normal_blue{ font-family: PingFang;font-weight: normal;color: #6aa6e2!important;text-align: right;vertical-align: middle;}
31
-
32
- .search_area{background-color: #ffffff; border-radius: 10px;margin-bottom: 20px;padding: 20px}
33
- .list_area{background-color: #ffffff; border-radius: 10px;padding: 20px}
34
-
35
-
36
- /********************表格*****************/
37
- .table_sy{margin-top: 6px}
38
- /*表格表头*/
39
- .table_sy thead tr th{background-color: #eaf5ff!important;color: #666666 !important;font-family: PingFang !important;font-weight: normal!important;}
40
- /*表格主体_奇数行*/
41
- .table_sy tbody tr:nth-child(odd){background-color: #ffffff !important;border: solid 1px #f0f4fa !important;color: #666666!important;font-size: 15px!important;font-family: PingFang!important;}
42
- /*表格主体_偶数行*/
43
- .table_sy tbody tr:nth-child(even){background-color: #f6fbff !important;border: solid 1px #f0f4fa !important;color: #666666!important;font-size: 15px!important;font-family: PingFang!important;}
44
- /*表格主体_移动行*/
45
- .table_sy tbody tr:hover{ background-color: #ecf6ff!important;border: solid 1px #f0f4fa !important;color: #666666!important;font-size: 15px!important;font-family: PingFang!important;}
46
- /*表格底部*/
47
- .pager{background-color: #eaf5ff !important;}
48
- /*表格主体_点击行*/
49
- .success td{background-color: #ecf6ff !important;}
50
-
51
- .foot{font-family: PingFang !important;}
52
-
53
- /*下拉列表滑动变色*/
54
- .select_list li a:hover{background-color: #eaf5ff !important;border-radius: 2px;border: solid 1px #eaeaea;}
55
-
56
- /*弹窗*/
57
- .pop_windows{background-color: #d9e9f8;border-radius: 16px 16px 0px 0px;}
58
- /*标签*/
59
- .tab_color{border-bottom: 1px solid #6aa6e2; color: #6aa6e2; font-family: PingFang;}
60
-
61
- /*按钮间隔*/
62
- .button_spacing{margin: 0px 0px 0px 10px;}
63
-
64
-
65
- //报表样式
66
- //报表头部
67
- .report-head{ background-color: #b3dff7;border: solid 1px #999999;}
68
- //头部字体
69
- .head-font{color: #333333;font-size: 18px; }
70
- //报表左侧
71
- .report-left{background-color: #dff0f9;border: solid 1px #999999;}
72
- //报表主体
73
- .report-main {background-color: #ffffff; border: solid 1px #999999;}
74
- //报表主体字体
75
- .main-font{font-size: 18px;color: #1b1b1b; }
76
-
77
-
78
- /*=========================特殊样式表=========================*/
79
-
80
- /*分辨率@1920*1080*/
81
- @media screen and (max-width: 1920px) {
82
-
83
- /********************按钮*****************/
84
-
85
- .font_normal_body{font-size: 16px!important; line-height: 42px;}
86
- .font_bold_body{font-size: 16px!important; line-height: 42px;}
87
- .font_bold_title{font-size: 16px!important; line-height: 42px;}
88
- .table_sy thead tr th{font-size: 16px !important;}
89
- .foot .pager{ font-size: 16px!important; color: #666666!important;font-weight: normal!important;}
90
- .foot .pager a{ font-size: 16px!important; color: #666666!important;font-weight: normal!important;}
91
- .foot .pager li{ font-size: 16px!important; color: #666666!important;font-weight: normal!important;}
92
-
93
-
94
- /*按钮查询*/
95
- .button_search{width: 75px; height: 40px; background-color: #6aa6e2; border-radius: 4px; border:none; font-family: PingFang; font-size: 16px; color: #ffffff;}
96
- .button_search:hover{ background-color: #3592ef;}
97
-
98
- /*按钮清空*/
99
- .button_clear{width: 75px; height: 40px; background-color: #5ac0d9; border-radius: 4px;border:none; font-family: PingFang; font-size: 16px; color: #ffffff;}
100
- .button_clear:hover{ background-color: #27c4eb;}
101
-
102
- /*按钮新建*/
103
- .button_new{width: 75px; height: 40px; background-color: #ffffff;border-radius: 4px;border: solid 1px #6aa6e2; font-family: PingFang; font-size: 16px; color: #6aa6e2;}
104
- .button_new:hover{background-color: #f0f8ff;}
105
-
106
- /*按钮导出*/
107
- .button_export {width: 110px; height: 40px; background-color: #ffffff;border-radius: 4px;border: solid 1px #6aa6e2; font-family: PingFang; font-size: 16px; color: #6aa6e2;}
108
- .button_export:hover{background-color: #f0f8ff;}
109
- .button_export button{width: 110px; height: 40px; background-color: #ffffff;border-radius: 4px;border: solid 1px #6aa6e2; font-family: PingFang; font-size: 16px; color: #6aa6e2;}
110
- .button_export button:hover{background-color: #f0f8ff;}
111
-
112
- /*查询输入框*/
113
- .input_search{ width: 270px;height: 40px;background-color: #ffffff;border-radius: 2px;border: solid 1px #c7c7c7;color: #333333; font-size: 16px;font-family: PingFang;}
114
- .input_search .datepicker .datepicker-input input{ width: 270px!important;height: 42px!important;background-color: #ffffff!important;border-radius: 2px;border: solid 1px #c7c7c7 !important;color: #333333; font-size: 16px;font-family: PingFang;}
115
- .input_search::-webkit-input-placeholder{color: #999999; font-size: 16px;padding-left:15px;font-family: PingFang;}
116
- .input_search:focus{ border: solid 1px #6aa6e2;}
117
-
118
-
119
- /*下拉框*/
120
- .select button{width: 270px!important;height: 40px!important;background-color: #ffffff!important;border-radius: 2px!important;border: solid 1px #c7c7c7!important;color: #666666; font-size: 16px;font-family: PingFang;font-weight: normal!important;}
121
- .select button:focus{ border: solid 1px #6aa6e2!important;}
122
-
123
- }
124
-
125
- /*分辨率@1600*900*/
126
- @media screen and (max-width: 1600px) {
127
-
128
- /********************按钮*****************/
129
- /*按钮间隔*/
130
- /*.button_spacing{margin: 0px 0px 0px 20px;}*/
131
- .font_normal_body{font-size: 15px!important; line-height: 38px; }
132
- .font_bold_body{font-size: 15px!important; line-height: 38px; }
133
- .font_bold_title{font-size: 15px!important; line-height: 38px; }
134
- .table_sy thead tr th{font-size: 15px !important;}
135
- .foot .pager{ font-size: 15px!important; color: #666666!important;font-weight: normal!important;}
136
- .foot .pager a{ font-size: 15px!important; color: #666666!important;font-weight: normal!important;}
137
- .foot .pager li{ font-size: 15px!important; color: #666666!important;font-weight: normal!important;}
138
-
139
- /*按钮查询*/
140
- .button_search{width: 70px; height: 36px; background-color: #6aa6e2; border-radius: 4px; border:none; font-family: PingFang; font-size: 15px; color: #ffffff;}
141
- .button_search:hover{ background-color: #3592ef;}
142
-
143
- /*按钮清空*/
144
- .button_clear{width: 70px; height: 36px; background-color: #5ac0d9; border-radius: 4px;border:none; font-family: PingFang; font-size: 15px; color: #ffffff;}
145
- .button_clear:hover{ background-color: #27c4eb;}
146
-
147
- /*按钮新建*/
148
- .button_new{width: 70px; height: 36px; background-color: #ffffff;border-radius: 4px;border: solid 1px #6aa6e2; font-family: PingFang; font-size: 15px; color: #6aa6e2;}
149
- .button_new:hover{background-color: #f0f8ff;}
150
-
151
- /*按钮导出*/
152
- .button_export {width: 110px; height: 36px; background-color: #ffffff;border-radius: 4px;border: solid 1px #6aa6e2; font-family: PingFang; font-size: 15px; color: #6aa6e2;}
153
- .button_export:hover{background-color: #f0f8ff;}
154
- .button_export button{width: 120px; height: 32px; background-color: #ffffff;border-radius: 4px;border: solid 1px #6aa6e2; font-family: PingFang; font-size: 15px; color: #6aa6e2;}
155
- .button_export button:hover{background-color: #f0f8ff;}
156
-
157
- /*查询输入框*/
158
- .input_search{ width: 200px;height: 36px;background-color: #ffffff;border-radius: 2px;border: solid 1px #c7c7c7!important;color: #333333!important; font-size: 15px!important;font-family: PingFang;}
159
- .input_search::-webkit-input-placeholder{color: #999999; font-size: 14px;padding-left:15px;font-family: PingFang;}
160
- .input_search:focus{ border: solid 1px #6aa6e2;}
161
-
162
- /*下拉框*/
163
- .select button{width: 200px!important;height: 36px!important;background-color: #ffffff!important;border-radius: 2px!important;border: solid 1px #c7c7c7!important;color: #666666!important; font-size: 15px!important;font-family: PingFang;font-weight: normal!important;}
164
- .select button:focus{ border: solid 1px #6aa6e2!important;}
165
- }
166
-
167
- /*分辨率@1366*768*/
168
- @media screen and (max-width: 1366px) {
169
-
170
- /********************按钮*****************/
171
- /*按钮间隔*/
172
- /*.button_spacing{margin: 0px 0px 0px 20px;}*/
173
- .font_normal_body{font-size: 14px!important; line-height: 36px; }
174
- .font_bold_body{font-size: 14px!important; line-height: 36px; }
175
- .font_bold_title{font-size: 14px!important; line-height: 36px; }
176
- .table_sy thead tr th{font-size: 14px !important;}
177
- .foot .pager{ font-size: 14px!important; color: #666666!important;font-weight: normal!important;}
178
- .foot .pager a{ font-size: 14px!important; color: #666666!important;font-weight: normal!important;}
179
- .foot .pager li{ font-size: 14px!important; color: #666666!important;font-weight: normal!important;}
180
-
181
- /*按钮查询*/
182
- .button_search{width: 60px; height: 34px; background-color: #6aa6e2; border-radius: 4px; border:none; font-family: PingFang; font-size: 14px; color: #ffffff;}
183
- .button_search:hover{ background-color: #3592ef;}
184
-
185
- /*按钮清空*/
186
- .button_clear{width: 60px; height: 34px; background-color: #5ac0d9; border-radius: 4px;border:none; font-family: PingFang; font-size: 14px; color: #ffffff;}
187
- .button_clear:hover{ background-color: #27c4eb;}
188
-
189
- /*按钮新建*/
190
- .button_new{width: 60px; height: 34px; background-color: #ffffff;border-radius: 4px;border: solid 1px #6aa6e2; font-family: PingFang; font-size: 14px; color: #6aa6e2;}
191
- .button_new:hover{background-color: #f0f8ff;}
192
-
193
- /*按钮导出*/
194
- .button_export {width: 110px; height: 34px; background-color: #ffffff;border-radius: 4px;border: solid 1px #6aa6e2; font-family: PingFang; font-size: 14px; color: #6aa6e2;}
195
- .button_export:hover{background-color: #f0f8ff;}
196
- .button_export button{width: 110px !important; height: 34px!important; background-color: #ffffff!important;border-radius: 4px!important;border: solid 1px #6aa6e2!important; font-family: PingFang; font-size: 14px!important; color: #6aa6e2!important;}
197
- .button_export button:hover{background-color: #f0f8ff;}
198
-
199
- /*查询输入框*/
200
- .input_search{ width: 180px;height: 34px;background-color: #ffffff;border-radius: 2px;border: solid 1px #c7c7c7;color: #333333; font-size: 14px;font-family: PingFang;}
201
- .input_search::-webkit-input-placeholder{color: #999999; font-size: 14px;padding-left:15px;font-family: PingFang;}
202
- .input_search:focus{ border: solid 1px #6aa6e2;}
203
-
204
- /*下拉框*/
205
- .select button{width: 180px!important;height: 34px!important;background-color: #ffffff!important;border-radius: 2px!important;border: solid 1px #c7c7c7!important;color: #666666!important; font-size: 14px!important;font-family: PingFang;font-weight: normal!important;}
206
- .select button:focus{ border: solid 1px #6aa6e2!important;}
207
-
208
- }