123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- <template>
- <div id="app" v-cloak>
- <div class="app-main">
- <div class="app-main-zhunbeixuanzhuan">
- <div class="app-main-xuanzhuan">
- <div class="search clear">
- <div class="shengxia">
- <el-select
- v-model="value"
- :size="'small'"
- @change="selectChange"
- style="width: 100%"
- placeholder="请选择报表"
- >
- <el-option
- v-for="item in options"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
- </div>
- <el-date-picker
- v-if="value === '1' || value === '3' || value === '4'"
- class="fr"
- style="width: 112px"
- v-model="dadataTime"
- :size="'small'"
- align="right"
- type="date"
- :editable="false"
- :clearable="false"
- placeholder="选择日期"
- format="yyyy-MM-dd"
- value-format="yyyy-MM-dd"
- :picker-options="pickerOptions"
- >
- </el-date-picker>
- <div class="fr my-fr" v-else>
- <i class="el-icon-time"></i>
- <span>{{ dadataTime }}</span>
- </div>
- </div>
- <ul class="myul">
- <!-- <li class="myli" v-if="value === '2'">
- <sales-report-rejected />
- </li> -->
- <li class="myli" v-if="value === '3'">
- <sales-report-rejected-new :date="dadataTime" />
- </li>
- <li class="myli" v-else-if="value === '4'">
- <return-report :date="dadataTime" />
- </li>
- <!-- <li class="myli" v-else-if="value === '2'">
- <sales-report />
- </li>
- <li class="myli" v-else-if="value === '3'">
- <sales-report-m />
- </li> -->
- <li class="myli" v-else>
- <sales-report-rejected-settlement-new :date="dadataTime" />
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- options: [
- {
- value: "1",
- label: "业绩达成报表(含退货)-产品确认单",
- },
- // {
- // value: "2",
- // label: "业绩达成报表(含退货)",
- // },
- {
- value: "3",
- label: "采销平台业绩达成报表",
- },
- {
- value: "4",
- label: "516退货报表",
- },
- // {
- // value: "3",
- // label: "销售退货报表",
- // },
- ],
- pickerOptions: {
- disabledDate(time) {
- return time.getTime() > Date.now();
- },
- },
- value: "3",
- dadataTime: "",
- };
- },
- async created() {
- this.dadataTime = this.transformTime();
- },
- methods: {
- transformTime() {
- let time = new Date();
- let y = time.getFullYear();
- let M = time.getMonth() + 1;
- let d = time.getDate();
- return y + "-" + (M < 10 ? "0" + M : M) + "-" + (d < 10 ? "0" + d : d);
- },
- selectChange() {
- if (this.value+"" !== '2') {
- this.dadataTime = this.transformTime();
- }
- },
- changeOption(index) {
- this.value = this.options[index].value;
- },
- },
- };
- </script>
- <style lang="scss">
- @mixin layout-dev {
- position: fixed;
- width: 100%;
- height: 100%;
- padding: 0;
- margin: 0;
- box-sizing: border-box;
- }
- html {
- @include layout-dev;
- body {
- @include layout-dev;
- text-align: left;
- }
- .clear::after,
- .clear::before {
- content: "";
- display: block;
- clear: both;
- }
- #app {
- @include layout-dev;
- padding: 0;
- .app-main {
- width: 100%;
- height: 100%;
- padding: 0;
- margin: 0;
- box-sizing: border-box;
- .app-main-zhunbeixuanzhuan {
- position: relative;
- width: 100%;
- height: 100%;
- box-sizing: border-box;
- .app-main-xuanzhuan {
- position: absolute;
- width: 100%;
- height: 100%;
- // bottom: 0px;
- box-sizing: border-box;
- padding: 16px;
- }
- }
- .search {
- position: relative;
- padding: 0 0 12px 0;
- }
- .shengxia {
- float: left;
- height: 33px;
- line-height: 32px;
- width: calc(100% - 122px);
- }
- .fr {
- float: right;
- }
- .fr.my-fr {
- width: 112px;
- line-height: 32px;
- text-align: right;
- i {
- font-size: 17px;
- height: 32px;
- line-height: 32px;
- color: #606266;
- display: inline-block;
- vertical-align: top;
- }
- span {
- display: inline-block;
- vertical-align: top;
- color: #606266;
- font-size: 14px;
- padding: 0 0 0 5px;
- }
- }
- .title {
- text-align: center;
- padding: 0 0 8px 0;
- }
- .el-table .el-table__header-wrapper table thead tr th {
- background: #f5f7fa !important;
- }
- .el-date-editor.fr.el-input.el-input--small.el-input--prefix.el-input--suffix.el-date-editor--date {
- .el-input__inner {
- padding-right: 0 !important;
- }
- }
- .el-drawer__wrapper {
- #el-drawer__title {
- margin: 0 !important;
- display: none !important;
- }
- .el-drawer__body {
- .demo-drawer__content_header {
- padding: 20px 20px 0 !important;
- font-size: 16px !important;
- color: #72767b !important;
- }
- ul.demo-drawer__content_body {
- width: 100% !important;
- box-sizing: border-box !important;
- li {
- height: 23px !important;
- line-height: 23px !important;
- font-size: 14px !important;
- color: #72767b !important;
- box-sizing: border-box !important;
- }
- li.active_e {
- height: 23px !important;
- line-height: 23px !important;
- color: #409eff !important;
- font-size: 14px !important;
- box-sizing: border-box !important;
- }
- }
- }
- }
- .myul {
- position: relative;
- list-style-type: none;
- padding: 0;
- margin: 0;
- box-sizing: border-box;
- width: 100%;
- .myli {
- position: relative;
- list-style-type: none;
- padding: 0;
- margin: 0;
- width: 100%;
- }
- }
- .el-table .warning-row {
- background: #f5f7fa !important;
- // background: oldlace !important;
- }
- .el-table .success-row {
- background: #f0f9eb !important;
- }
- }
- }
- }
- </style>
|