123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265 |
- <template>
- <div>
- <basic-container v-show="show" class="page-crad">
- <avue-crud ref="crud" :option="option" :data="dataList" v-model="form" :page.sync="page" :search.sync="search"
- :table-loading="loading" :cell-style="cellStyle" @selection-change="selectionChange"
- @search-change="searchChange" @current-change="currentChange" @size-change="sizeChange"
- @refresh-change="refreshChange" @on-load="onLoad" @search-criteria-switch="searchCriteriaSwitch"
- @saveColumn="saveColumn" @resetColumn="resetColumn">
- <template slot="menuLeft">
- <el-button type="primary" icon="el-icon-plus" size="small" @click.stop="newAdd()">创建单据</el-button>
- <el-button type="success" size="small" icon="el-icon-plus" @click.stop="copyDoc()"
- :disabled="selection.length != 1" v-if="false">复制单据</el-button>
- </template>
- <template slot-scope="scope" slot="menu">
- <el-button type="text" icon="el-icon-delete" size="small" @click.stop="rowDel(scope.row, scope.index)"
- :disabled="scope.row.status == 1">删除
- </el-button>
- </template>
- <template slot="corpNameSearch">
- <crop-select v-model="search.corpId" corpType="KH"></crop-select>
- </template>
- <template slot="fromUserNameSearch">
- <el-select v-model="search.fromUser" filterable clearable placeholder="请选择 承揽人">
- <el-option v-for="(item, index) in contractorOption" :key="index" :value="item.id" :label="item.realName">
- </el-option>
- </el-select>
- </template>
- <template slot="toUserNameSearch">
- <el-select v-model="search.toUser" filterable clearable placeholder="请选择 承揽人">
- <el-option v-for="(item, index) in oppositePersonOption" :key="index" :value="item.id"
- :label="item.realName"></el-option>
- </el-select>
- </template>
- <template slot="corpName" slot-scope="scope">
- <span style="color: #409EFF;cursor: pointer" @click.stop="beforeOpenPage(scope.row, scope.index)">{{
- scope.row.corpName
- }}</span>
- </template>
- </avue-crud>
- </basic-container>
- <detail-page @goBack="goBack" @copyOrder="copyOrder" :detailData="detailData" v-if="!show" />
- </div>
- </template>
- <script>
- import option from "./config/mainList.json";
- import detailPage from "./detail";
- import { gainUser } from "@/api/basicData/customerInquiry";
- import { getList, deleteList } from "@/api/standAlone/saleLeads";
- export default {
- name: "index",
- components: {
- detailPage,
- },
- data() {
- return {
- option: {},
- dataList: [],
- form: {},
- page: {
- pageSize: 10,
- currentPage: 1,
- total: 0,
- pageSizes: [10, 50, 100, 200, 300, 400, 500]
- },
- search: {},
- show: true,
- loading: false,
- selection: [],
- detailData: {},
- contractorOption: [],
- oppositePersonOption: [],
- }
- },
- activated() {
- if (!this.show && !this.$store.getters.xsjhStatus) {
- this.show = true;
- }
- setTimeout(() => {
- if (this.$route.query.check && this.show) {
- this.detailData = {
- check: this.$route.query.check
- }
- this.show = false;
- this.$store.commit("XSJH_IN_DETAIL");
- } else if (this.$route.query.params) {
- this.detailData = {
- id: this.$route.query.params,
- view: true,
- }
- this.show = false;
- this.$store.commit("XSJH_IN_DETAIL");
- }
- }, 100);
- },
- async created() {
- this.option = await this.getColumnData(this.getColumnName(101), option);
- gainUser().then(res => {
- this.contractorOption = res.data.data;
- this.oppositePersonOption = res.data.data;
- })
- 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: {
- searchCriteriaSwitch(type) {
- if (type) {
- this.option.height = this.option.height - 90
- } else {
- this.option.height = this.option.height + 90
- }
- this.$refs.crud.getTableHeight()
- },
- newAdd() {
- this.show = false;
- this.$store.commit("XSJH_IN_DETAIL");
- },
- onLoad(page, params) {
- // 重置掉展开
- this.dataList.forEach(item => {
- this.$refs.crud.toggleRowExpansion(item, false)
- })
- let queryParams = Object.assign({}, params, {
- size: page.pageSize,
- current: page.currentPage,
- })
- if (queryParams.bizDate && queryParams.bizDate.length > 0) {
- queryParams = {
- ...queryParams,
- beginBizDate: queryParams.bizDate[0] + ' 00:00:00',
- endBizDate: queryParams.bizDate[1] + ' 23:59:59',
- }
- }
- delete queryParams.bizDate;
- this.loading = true;
- getList(queryParams).then(res => {
- this.dataList = res.data.data.records;
- this.page.total = res.data.data.total;
- this.option.height = window.innerHeight - 240;
- this.$nextTick(() => {
- this.$refs.crud.doLayout()
- })
- }).finally(() => {
- this.loading = false;
- })
- },
- async saveColumn() {
- const inSave = await this.saveColumnData(
- this.getColumnName(101),
- this.option
- );
- if (inSave) {
- this.$message.success("保存成功");
- //关闭窗口
- this.$refs.crud.$refs.dialogColumn.columnBox = false;
- this.$nextTick(() => {
- this.$refs.crud.doLayout()
- })
- }
- },
- async resetColumn() {
- this.option = option;
- const inSave = await this.delColumnData(this.getColumnName(101), option);
- if (inSave) {
- this.$nextTick(() => {
- this.$refs.crud.doLayout()
- })
- this.$message.success("重置成功");
- this.$refs.crud.$refs.dialogColumn.columnBox = false;
- }
- },
- //点击搜索按钮触发
- searchChange(params, done) {
- this.onLoad(this.page, params);
- done();
- },
- currentChange(val) {
- this.page.currentPage = val;
- },
- sizeChange(val) {
- this.page.currentPage = 1;
- this.page.pageSize = val;
- },
- refreshChange() {
- this.onLoad(this.page, this.search);
- },
- cellStyle() {
- return "padding:0;height:40px;";
- },
- copyDoc() { },
- selectionChange(list) {
- this.selection = list;
- },
- goBack() {
- if (this.$route.query.check) {
- this.$router.$avueRouter.closeTag(this.$route.fullPath);
- this.$router.push({
- path: "/saleLeads/index"
- });
- }
- this.detailData = this.$options.data().detailData;
- this.$store.commit('XSJH_OUT_DETAIL');
- this.show = true;
- this.onLoad(this.page, this.search);
- },
- copyOrder(id) {
- this.show = true;
- this.detailData = {
- id: id,
- status: "copy"
- };
- this.$nextTick(() => {
- this.show = false;
- });
- },
- contractorRemoteMethod(name) {
- gainUser({ realName: name }).then(res => {
- this.contractorOption = res.data.data;
- })
- },
- oppositePersonRemoteMethod(name) {
- gainUser({ realName: name }).then(res => {
- this.oppositePerson = res.data.data;
- })
- },
- // 详情打开
- beforeOpenPage(row, index) {
- this.show = false;
- this.detailData = {
- id: row.id,
- query: true, // 表示只是查询
- };
- },
- //删除列表后面的删除按钮触发触发(row, index, done)
- rowDel(row, index, done) {
- this.$confirm("确定删除数据?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(res => {
- return deleteList(row.id)
- }).then(() => {
- this.dataList.splice(row.$index, 1)
- this.$message({
- type: "success",
- message: "删除成功!"
- });
- this.page.currentPage = 1;
- this.onLoad(this.page)
- })
- },
- },
- }
- </script>
- <style scoped>
- </style>
|