App.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  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. <div class="shengxia">
  8. <el-select
  9. v-model="value"
  10. :size="'small'"
  11. @change="selectChange"
  12. style="width: 100%"
  13. placeholder="请选择报表"
  14. >
  15. <el-option
  16. v-for="item in options"
  17. :key="item.value"
  18. :label="item.label"
  19. :value="item.value"
  20. >
  21. </el-option>
  22. </el-select>
  23. </div>
  24. <el-date-picker
  25. v-if="value === '1' || value === '3' || value === '4'"
  26. class="fr"
  27. style="width: 112px"
  28. v-model="dadataTime"
  29. :size="'small'"
  30. align="right"
  31. type="date"
  32. :editable="false"
  33. :clearable="false"
  34. placeholder="选择日期"
  35. format="yyyy-MM-dd"
  36. value-format="yyyy-MM-dd"
  37. :picker-options="pickerOptions"
  38. >
  39. </el-date-picker>
  40. <div class="fr my-fr" v-else>
  41. <i class="el-icon-time"></i>
  42. <span>{{ dadataTime }}</span>
  43. </div>
  44. </div>
  45. <ul class="myul">
  46. <!-- <li class="myli" v-if="value === '2'">
  47. <sales-report-rejected />
  48. </li> -->
  49. <li class="myli" v-if="value === '3'">
  50. <sales-report-rejected-new :date="dadataTime" />
  51. </li>
  52. <li class="myli" v-else-if="value === '4'">
  53. <return-report :date="dadataTime" />
  54. </li>
  55. <!-- <li class="myli" v-else-if="value === '2'">
  56. <sales-report />
  57. </li>
  58. <li class="myli" v-else-if="value === '3'">
  59. <sales-report-m />
  60. </li> -->
  61. <li class="myli" v-else>
  62. <sales-report-rejected-settlement-new :date="dadataTime" />
  63. </li>
  64. </ul>
  65. </div>
  66. </div>
  67. </div>
  68. </div>
  69. </template>
  70. <script>
  71. export default {
  72. data() {
  73. return {
  74. options: [
  75. {
  76. value: "1",
  77. label: "业绩达成报表(含退货)-产品确认单",
  78. },
  79. // {
  80. // value: "2",
  81. // label: "业绩达成报表(含退货)",
  82. // },
  83. {
  84. value: "3",
  85. label: "采销平台业绩达成报表",
  86. },
  87. {
  88. value: "4",
  89. label: "516退货报表",
  90. },
  91. // {
  92. // value: "3",
  93. // label: "销售退货报表",
  94. // },
  95. ],
  96. pickerOptions: {
  97. disabledDate(time) {
  98. return time.getTime() > Date.now();
  99. },
  100. },
  101. value: "3",
  102. dadataTime: "",
  103. };
  104. },
  105. async created() {
  106. this.dadataTime = this.transformTime();
  107. },
  108. methods: {
  109. transformTime() {
  110. let time = new Date();
  111. let y = time.getFullYear();
  112. let M = time.getMonth() + 1;
  113. let d = time.getDate();
  114. return y + "-" + (M < 10 ? "0" + M : M) + "-" + (d < 10 ? "0" + d : d);
  115. },
  116. selectChange() {
  117. if (this.value+"" !== '2') {
  118. this.dadataTime = this.transformTime();
  119. }
  120. },
  121. changeOption(index) {
  122. this.value = this.options[index].value;
  123. },
  124. },
  125. };
  126. </script>
  127. <style lang="scss">
  128. @mixin layout-dev {
  129. position: fixed;
  130. width: 100%;
  131. height: 100%;
  132. padding: 0;
  133. margin: 0;
  134. box-sizing: border-box;
  135. }
  136. html {
  137. @include layout-dev;
  138. body {
  139. @include layout-dev;
  140. text-align: left;
  141. }
  142. .clear::after,
  143. .clear::before {
  144. content: "";
  145. display: block;
  146. clear: both;
  147. }
  148. #app {
  149. @include layout-dev;
  150. padding: 0;
  151. .app-main {
  152. width: 100%;
  153. height: 100%;
  154. padding: 0;
  155. margin: 0;
  156. box-sizing: border-box;
  157. .app-main-zhunbeixuanzhuan {
  158. position: relative;
  159. width: 100%;
  160. height: 100%;
  161. box-sizing: border-box;
  162. .app-main-xuanzhuan {
  163. position: absolute;
  164. width: 100%;
  165. height: 100%;
  166. // bottom: 0px;
  167. box-sizing: border-box;
  168. padding: 16px;
  169. }
  170. }
  171. .search {
  172. position: relative;
  173. padding: 0 0 12px 0;
  174. }
  175. .shengxia {
  176. float: left;
  177. height: 33px;
  178. line-height: 32px;
  179. width: calc(100% - 122px);
  180. }
  181. .fr {
  182. float: right;
  183. }
  184. .fr.my-fr {
  185. width: 112px;
  186. line-height: 32px;
  187. text-align: right;
  188. i {
  189. font-size: 17px;
  190. height: 32px;
  191. line-height: 32px;
  192. color: #606266;
  193. display: inline-block;
  194. vertical-align: top;
  195. }
  196. span {
  197. display: inline-block;
  198. vertical-align: top;
  199. color: #606266;
  200. font-size: 14px;
  201. padding: 0 0 0 5px;
  202. }
  203. }
  204. .title {
  205. text-align: center;
  206. padding: 0 0 8px 0;
  207. }
  208. .el-table .el-table__header-wrapper table thead tr th {
  209. background: #f5f7fa !important;
  210. }
  211. .el-date-editor.fr.el-input.el-input--small.el-input--prefix.el-input--suffix.el-date-editor--date {
  212. .el-input__inner {
  213. padding-right: 0 !important;
  214. }
  215. }
  216. .el-drawer__wrapper {
  217. #el-drawer__title {
  218. margin: 0 !important;
  219. display: none !important;
  220. }
  221. .el-drawer__body {
  222. .demo-drawer__content_header {
  223. padding: 20px 20px 0 !important;
  224. font-size: 16px !important;
  225. color: #72767b !important;
  226. }
  227. ul.demo-drawer__content_body {
  228. width: 100% !important;
  229. box-sizing: border-box !important;
  230. li {
  231. height: 23px !important;
  232. line-height: 23px !important;
  233. font-size: 14px !important;
  234. color: #72767b !important;
  235. box-sizing: border-box !important;
  236. }
  237. li.active_e {
  238. height: 23px !important;
  239. line-height: 23px !important;
  240. color: #409eff !important;
  241. font-size: 14px !important;
  242. box-sizing: border-box !important;
  243. }
  244. }
  245. }
  246. }
  247. .myul {
  248. position: relative;
  249. list-style-type: none;
  250. padding: 0;
  251. margin: 0;
  252. box-sizing: border-box;
  253. width: 100%;
  254. .myli {
  255. position: relative;
  256. list-style-type: none;
  257. padding: 0;
  258. margin: 0;
  259. width: 100%;
  260. }
  261. }
  262. .el-table .warning-row {
  263. background: #f5f7fa !important;
  264. // background: oldlace !important;
  265. }
  266. .el-table .success-row {
  267. background: #f0f9eb !important;
  268. }
  269. }
  270. }
  271. }
  272. </style>