|
@@ -0,0 +1,294 @@
|
|
|
+<template>
|
|
|
+ <div>
|
|
|
+ <basic-container v-show="!detailsOpen">
|
|
|
+ <avue-crud
|
|
|
+ :option="option"
|
|
|
+ :search.sync="search"
|
|
|
+ v-model="form"
|
|
|
+ :table-loading="loading"
|
|
|
+ :data="dataList"
|
|
|
+ ref="crud"
|
|
|
+ :key="key"
|
|
|
+ @on-load="onLoad"
|
|
|
+ @search-change="searchChange"
|
|
|
+ @row-del="rowDel"
|
|
|
+ @search-criteria-switch="searchCriteriaSwitch"
|
|
|
+ @refresh-change="refreshChange"
|
|
|
+ @resetColumn="resetColumnTwo('crud','option','optionList',261)"
|
|
|
+ @saveColumn="saveColumnTwo('crud','option','optionList',261)"
|
|
|
+ :page.sync="page">
|
|
|
+ <template slot-scope="{type,size,row,$index}" slot="menu">
|
|
|
+ <el-button icon="el-icon-view" :size="size" :type="type" @click="check(row)">查看</el-button>
|
|
|
+ <el-button icon="el-icon-delete" :size="size" v-if="row.status == 0" :type="type" @click="$refs.crud.rowDel(row,$index)">删除
|
|
|
+ </el-button>
|
|
|
+ </template>
|
|
|
+ <template slot="corpIdsSearch" slot-scope="scope">
|
|
|
+ <crop-select v-model="search.corpIds" corpType="KH"></crop-select>
|
|
|
+ </template>
|
|
|
+ <template slot-scope="{type,size,row,$index}" slot="menuLeft">
|
|
|
+ <div style="display:flex;">
|
|
|
+<!-- <el-button icon="el-icon-plus" type="primary" :size="size" @click="detailsOpen = true">创建单据</el-button>-->
|
|
|
+ <el-upload
|
|
|
+ class="upload-demo"
|
|
|
+ action="/api/blade-client/vehicleBrand/importBrand"
|
|
|
+ :headers="headers"
|
|
|
+ :on-error="onError"
|
|
|
+ :show-file-list="false"
|
|
|
+ multiple>
|
|
|
+ <el-button size="small" type="primary">导入品牌</el-button>
|
|
|
+ </el-upload>
|
|
|
+ <el-upload
|
|
|
+ class="upload-demo"
|
|
|
+ action="/api/blade-client/vehicleSeries/importSeries"
|
|
|
+ :headers="headers"
|
|
|
+ :on-error="onError"
|
|
|
+ :show-file-list="false"
|
|
|
+ multiple>
|
|
|
+ <el-button size="small" type="primary">导入车系</el-button>
|
|
|
+ </el-upload>
|
|
|
+ <el-upload
|
|
|
+ class="upload-demo"
|
|
|
+ action="/api/blade-client/vehicleModel/importModel"
|
|
|
+ :headers="headers"
|
|
|
+ :on-error="onError"
|
|
|
+ :show-file-list="false"
|
|
|
+ multiple>
|
|
|
+ <el-button size="small" type="primary">导入车型</el-button>
|
|
|
+ </el-upload>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </avue-crud>
|
|
|
+ </basic-container>
|
|
|
+<!-- <detailsPage v-if="detailsOpen" :onLoad="form" :detailData="detailData" @backToList="backToList"></detailsPage>-->
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import {getList, remove} from "@/api/vehicleBrandAndModel.js";
|
|
|
+import {getToken} from "@/util/auth";
|
|
|
+// import detailsPage from "./detailsPage"
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: "index",
|
|
|
+ components: {
|
|
|
+ // detailsPage
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ headers: { "Blade-Auth": "Bearer " + getToken() },
|
|
|
+ detailsOpen: false,
|
|
|
+ loading: false,
|
|
|
+ search: {},
|
|
|
+ form: {},
|
|
|
+ dataList: [],
|
|
|
+ detailData: {},
|
|
|
+ page: {
|
|
|
+ pageSize: 20,
|
|
|
+ currentPage: 1,
|
|
|
+ total: 0,
|
|
|
+ pageSizes: [10, 20, 30, 40, 50, 100, 200, 300, 400, 500]
|
|
|
+ },
|
|
|
+ key:0,
|
|
|
+ option: {},
|
|
|
+ optionList: {
|
|
|
+ viewBtn: false,
|
|
|
+ editBtn: false,
|
|
|
+ delBtn: false,
|
|
|
+ addBtn: false,
|
|
|
+ index: true,
|
|
|
+ span: 8,
|
|
|
+ border: true,
|
|
|
+ height:"auto",
|
|
|
+ searchMenuPosition: "right",
|
|
|
+ align: "center",
|
|
|
+ menu:false,
|
|
|
+ menuWidth:140,
|
|
|
+ searchSpan: 8,
|
|
|
+ searchIcon: true,
|
|
|
+ searchIndex: 2,
|
|
|
+ highlightCurrentRow: true,
|
|
|
+ dialogWidth: "70%",
|
|
|
+ showSummary: true,
|
|
|
+ sumColumnList: [{
|
|
|
+ name: 'boxNumber',
|
|
|
+ type: 'sum',
|
|
|
+ decimals:0
|
|
|
+ },{
|
|
|
+ name: 'totalAmount',
|
|
|
+ type: 'sum',
|
|
|
+ decimals:2
|
|
|
+ }],
|
|
|
+ column: [{
|
|
|
+ label: '品牌',
|
|
|
+ prop: 'brand',
|
|
|
+ width: 220,
|
|
|
+ search: true
|
|
|
+ },{
|
|
|
+ label: "制单人",
|
|
|
+ prop: "createUserName",
|
|
|
+ searchProp:"createUser",
|
|
|
+ overHidden: true,
|
|
|
+ search: true,
|
|
|
+ filterable: true,
|
|
|
+ remote: true,
|
|
|
+ type: "select",
|
|
|
+ dicUrl: "/api/blade-user/page?size=20¤t=1&account={{key}}",
|
|
|
+ props: {
|
|
|
+ label: "account",
|
|
|
+ value: "id",
|
|
|
+ res: 'data.records'
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ label: "制单日期",
|
|
|
+ prop: "createTime",
|
|
|
+ searchProp:"createTimeList",
|
|
|
+ type: "date",
|
|
|
+ overHidden: true,
|
|
|
+ searchRange: true,
|
|
|
+ searchDefaultTime: ["00:00:00", "23:59:59"],
|
|
|
+ format: "yyyy-MM-dd",
|
|
|
+ valueFormat: "yyyy-MM-dd HH:mm:ss"
|
|
|
+ }, {
|
|
|
+ label: "更新人",
|
|
|
+ prop: "updateUserName",
|
|
|
+ searchProp:"updateUser",
|
|
|
+ overHidden: true,
|
|
|
+ search: true,
|
|
|
+ filterable: true,
|
|
|
+ remote: true,
|
|
|
+ type: "select",
|
|
|
+ dicUrl: "/api/blade-user/page?size=20¤t=1&account={{key}}",
|
|
|
+ props: {
|
|
|
+ label: "account",
|
|
|
+ value: "id",
|
|
|
+ res: 'data.records'
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ label: "更新日期",
|
|
|
+ prop: "updateTime",
|
|
|
+ searchProp:"updateTimeList",
|
|
|
+ type: "date",
|
|
|
+ overHidden: true,
|
|
|
+ searchRange: true,
|
|
|
+ searchDefaultTime: ["00:00:00", "23:59:59"],
|
|
|
+ format: "yyyy-MM-dd",
|
|
|
+ valueFormat: "yyyy-MM-dd HH:mm:ss"
|
|
|
+ }]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ activated() {
|
|
|
+ if (this.$route.query.check) {
|
|
|
+ this.detailsOpen = false
|
|
|
+ this.detailData = {
|
|
|
+ id: this.$route.query.check.billId,
|
|
|
+ check: this.$route.query.check,
|
|
|
+ };
|
|
|
+ this.form = {
|
|
|
+ id:this.$route.query.check.billId
|
|
|
+ }
|
|
|
+ this.detailsOpen = true
|
|
|
+ this.$router.$avueRouter.closeTag(window.location.hash.slice(1))
|
|
|
+ }
|
|
|
+ },
|
|
|
+ async created() {
|
|
|
+ this.option = await this.getColumnData(this.getColumnName(261), this.optionList);
|
|
|
+ this.key++
|
|
|
+ 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: {
|
|
|
+ onError(err, file, fileList){
|
|
|
+ this.$message.error(JSON.parse(err.message).msg)
|
|
|
+ },
|
|
|
+ check(row){
|
|
|
+ this.form = row
|
|
|
+ this.detailsOpen = true
|
|
|
+ },
|
|
|
+ backToList(type) {
|
|
|
+ this.form = {}
|
|
|
+ this.detailsOpen = false
|
|
|
+ if (type === 0){
|
|
|
+ this.detailData = {}
|
|
|
+ }
|
|
|
+ this.onLoad(this.page,this.search)
|
|
|
+ },
|
|
|
+ searchCriteriaSwitch(type) {
|
|
|
+ this.$refs.crud.getTableHeight();
|
|
|
+ },
|
|
|
+ //刷新
|
|
|
+ refreshChange() {
|
|
|
+ this.onLoad(this.page, this.search)
|
|
|
+ },
|
|
|
+ rowDel(form, index) {
|
|
|
+ this.$confirm('此操作将永久删除该行, 是否继续?', '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ }).then(() => {
|
|
|
+ remove(form.id).then(res => {
|
|
|
+ this.$message({
|
|
|
+ type: 'success',
|
|
|
+ message: '删除成功!'
|
|
|
+ });
|
|
|
+ })
|
|
|
+ }).catch(() => {
|
|
|
+ });
|
|
|
+ },
|
|
|
+ searchChange(params, done) {
|
|
|
+ done();
|
|
|
+ this.onLoad(this.page, params)
|
|
|
+ },
|
|
|
+ onLoad(page, params = {}) {
|
|
|
+ params = {
|
|
|
+ ...params,
|
|
|
+ current: page.currentPage,
|
|
|
+ size: page.pageSize,
|
|
|
+ ...Object.assign(params, this.search)
|
|
|
+ }
|
|
|
+ this.loading = true
|
|
|
+ getList(params).then(res => {
|
|
|
+ this.dataList = res.data.data.records
|
|
|
+ this.page.total = res.data.data.total
|
|
|
+ this.loading = false
|
|
|
+ }).finally(() => {
|
|
|
+ this.loading = false
|
|
|
+ })
|
|
|
+ },
|
|
|
+//自定义列保存
|
|
|
+ async saveColumnTwo(ref, option, optionBack, code) {
|
|
|
+ /**
|
|
|
+ * 已定义全局方法,直接使用,saveColumnData保存列数据方法,参数传值(表格名称,当前表格的option数据)
|
|
|
+ * 已定义全局方法,直接使用,getColumnName方法用来获取枚举值,参数根据自己定义的code值获取中文名
|
|
|
+ * 一定要执行异步操作,要等接口成功返回,才能执行下一行代码
|
|
|
+ */
|
|
|
+ const inSave = await this.saveColumnData(this.getColumnName(code), this[option]);
|
|
|
+ if (inSave) {
|
|
|
+ this.$message.success("保存成功");
|
|
|
+ //关闭窗口
|
|
|
+ this.$refs[ref].$refs.dialogColumn.columnBox = false;
|
|
|
+ }
|
|
|
+ },
|
|
|
+//自定义列重置
|
|
|
+ async resetColumnTwo(ref, option, optionBack, code) {
|
|
|
+ this[option] = this[optionBack];
|
|
|
+ const inSave = await this.delColumnData(this.getColumnName(code), this[optionBack]);
|
|
|
+ if (inSave) {
|
|
|
+ this.$message.success("重置成功");
|
|
|
+ this.$refs[ref].$refs.dialogColumn.columnBox = false;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped>
|
|
|
+
|
|
|
+</style>
|