report.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  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. export default {
  56. name:'report',
  57. data() {
  58. return {
  59. date: ""
  60. };
  61. },
  62. async created() {
  63. this.date = this.transformTime();
  64. const { search } = window.location
  65. if(search.indexOf('?') !== -1){
  66. const query = {}
  67. search.split('?')[1].split('&').forEach(item => {
  68. const [key,value] = item.split('=')
  69. query[key] = value
  70. })
  71. }
  72. },
  73. mounted(){
  74. this.initWechatSdk()
  75. },
  76. methods: {
  77. transformTime() {
  78. let time = new Date();
  79. let y = time.getFullYear();
  80. let M = time.getMonth() + 1;
  81. let d = time.getDate();
  82. return y + "-" + (M < 10 ? "0" + M : M) + "-" + (d < 10 ? "0" + d : d);
  83. },
  84. async initWechatSdk(){
  85. try{
  86. const result = await asyncRequest.signature({url: "http://depart.test241.wanyuhengtong.com"})
  87. switch(Number(result.code)){
  88. case 0:
  89. wx.config({
  90. debug: false,
  91. appId: result.data.appid,
  92. timestamp: result.data.timestamp,
  93. nonceStr: result.data.noncestr,
  94. signature: result.data.signature,
  95. jsApiList: ['login']
  96. })
  97. wx.ready(function(){
  98. wx.checkJsApi({
  99. jsApiList: ['login'],
  100. success:function(res){
  101. const code = res.code
  102. alert(code)
  103. },
  104. fail:function(res){
  105. alert('line-109')
  106. }
  107. })
  108. })
  109. wx.error(function (res) {
  110. alert(JSON.stringify(res) + '115')
  111. })
  112. break
  113. default:
  114. break
  115. }
  116. }catch(error){
  117. console.log(error)
  118. }
  119. },
  120. }
  121. };
  122. </script>
  123. <style lang="scss">
  124. @mixin layout-dev {
  125. position: fixed;
  126. width: 100%;
  127. height: 100%;
  128. padding: 0;
  129. margin: 0;
  130. box-sizing: border-box;
  131. overflow-y: auto
  132. }
  133. html {
  134. @include layout-dev;
  135. body {
  136. @include layout-dev;
  137. text-align: left;
  138. }
  139. .clear::after,
  140. .clear::before {
  141. content: "";
  142. display: block;
  143. clear: both;
  144. }
  145. #app {
  146. @include layout-dev;
  147. padding: 0;
  148. .app-main {
  149. width: 100%;
  150. padding: 0;
  151. margin: 0;
  152. box-sizing: border-box;
  153. .app-main-zhunbeixuanzhuan {
  154. position: relative;
  155. width: 100%;
  156. height: 100%;
  157. box-sizing: border-box;
  158. .app-main-xuanzhuan {
  159. position: absolute;
  160. width: 100%;
  161. height: 100%;
  162. // bottom: 0px;
  163. box-sizing: border-box;
  164. padding: 16px;
  165. }
  166. }
  167. .search {
  168. position: relative;
  169. padding: 0 0 12px 0;
  170. }
  171. .shengxia {
  172. float: left;
  173. height: 33px;
  174. line-height: 32px;
  175. width: calc(100% - 122px);
  176. }
  177. .picker{
  178. width: 112px;
  179. }
  180. .fr {
  181. float: right;
  182. }
  183. .fr.my-fr {
  184. width: 112px;
  185. line-height: 32px;
  186. text-align: right;
  187. i {
  188. font-size: 17px;
  189. height: 32px;
  190. line-height: 32px;
  191. color: #606266;
  192. display: inline-block;
  193. vertical-align: top;
  194. }
  195. span {
  196. display: inline-block;
  197. vertical-align: top;
  198. color: #606266;
  199. font-size: 14px;
  200. padding: 0 0 0 5px;
  201. }
  202. }
  203. .title {
  204. text-align: center;
  205. padding: 0 0 8px 0;
  206. }
  207. .el-table .el-table__header-wrapper table thead tr th {
  208. background: #f5f7fa !important;
  209. }
  210. .el-date-editor.fr.el-input.el-input--small.el-input--prefix.el-input--suffix.el-date-editor--date {
  211. .el-input__inner {
  212. padding-right: 0 !important;
  213. }
  214. }
  215. .el-drawer__wrapper {
  216. #el-drawer__title {
  217. margin: 0 !important;
  218. display: none !important;
  219. }
  220. .el-drawer__body {
  221. .demo-drawer__content_header {
  222. padding: 20px 20px 0 !important;
  223. font-size: 16px !important;
  224. color: #72767b !important;
  225. }
  226. ul.demo-drawer__content_body {
  227. width: 100% !important;
  228. box-sizing: border-box !important;
  229. li {
  230. height: 23px !important;
  231. line-height: 23px !important;
  232. font-size: 14px !important;
  233. color: #72767b !important;
  234. box-sizing: border-box !important;
  235. }
  236. li.active_e {
  237. height: 23px !important;
  238. line-height: 23px !important;
  239. color: #409eff !important;
  240. font-size: 14px !important;
  241. box-sizing: border-box !important;
  242. }
  243. }
  244. }
  245. }
  246. .myul {
  247. position: relative;
  248. list-style-type: none;
  249. padding: 0;
  250. margin: 0;
  251. box-sizing: border-box;
  252. width: 100%;
  253. .myli {
  254. position: relative;
  255. list-style-type: none;
  256. padding: 0;
  257. margin: 0;
  258. width: 100%;
  259. }
  260. }
  261. .el-table .warning-row {
  262. background: #f5f7fa !important;
  263. // background: oldlace !important;
  264. }
  265. .el-table .success-row {
  266. background: #f0f9eb !important;
  267. }
  268. }
  269. }
  270. }
  271. </style>