report.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. <template>
  2. <div id="app" v-cloak>
  3. <div class="app-main">
  4. <div class="app-main-zhunbeixuanzhuan">
  5. <div class="app-main-xuanzhuan">
  6. <div class="search clear">
  7. <el-date-picker
  8. v-model="date"
  9. class="fr picker"
  10. :size="'small'"
  11. :editable="false"
  12. :clearable="false"
  13. value-format="yyyy-MM-dd"
  14. format="yyyy-MM-dd"
  15. type="date"
  16. align="right"
  17. placeholder="选择日期"
  18. :picker-options="{
  19. disabledDate(time) {
  20. return time.getTime() > Date.now();
  21. }
  22. }"
  23. >
  24. </el-date-picker>
  25. </div>
  26. <h3>平台业绩报表</h3>
  27. <el-row class="myul">
  28. <el-col style="margin-bottom:20px">
  29. <wanyu-report :date="date" />
  30. </el-col>
  31. </el-row>
  32. <!-- 24 -->
  33. <h3>公司业绩报表</h3>
  34. <el-row :gutter="10">
  35. <el-col style="margin-bottom:20px" :xs="24" :sm="12" :md="12" :lg="12" :xl="6">
  36. <department-report companyNo="GS2302231125079621" :date="date" />
  37. </el-col>
  38. <el-col style="margin-bottom:20px" :xs="24" :sm="12" :md="12" :lg="12" :xl="6">
  39. <department-report companyNo="GS2302231124114965" :date="date" />
  40. </el-col>
  41. <el-col style="margin-bottom:20px" :xs="24" :sm="12" :md="12" :lg="12" :xl="6">
  42. <department-report companyNo="GS2302231323386950" :date="date" />
  43. </el-col>
  44. <el-col style="margin-bottom:20px" :xs="24" :sm="12" :md="12" :lg="12" :xl="6">
  45. <department-report companyNo="GS2203161855277894" :date="date" />
  46. </el-col>
  47. </el-row>
  48. </div>
  49. </div>
  50. </div>
  51. </div>
  52. </template>
  53. <script>
  54. import asyncRequest from "@/api/index"
  55. // import config from "@/config"
  56. import { getParameterByName } from "../utils/auth"
  57. export default {
  58. name:'report',
  59. data() {
  60. return {
  61. date: ""
  62. };
  63. },
  64. async created() {
  65. this.date = this.transformTime();
  66. const { search } = window.location
  67. if(search.indexOf('?') !== -1){
  68. const query = {}
  69. search.split('?')[1].split('&').forEach(item => {
  70. const [key,value] = item.split('=')
  71. query[key] = value
  72. })
  73. }
  74. },
  75. async mounted(){
  76. const result = asyncRequest.userinfo({code:getParameterByName('code')})
  77. alert(JSON.stringify(result))
  78. },
  79. methods: {
  80. transformTime() {
  81. let time = new Date();
  82. let y = time.getFullYear();
  83. let M = time.getMonth() + 1;
  84. let d = time.getDate();
  85. return y + "-" + (M < 10 ? "0" + M : M) + "-" + (d < 10 ? "0" + d : d);
  86. },
  87. }
  88. };
  89. </script>
  90. <style lang="scss">
  91. @mixin layout-dev {
  92. position: fixed;
  93. width: 100%;
  94. height: 100%;
  95. padding: 0;
  96. margin: 0;
  97. box-sizing: border-box;
  98. overflow-y: auto
  99. }
  100. html {
  101. @include layout-dev;
  102. body {
  103. @include layout-dev;
  104. text-align: left;
  105. }
  106. .clear::after,
  107. .clear::before {
  108. content: "";
  109. display: block;
  110. clear: both;
  111. }
  112. #app {
  113. @include layout-dev;
  114. padding: 0;
  115. .app-main {
  116. width: 100%;
  117. padding: 0;
  118. margin: 0;
  119. box-sizing: border-box;
  120. .app-main-zhunbeixuanzhuan {
  121. position: relative;
  122. width: 100%;
  123. height: 100%;
  124. box-sizing: border-box;
  125. .app-main-xuanzhuan {
  126. position: absolute;
  127. width: 100%;
  128. height: 100%;
  129. // bottom: 0px;
  130. box-sizing: border-box;
  131. padding: 16px;
  132. }
  133. }
  134. .search {
  135. position: relative;
  136. padding: 0 0 12px 0;
  137. }
  138. .shengxia {
  139. float: left;
  140. height: 33px;
  141. line-height: 32px;
  142. width: calc(100% - 122px);
  143. }
  144. .picker{
  145. width: 112px;
  146. }
  147. .fr {
  148. float: right;
  149. }
  150. .fr.my-fr {
  151. width: 112px;
  152. line-height: 32px;
  153. text-align: right;
  154. i {
  155. font-size: 17px;
  156. height: 32px;
  157. line-height: 32px;
  158. color: #606266;
  159. display: inline-block;
  160. vertical-align: top;
  161. }
  162. span {
  163. display: inline-block;
  164. vertical-align: top;
  165. color: #606266;
  166. font-size: 14px;
  167. padding: 0 0 0 5px;
  168. }
  169. }
  170. .title {
  171. text-align: center;
  172. padding: 0 0 8px 0;
  173. }
  174. .el-table .el-table__header-wrapper table thead tr th {
  175. background: #f5f7fa !important;
  176. }
  177. .el-date-editor.fr.el-input.el-input--small.el-input--prefix.el-input--suffix.el-date-editor--date {
  178. .el-input__inner {
  179. padding-right: 0 !important;
  180. }
  181. }
  182. .el-drawer__wrapper {
  183. #el-drawer__title {
  184. margin: 0 !important;
  185. display: none !important;
  186. }
  187. .el-drawer__body {
  188. .demo-drawer__content_header {
  189. padding: 20px 20px 0 !important;
  190. font-size: 16px !important;
  191. color: #72767b !important;
  192. }
  193. ul.demo-drawer__content_body {
  194. width: 100% !important;
  195. box-sizing: border-box !important;
  196. li {
  197. height: 23px !important;
  198. line-height: 23px !important;
  199. font-size: 14px !important;
  200. color: #72767b !important;
  201. box-sizing: border-box !important;
  202. }
  203. li.active_e {
  204. height: 23px !important;
  205. line-height: 23px !important;
  206. color: #409eff !important;
  207. font-size: 14px !important;
  208. box-sizing: border-box !important;
  209. }
  210. }
  211. }
  212. }
  213. .myul {
  214. position: relative;
  215. list-style-type: none;
  216. padding: 0;
  217. margin: 0;
  218. box-sizing: border-box;
  219. width: 100%;
  220. .myli {
  221. position: relative;
  222. list-style-type: none;
  223. padding: 0;
  224. margin: 0;
  225. width: 100%;
  226. }
  227. }
  228. .el-table .warning-row {
  229. background: #f5f7fa !important;
  230. // background: oldlace !important;
  231. }
  232. .el-table .success-row {
  233. background: #f0f9eb !important;
  234. }
  235. }
  236. }
  237. }
  238. </style>