123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291 |
- <template>
- <div>
- <basic-container class="page-crad">
- <avue-crud ref="crud" :option="option" :data="dataList" :page.sync="page" :search.sync="search"
- :cell-style="cellStyle" @search-change="searchChange" @current-change="currentChange" @size-change="sizeChange"
- @refresh-change="refreshChange" @on-load="onLoad" :table-loading="loading" @saveColumn="saveColumn"
- @resetColumn="resetColumn" @search-criteria-switch="searchCriteriaSwitch">
- <template slot="menuLeft">
- <el-button type="info" size="small" @click="outExport">导出
- </el-button>
- </template>
- <template slot="corpIdSearch">
- <crop-select v-model="search.corpId" corpType="KH"></crop-select>
- </template>
- <template slot="businesDateSearch">
- <el-date-picker v-model="search.businesDate" type="daterange" start-placeholder="开始日期" end-placeholder="结束日期"
- format="yyyy-MM-dd" value-format="yyyy-MM-dd HH:mm:ss" :default-time="['00:00:00', '23:59:59']">
- </el-date-picker>
- </template>
- <template slot="corpId" slot-scope="{ row, index }">
- <span>{{ row.corpName }}</span>
- </template>
- </avue-crud>
- </basic-container>
- </div>
- </template>
- <script>
- import { getToken } from "@/util/auth";
- import { getList } from "@/api/statisticAnalysis/salesDetails"
- export default {
- name: "index",
- data() {
- return {
- form: {},
- search: {},
- dataList: [],
- loading: false,
- detailData: {},
- page: {
- pageSize: 20,
- currentPage: 1,
- total: 0,
- pageSizes: [10, 20, 30, 40, 50, 100, 200, 300, 400, 500]
- },
- option: {},
- optionBack: {
- searchShow: true,
- searchMenuPosition: "right",
- searchSpan: 8,
- border: true,
- index: true,
- addBtn: false,
- viewBtn: false,
- editBtn: false,
- delBtn: false,
- searchIcon: true,
- menu: false,
- summaryText: "合计",
- showSummary: true,
- sumColumnList: [{
- name: "quantity",
- type: "sum",
- decimals: 2
- }, {
- name: "amount",
- type: "sum",
- decimals: 2
- }, {
- name: "price",
- type: "sum",
- decimals: 2
- }, {
- name: "settlmentAmount",
- type: "sum",
- decimals: 2
- }, {
- name: "feesAmount",
- type: "sum",
- decimals: 2
- }],
- column: [
- {
- label: "订单号",
- prop: "orderNo",
- overHidden: true
- },
- {
- label: "客户名称",
- prop: "corpId",
- overHidden: true,
- search: true,
- },
- // {
- // label: "品牌",
- // prop: "billType",
- // type: "select",
- // hide: true,
- // showColumn: false,
- // search: true
- // },
- {
- label: "日期",
- prop: "careteTime",
- type: "datetime",
- format: 'yyyy-MM-dd',
- valueFormat: 'yyyy-MM-dd HH:mm:ss',
- searchRange: true,
- searchDefaultTime: ['00:00:00', '23:59:59'],
- overHidden: true,
- search: true,
- },
- {
- label: "业务员",
- prop: "salesName",
- overHidden: true,
- search: true,
- },
- {
- label: "产品编码",
- prop: "commodityCode",
- overHidden: true,
- },
- {
- label: "规格",
- prop: "typeno",
- overHidden: true
- },
- {
- label: "花纹",
- prop: "brandItem",
- overHidden: true
- },
- {
- label: "数量",
- prop: "quantity",
- overHidden: true
- },
- {
- label: "金额",
- prop: "amount",
- overHidden: true
- },
- {
- label: "单价",
- prop: "price",
- overHidden: true
- },
- {
- label: "回款额",
- prop: "settlmentAmount",
- overHidden: true
- },
- {
- label: "包装费",
- prop: "feesAmount",
- overHidden: true
- },
- {
- label: "特价金额",
- prop: "specialPrice",
- overHidden: true
- }
- ]
- }
- };
- },
- async created() {
- this.option = await this.getColumnData(this.getColumnName(130.1), this.optionBack);
- // this.option = this.optionBack
- console.log(this.option);
- let i = 0;
- this.option.column.forEach(item => {
- if (item.search) i++
- })
- if (i % 3 !== 0) {
- const num = 3 - Number(i % 3)
- this.option.searchMenuSpan = num * 8;
- this.option.searchMenuPosition = "right";
- }
- },
- methods: {
- cellStyle() {
- return "padding:0;height:40px;";
- },
- searchCriteriaSwitch(type) {
- if (type) {
- this.option.height = this.option.height - 46;
- } else {
- this.option.height = this.option.height + 46;
- }
- this.$refs.crud.getTableHeight();
- },
- //点击搜索按钮触发
- searchChange(params, done) {
- this.page.currentPage = 1;
- this.onLoad(this.page, params);
- done();
- },
- refreshChange() {
- this.onLoad(this.page, this.search);
- },
- currentChange(val) {
- this.page.currentPage = val;
- },
- sizeChange(val) {
- this.page.currentPage = 1;
- this.page.pageSize = val;
- },
- onLoad(page, params) {
- this.loading = true;
- let data = this.deepClone(Object.assign({}, params, this.search));
- if (data.careteTime) {
- data.beginCreateTime = data.careteTime[0]
- data.endCreateTime = data.careteTime[1]
- delete data.careteTime
- }
- getList(
- page.currentPage,
- page.pageSize,
- data
- ).then(res => {
- if (res.data.data.records) {
- res.data.data.records.forEach(e => {
- e.itemLoading = true;
- });
- }
- this.dataList = res.data.data.records ? res.data.data.records : [];
- this.page.total = res.data.data.total;
- if (this.page.total) {
- this.option.height = window.innerHeight - 210;
- }
- }).finally(() => {
- this.loading = false;
- });
- },
- //列保存触发
- async saveColumn() {
- const inSave = await this.saveColumnData(this.getColumnName(130.1), this.option);
- if (inSave) {
- this.$message.success("保存成功");
- //关闭窗口
- this.$refs.crud.$refs.dialogColumn.columnBox = false;
- }
- },
- async resetColumn() {
- this.option = this.optionBack;
- const inSave = await this.delColumnData(this.getColumnName(130.1), this.optionBack);
- if (inSave) {
- this.$message.success("重置成功");
- this.$refs.crud.$refs.dialogColumn.columnBox = false;
- }
- },
- editOpen(row) {
- },
- outExport() {
- let queryParams = this.search
- if (queryParams.arrivalTime) {
- queryParams.beginCreateTime = queryParams.careteTime[0]
- queryParams.endCreateTime = queryParams.careteTime[1]
- delete queryParams.careteTime
- }
- // const routeData = this.$router.resolve({
- // path: '/api/blade-land/order/acct-export', //跳转目标窗口的地址
- // query: {
- // ...queryParams //括号内是要传递给新窗口的参数
- // }
- // })
- // window.open(routeData.href.slice(1, routeData.href.length - 1) + '&' + `${this.website.tokenHeader}=${getToken()}`);
- }
- }
- };
- </script>
- <style scoped>
- .page-crad ::v-deep .basic-container__card {
- height: 94.2vh;
- }
- ::v-deep .el-table__expanded-cell[class*="cell"] {
- padding: 0px;
- }
- .itemTable ::v-deep .el-table {
- width: 100%;
- }
- </style>
|