123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308 |
- <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"
- @selection-change="selectionChange"
- @row-del="rowDel"
- @refresh-change="refreshChange"
- @resetColumn="resetColumnTwo('crud','option','optionList',246)"
- @saveColumn="saveColumnTwo('crud','option','optionList',246)"
- :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-scope="{type,size,row,$index}" slot="menuLeft">
- <el-button icon="el-icon-plus" type="primary" :size="size" @click="detailsOpen = true">创建单据</el-button>
- <el-button class="el-icon-document-copy" type="success" size="small" :disabled="!(selectionList.length === 1)" @click="copyData">复制单据</el-button>
- <el-button class="el-icon-download" type="warning" size="small" @click="outExport">导出</el-button>
- <div style="display: inline-block;">
- <el-upload class="upload-demo"
- :action="action"
- :headers="headers"
- :show-file-list="false" :limit="1" :on-success="onSuccess">
- <el-button class="el-icon-upload2" size="small" type="primary" :size="size">点击上传</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/importTrade/importDeclaration.js";
- import detailsPage from "./detailsPage"
- import {getToken} from "@/util/auth";
- export default {
- name: "index",
- components: {
- detailsPage
- },
- data() {
- return {
- action: "/api/blade-box-tube/declareCustoms/importPDF",
- headers: { "Blade-Auth": "Bearer " + getToken() },
- detailsOpen: false,
- loading: false,
- search: {},
- form: {},
- dataList: [],
- selectionList: [],
- 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,
- selection: true,
- height:"auto",
- searchMenuPosition: "right",
- align: "center",
- menuWidth:140,
- searchSpan: 8,
- searchIcon: true,
- searchIndex: 2,
- highlightCurrentRow: true,
- dialogWidth: "70%",
- column: [{
- label: '申报日期',
- prop: 'declareDate',
- searchProp: 'declareDateList',
- width: 120,
- search: true,
- overHidden: true,
- type: "date",
- searchRange: true,
- searchDefaultTime: ["00:00:00", "23:59:59"],
- format: "yyyy-MM-dd",
- valueFormat: "yyyy-MM-dd HH:mm:ss"
- }, {
- label: '统一编号',
- prop: 'unifiedNumbering',
- width: 170,
- search: true,
- overHidden: true,
- }, {
- label: '预录入编号',
- prop: 'preEntryNo',
- search: true,
- overHidden: true,
- width: 170
- }, {
- label: '海关编号',
- prop: 'customsNo',
- width: 200,
- search: true,
- overHidden: true,
- }, {
- label: '提运单号',
- prop: 'deliveryNumbers',
- width: 120,
- search: true,
- overHidden: true,
- }, {
- label: '申报地海关',
- prop: 'customsDeclarationPlace',
- width: 120,
- filterable: true,
- type: 'select',
- dicUrl: "/api/blade-system/dict-biz/dictionary?code=customs",
- props: {
- label: "dictValue",
- value: "dictValue"
- },
- overHidden: true,
- search: true,
- }, {
- label: '状态',
- prop: 'status',
- width: 140,
- search: true,
- overHidden: true,
- filterable: true,
- type: 'select',
- dataType: 'number',
- dicUrl: "/api/blade-system/dict-biz/dictionary?code=declaration_status",
- props: {
- label: "dictValue",
- value: "dictKey"
- }
- }]
- }
- }
- },
- 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(246), 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: {
- copyData(){
- this.form = {id:`复制${this.selectionList[0].id}`}
- this.detailsOpen = true
- },
- selectionChange(list){
- this.selectionList = list
- },
- outExport() {
- let config = {params: {...this.search}}
- if (config.params) {
- for (const propName of Object.keys(config.params)) {
- const value = config.params[propName];
- if (value !== null && typeof (value) !== "undefined") {
- if (value instanceof Array) {
- for (const key of Object.keys(value)) {
- let params = propName + '[' + key + ']';
- config.params[params] = value[key]
- }
- delete config.params[propName]
- }
- }
- }
- }
- const routeData = this.$router.resolve({
- path: '/api/blade-box-tube/declareCustoms/export', //跳转目标窗口的地址
- query: {
- ...config.params, //括号内是要传递给新窗口的参数
- importExportSigns: "BGJK"
- }
- })
- window.open(routeData.href.slice(1, routeData.href.length) + '&' + `${this.website.tokenHeader}=${getToken()}`);
- },
- check(row){
- this.form = row
- this.detailsOpen = true
- },
- onSuccess(response, file, fileList){
- console.log(response, file, fileList)
- },
- backToList(type) {
- this.form = {}
- this.detailsOpen = false
- if (type === 0){
- this.detailData = {}
- }
- this.onLoad(this.page,this.search)
- },
- //刷新
- 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: '删除成功!'
- });
- })
- this.onLoad(this.page,this.search)
- }).catch(() => {
- this.$message({
- type: 'info',
- message: '已取消!'
- });
- });
- },
- searchChange(params, done) {
- done();
- this.onLoad(this.page, params)
- },
- onLoad(page, params = {}) {
- params = {
- ...params,
- current: page.currentPage,
- size: page.pageSize,
- importExportSigns: "BGJK",
- ...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>
|