12 changed files with 1150 additions and 14 deletions
@ -0,0 +1,50 @@
|
||||
import request from '@/axios'; |
||||
|
||||
export const getList = (current, size, params) => { |
||||
return request({ |
||||
url: '/logpm-factory/snm/staorderPackages/list', |
||||
method: 'get', |
||||
params: { |
||||
...params, |
||||
current, |
||||
size, |
||||
} |
||||
}) |
||||
} |
||||
|
||||
export const getDetail = (id) => { |
||||
return request({ |
||||
url: '/logpm-factory/snm/staorderPackages/detail', |
||||
method: 'get', |
||||
params: { |
||||
id |
||||
} |
||||
}) |
||||
} |
||||
|
||||
export const remove = (ids) => { |
||||
return request({ |
||||
url: '/logpm-factory/snm/staorderPackages/remove', |
||||
method: 'post', |
||||
params: { |
||||
ids, |
||||
} |
||||
}) |
||||
} |
||||
|
||||
export const add = (row) => { |
||||
return request({ |
||||
url: '/logpm-factory/snm/staorderPackages/submit', |
||||
method: 'post', |
||||
data: row |
||||
}) |
||||
} |
||||
|
||||
export const update = (row) => { |
||||
return request({ |
||||
url: '/logpm-factory/snm/staorderPackages/submit', |
||||
method: 'post', |
||||
data: row |
||||
}) |
||||
} |
||||
|
@ -0,0 +1,50 @@
|
||||
import request from '@/axios'; |
||||
|
||||
export const getList = (current, size, params) => { |
||||
return request({ |
||||
url: '/logpm-factory/snm/stationOrder/list', |
||||
method: 'get', |
||||
params: { |
||||
...params, |
||||
current, |
||||
size, |
||||
} |
||||
}) |
||||
} |
||||
|
||||
export const getDetail = (id) => { |
||||
return request({ |
||||
url: '/logpm-factory/snm/stationOrder/detail', |
||||
method: 'get', |
||||
params: { |
||||
id |
||||
} |
||||
}) |
||||
} |
||||
|
||||
export const remove = (ids) => { |
||||
return request({ |
||||
url: '/logpm-factory/snm/stationOrder/remove', |
||||
method: 'post', |
||||
params: { |
||||
ids, |
||||
} |
||||
}) |
||||
} |
||||
|
||||
export const add = (row) => { |
||||
return request({ |
||||
url: '/logpm-factory/snm/stationOrder/submit', |
||||
method: 'post', |
||||
data: row |
||||
}) |
||||
} |
||||
|
||||
export const update = (row) => { |
||||
return request({ |
||||
url: '/logpm-factory/snm/stationOrder/submit', |
||||
method: 'post', |
||||
data: row |
||||
}) |
||||
} |
||||
|
@ -0,0 +1,123 @@
|
||||
export default { |
||||
height:'auto', |
||||
calcHeight: 30, |
||||
tip: false, |
||||
searchShow: true, |
||||
searchMenuSpan: 6, |
||||
border: true, |
||||
index: true, |
||||
viewBtn: false, |
||||
deBtn: false, |
||||
addBtn:false, |
||||
editBtn: false, |
||||
menu:false, |
||||
selection: false, |
||||
menuWidth: 300, |
||||
column: [ |
||||
{ |
||||
label: "主键", |
||||
prop: "id", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "订单id", |
||||
prop: "orderId", |
||||
type: "input", |
||||
width:"250px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "包件号", |
||||
prop: "packagenum", |
||||
type: "input", |
||||
width:"250px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "包件类型", |
||||
prop: "lx", |
||||
type: "input", |
||||
width:"200px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "派车单号", |
||||
prop: "tcWlb001", |
||||
type: "input", |
||||
width:"240px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "分包标识", |
||||
prop: "tcWld011", |
||||
type: "input", |
||||
width:"200px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "客户订单号", |
||||
prop: "tcPoa014", |
||||
type: "input", |
||||
width:"240px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "客户订单号?", |
||||
prop: "tcPoa046", |
||||
type: "input", |
||||
width:"150px", |
||||
align:'center', |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "创建人", |
||||
prop: "createdUser", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "创建时间", |
||||
prop: "createTime", |
||||
type: "date", |
||||
format: "YYYY-MM-DD", |
||||
valueFormat: "YYYY-MM-DD", |
||||
width:"200px", |
||||
align:'center', |
||||
}, |
||||
// {
|
||||
// label: "更新人",
|
||||
// prop: "updatedUser",
|
||||
// type: "input",
|
||||
// },
|
||||
// {
|
||||
// label: "更新时间",
|
||||
// prop: "updatedTime",
|
||||
// type: "input",
|
||||
// },
|
||||
// {
|
||||
// label: "状态",
|
||||
// prop: "status",
|
||||
// type: "input",
|
||||
// },
|
||||
// {
|
||||
// label: "创建部门",
|
||||
// prop: "createdDept",
|
||||
// type: "input",
|
||||
// },
|
||||
// {
|
||||
// label: "是否已删除",
|
||||
// prop: "isDeleted",
|
||||
// type: "input",
|
||||
// },
|
||||
] |
||||
} |
@ -0,0 +1,346 @@
|
||||
export default { |
||||
height:'auto', |
||||
calcHeight: 30, |
||||
tip: false, |
||||
addBtn:false, |
||||
editBtn: false, |
||||
searchShow: true, |
||||
searchMenuSpan: 6, |
||||
delBtn: false, // 行删除按钮
|
||||
border: true, |
||||
index: true, |
||||
viewBtn: true, |
||||
selection: false, |
||||
menuWidth: 300, |
||||
column: [ |
||||
{ |
||||
label: "主键", |
||||
prop: "id", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "派车单", |
||||
prop: "tcWla001", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: true, |
||||
width:"150px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "产地", |
||||
prop: "tcPoa061", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: true, |
||||
width:"150px", |
||||
align:'center', |
||||
// dicUrl: '/logpm-factory/snm/stationlinenum/dictionary',
|
||||
// props: {
|
||||
// label: 'logisticsLineName',
|
||||
// value: 'logisticsLineNumber',
|
||||
// },
|
||||
}, |
||||
{ |
||||
label: "线路编码", |
||||
prop: "tcWla005", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: true, |
||||
search: true, |
||||
width:"150px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "线路名称", |
||||
prop: "tcCmb003", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: true, |
||||
search: true, |
||||
width:"150px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "物流公司编码", |
||||
prop: "tcWlb006", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: true, |
||||
// search: true,
|
||||
width:"150px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "物流公司名称", |
||||
prop: "tcBmb003", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: true, |
||||
// search: true,
|
||||
width:"150px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "货运站编码", |
||||
prop: "tcWlb005", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: true, |
||||
// search: true,
|
||||
width:"150px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "货运站编码名称", |
||||
prop: "tcDmb003", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: true, |
||||
// search: true,
|
||||
width:"150px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "派车时间", |
||||
prop: "tcWla002", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: true, |
||||
width:"150px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "客户单号", |
||||
prop: "tcWlb008", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: true, |
||||
search: true, |
||||
width:"150px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "系统单号", |
||||
prop: "tcWlb007", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: true, |
||||
search: true, |
||||
width:"150px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "出货总包数", |
||||
prop: "tcWlb009", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: true, |
||||
width:"150px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "柜体包数", |
||||
prop: "tcWlb019", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: true, |
||||
width:"150px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "五金包数", |
||||
prop: "tcWlb020", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: true, |
||||
width:"150px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "背板包数", |
||||
prop: "tcWlb021", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: true, |
||||
width:"150px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "背板2包数", |
||||
prop: "tcWlb035", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: true, |
||||
width:"150px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "门包数", |
||||
prop: "tcWlb022", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: true, |
||||
width:"150px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "特排包数", |
||||
prop: "tcWlb033", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: true, |
||||
width:"150px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "标抽包数", |
||||
prop: "tcWlb034", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: true, |
||||
width:"150px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "分批出货类别", |
||||
prop: "tcWlb037", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: true, |
||||
width:"150px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "门店名称", |
||||
prop: "occ02", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: true, |
||||
width:"150px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "收货人", |
||||
prop: "tcWlb010", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: true, |
||||
width:"150px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "收货人手机号", |
||||
prop: "tcWlb011", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: true, |
||||
width:"150px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "状态", |
||||
prop: "status", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
width:"80px", |
||||
align:'center', |
||||
}, |
||||
{ |
||||
label: "是否已删除", |
||||
prop: "isDeleted", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "创建部门", |
||||
prop: "createDept", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "更新时间", |
||||
prop: "updateTime", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "更新人", |
||||
prop: "updateUser", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "创建时间", |
||||
prop: "createTime", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "创建人", |
||||
prop: "createUser", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "是否更新到老系统", |
||||
prop: "identification", |
||||
type: "input", |
||||
width:"180px", |
||||
align:'center', |
||||
dicUrl: '/api/blade-system/dict-biz/dictionary?code=yes_no', |
||||
props: { |
||||
label: 'dictValue', |
||||
value: 'dictKey', |
||||
}, |
||||
}, |
||||
] |
||||
} |
@ -0,0 +1,250 @@
|
||||
<template> |
||||
<basic-container> |
||||
<avue-crud :option="option" |
||||
v-model:search="search" |
||||
v-model:page="page" |
||||
v-model="form" |
||||
:table-loading="loading" |
||||
:data="data" |
||||
:permission="permissionList" |
||||
:before-open="beforeOpen" |
||||
ref="crud" |
||||
@row-update="rowUpdate" |
||||
@row-save="rowSave" |
||||
@row-del="rowDel" |
||||
@search-change="searchChange" |
||||
@search-reset="searchReset" |
||||
@selection-change="selectionChange" |
||||
@current-change="currentChange" |
||||
@size-change="sizeChange" |
||||
@refresh-change="refreshChange" |
||||
@on-load="onLoad"> |
||||
<template #menu-left> |
||||
<!-- <el-button type="danger"--> |
||||
<!-- icon="el-icon-delete"--> |
||||
<!-- plain--> |
||||
<!-- v-if="permission.staorderPackages_delete"--> |
||||
<!-- @click="handleDelete">删 除--> |
||||
<!-- </el-button>--> |
||||
<el-button type="primary" |
||||
@click="handleVie">返 回 |
||||
</el-button> |
||||
</template> |
||||
</avue-crud> |
||||
</basic-container> |
||||
</template> |
||||
|
||||
<script> |
||||
import {getList, getDetail, add, update, remove} from "@/api/factory/snm/staorderPackages"; |
||||
import option from "@/option/factory/snm/staorderPackages"; |
||||
import {mapGetters} from "vuex"; |
||||
import {exportBlob} from "@/api/common"; |
||||
import {getToken} from '@/utils/auth'; |
||||
import {downloadXls} from "@/utils/util"; |
||||
import {dateNow} from "@/utils/date"; |
||||
import NProgress from 'nprogress'; |
||||
import 'nprogress/nprogress.css'; |
||||
|
||||
export default { |
||||
data() { |
||||
return { |
||||
form: {}, |
||||
query: {}, |
||||
search: {}, |
||||
loading: true, |
||||
page: { |
||||
pageSize: 10, |
||||
currentPage: 1, |
||||
total: 0 |
||||
}, |
||||
selectionList: [], |
||||
option: option, |
||||
data: [] |
||||
}; |
||||
}, |
||||
computed: { |
||||
...mapGetters(["permission"]), |
||||
permissionList() { |
||||
return { |
||||
addBtn: this.validData(this.permission.staorderPackages_add, false), |
||||
viewBtn: this.validData(this.permission.staorderPackages_view, false), |
||||
delBtn: this.validData(this.permission.staorderPackages_delete, false), |
||||
editBtn: this.validData(this.permission.staorderPackages_edit, false) |
||||
}; |
||||
}, |
||||
ids() { |
||||
let ids = []; |
||||
this.selectionList.forEach(ele => { |
||||
ids.push(ele.id); |
||||
}); |
||||
return ids.join(","); |
||||
} |
||||
}, |
||||
watch: { |
||||
// eslint-disable-next-line no-unused-vars |
||||
'$route'(to, from) { |
||||
// this.isadd =false; |
||||
// this.query.masterId = null; |
||||
// this.masterId = null; |
||||
if (!!this.$route.query.data) { |
||||
// //做一些路由变化的响应 |
||||
// // this.isadd =true; |
||||
// this.query.masterId = this.$route.query.data; |
||||
// this.masterId = this.$route.query.data; |
||||
//重新获取数据 |
||||
this.onLoad(this.page); |
||||
} else { |
||||
} |
||||
} |
||||
}, |
||||
methods: { |
||||
rowSave(row, done, loading) { |
||||
add(row).then(() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!" |
||||
}); |
||||
done(); |
||||
}, error => { |
||||
loading(); |
||||
window.console.log(error); |
||||
}); |
||||
}, |
||||
//返回 |
||||
handleVie() { |
||||
// this.$store.dispatch(this.$route.path, this.$route); |
||||
this.$router.push({ |
||||
path: '/factory/snm/stationOrder' |
||||
}); |
||||
}, |
||||
rowUpdate(row, index, done, loading) { |
||||
update(row).then(() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!" |
||||
}); |
||||
done(); |
||||
}, error => { |
||||
loading(); |
||||
console.log(error); |
||||
}); |
||||
}, |
||||
rowDel(row) { |
||||
this.$confirm("确定将选择数据删除?", { |
||||
confirmButtonText: "确定", |
||||
cancelButtonText: "取消", |
||||
type: "warning" |
||||
}) |
||||
.then(() => { |
||||
return remove(row.id); |
||||
}) |
||||
.then(() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!" |
||||
}); |
||||
}); |
||||
}, |
||||
handleDelete() { |
||||
if (this.selectionList.length === 0) { |
||||
this.$message.warning("请选择至少一条数据"); |
||||
return; |
||||
} |
||||
this.$confirm("确定将选择数据删除?", { |
||||
confirmButtonText: "确定", |
||||
cancelButtonText: "取消", |
||||
type: "warning" |
||||
}) |
||||
.then(() => { |
||||
return remove(this.ids); |
||||
}) |
||||
.then(() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!" |
||||
}); |
||||
this.$refs.crud.toggleSelection(); |
||||
}); |
||||
}, |
||||
handleExport() { |
||||
let downloadUrl = `/logpm-factory/staorderPackages/export-staorderPackages?${this.website.tokenHeader}=${getToken()}`; |
||||
const { |
||||
} = this.query; |
||||
let values = { |
||||
}; |
||||
this.$confirm("是否导出数据?", "提示", { |
||||
confirmButtonText: "确定", |
||||
cancelButtonText: "取消", |
||||
type: "warning" |
||||
}).then(() => { |
||||
NProgress.start(); |
||||
exportBlob(downloadUrl, values).then(res => { |
||||
downloadXls(res.data, `运单包件信息${dateNow()}.xlsx`); |
||||
NProgress.done(); |
||||
}) |
||||
}); |
||||
}, |
||||
beforeOpen(done, type) { |
||||
if (["edit", "view"].includes(type)) { |
||||
getDetail(this.form.id).then(res => { |
||||
this.form = res.data.data; |
||||
}); |
||||
} |
||||
done(); |
||||
}, |
||||
searchReset() { |
||||
this.query = {}; |
||||
this.onLoad(this.page); |
||||
}, |
||||
searchChange(params, done) { |
||||
this.query = params; |
||||
this.page.currentPage = 1; |
||||
this.onLoad(this.page, params); |
||||
done(); |
||||
}, |
||||
selectionChange(list) { |
||||
this.selectionList = list; |
||||
}, |
||||
selectionClear() { |
||||
this.selectionList = []; |
||||
this.$refs.crud.toggleSelection(); |
||||
}, |
||||
currentChange(currentPage){ |
||||
this.page.currentPage = currentPage; |
||||
}, |
||||
sizeChange(pageSize){ |
||||
this.page.pageSize = pageSize; |
||||
}, |
||||
refreshChange() { |
||||
this.onLoad(this.page, this.query); |
||||
}, |
||||
onLoad(page, params = {}) { |
||||
this.loading = true; |
||||
const { |
||||
orderId, |
||||
} = this.query; |
||||
|
||||
if (!!this.$route.query.data) { |
||||
this.query.orderId = this.$route.query.data; |
||||
} |
||||
let values = { |
||||
orderId : this.$route.query.data, |
||||
}; |
||||
getList(page.currentPage, page.pageSize, values).then(res => { |
||||
const data = res.data.data; |
||||
this.page.total = data.total; |
||||
this.data = data.records; |
||||
this.loading = false; |
||||
this.selectionClear(); |
||||
}); |
||||
} |
||||
} |
||||
}; |
||||
</script> |
||||
|
||||
<style> |
||||
</style> |
@ -0,0 +1,295 @@
|
||||
<template> |
||||
<basic-container> |
||||
<avue-crud :option="option" |
||||
v-model:search="search" |
||||
v-model:page="page" |
||||
v-model="form" |
||||
:table-loading="loading" |
||||
:data="data" |
||||
:permission="permissionList" |
||||
:before-open="beforeOpen" |
||||
ref="crud" |
||||
@row-update="rowUpdate" |
||||
@row-save="rowSave" |
||||
@row-del="rowDel" |
||||
@search-change="searchChange" |
||||
@search-reset="searchReset" |
||||
@selection-change="selectionChange" |
||||
@current-change="currentChange" |
||||
@size-change="sizeChange" |
||||
@refresh-change="refreshChange" |
||||
@on-load="onLoad"> |
||||
<template #menu-left> |
||||
<!-- <el-button type="danger"--> |
||||
<!-- icon="el-icon-delete"--> |
||||
<!-- plain--> |
||||
<!-- v-if="permission.stationOrder_delete"--> |
||||
<!-- @click="handleDelete">删 除--> |
||||
<!-- </el-button>--> |
||||
<!-- <el-button type="warning"--> |
||||
<!-- plain--> |
||||
<!-- icon="el-icon-download"--> |
||||
<!-- @click="handleExport">导 出--> |
||||
<!-- </el-button>--> |
||||
</template> |
||||
<template #menu="{size,row,index}"> |
||||
<el-button type="primary" text icon="el-icon-view" @click="handleview(row)">查看包件信息</el-button> |
||||
</template> |
||||
</avue-crud> |
||||
</basic-container> |
||||
</template> |
||||
|
||||
<script> |
||||
import {getList, getDetail, add, update, remove} from "@/api/factory/snm/stationOrder"; |
||||
import option from "@/option/factory/snm/stationOrder"; |
||||
import {mapGetters} from "vuex"; |
||||
import {exportBlob} from "@/api/common"; |
||||
import {getToken} from '@/utils/auth'; |
||||
import {downloadXls} from "@/utils/util"; |
||||
import {dateNow} from "@/utils/date"; |
||||
import NProgress from 'nprogress'; |
||||
import 'nprogress/nprogress.css'; |
||||
import { getDictionaryBiz } from '@/api/system/dict'; |
||||
import { getDictionary as linenumData } from '@/api/factory/snm/stationlinenum'; |
||||
|
||||
export default { |
||||
data() { |
||||
return { |
||||
form: {}, |
||||
query: {}, |
||||
search: {}, |
||||
loading: true, |
||||
linenumData:[], |
||||
page: { |
||||
pageSize: 10, |
||||
currentPage: 1, |
||||
total: 0 |
||||
}, |
||||
selectionList: [], |
||||
option: option, |
||||
data: [] |
||||
}; |
||||
}, |
||||
computed: { |
||||
...mapGetters(["permission"]), |
||||
permissionList() { |
||||
return { |
||||
addBtn: this.validData(this.permission.stationOrder_add, false), |
||||
viewBtn: this.validData(this.permission.stationOrder_view, false), |
||||
delBtn: this.validData(this.permission.stationOrder_delete, false), |
||||
editBtn: this.validData(this.permission.stationOrder_edit, false) |
||||
}; |
||||
}, |
||||
ids() { |
||||
let ids = []; |
||||
this.selectionList.forEach(ele => { |
||||
ids.push(ele.id); |
||||
}); |
||||
return ids.join(","); |
||||
} |
||||
}, |
||||
mounted() { |
||||
//查询字典 |
||||
this.queryDictionary(); |
||||
|
||||
}, |
||||
methods: { |
||||
queryDictionary() { |
||||
linenumData().then(res => { |
||||
this.linenumData = res.data.data |
||||
this.onLoad(this.page); |
||||
}); |
||||
}, |
||||
rowSave(row, done, loading) { |
||||
add(row).then(() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!" |
||||
}); |
||||
done(); |
||||
}, error => { |
||||
loading(); |
||||
window.console.log(error); |
||||
}); |
||||
}, |
||||
rowUpdate(row, index, done, loading) { |
||||
update(row).then(() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!" |
||||
}); |
||||
done(); |
||||
}, error => { |
||||
loading(); |
||||
console.log(error); |
||||
}); |
||||
}, |
||||
rowDel(row) { |
||||
this.$confirm("确定将选择数据删除?", { |
||||
confirmButtonText: "确定", |
||||
cancelButtonText: "取消", |
||||
type: "warning" |
||||
}) |
||||
.then(() => { |
||||
return remove(row.id); |
||||
}) |
||||
.then(() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!" |
||||
}); |
||||
}); |
||||
}, |
||||
//查看包件信息 |
||||
handleview(row) { |
||||
console.log("row>>>>",row); |
||||
this.$router.push({ |
||||
path: '/factory/snm/staorderPackages', |
||||
query: { |
||||
data: row.id, |
||||
name: row.occ02 + "包件信息" |
||||
} |
||||
}); |
||||
}, |
||||
handleDelete() { |
||||
if (this.selectionList.length === 0) { |
||||
this.$message.warning("请选择至少一条数据"); |
||||
return; |
||||
} |
||||
this.$confirm("确定将选择数据删除?", { |
||||
confirmButtonText: "确定", |
||||
cancelButtonText: "取消", |
||||
type: "warning" |
||||
}) |
||||
.then(() => { |
||||
return remove(this.ids); |
||||
}) |
||||
.then(() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!" |
||||
}); |
||||
this.$refs.crud.toggleSelection(); |
||||
}); |
||||
}, |
||||
handleExport() { |
||||
let downloadUrl = `/logpm-factory/stationOrder/export-stationOrder?${this.website.tokenHeader}=${getToken()}`; |
||||
const { |
||||
tcWla005, |
||||
tcCmb003, |
||||
tcWlb006, |
||||
tcBmb003, |
||||
tcWlb005, |
||||
tcDmb003, |
||||
tcWlb008, |
||||
tcWlb007, |
||||
} = this.query; |
||||
let values = { |
||||
tcWla005: tcWla005, |
||||
tcCmb003: tcCmb003, |
||||
tcWlb006: tcWlb006, |
||||
tcBmb003: tcBmb003, |
||||
tcWlb005: tcWlb005, |
||||
tcDmb003: tcDmb003, |
||||
tcWlb008: tcWlb008, |
||||
tcWlb007: tcWlb007, |
||||
}; |
||||
this.$confirm("是否导出数据?", "提示", { |
||||
confirmButtonText: "确定", |
||||
cancelButtonText: "取消", |
||||
type: "warning" |
||||
}).then(() => { |
||||
NProgress.start(); |
||||
exportBlob(downloadUrl, values).then(res => { |
||||
downloadXls(res.data, `寺尼曼运单${dateNow()}.xlsx`); |
||||
NProgress.done(); |
||||
}) |
||||
}); |
||||
}, |
||||
beforeOpen(done, type) { |
||||
if (["edit", "view"].includes(type)) { |
||||
getDetail(this.form.id).then(res => { |
||||
this.form = res.data.data; |
||||
}); |
||||
} |
||||
done(); |
||||
}, |
||||
searchReset() { |
||||
this.query = {}; |
||||
this.onLoad(this.page); |
||||
}, |
||||
searchChange(params, done) { |
||||
this.query = params; |
||||
this.page.currentPage = 1; |
||||
this.onLoad(this.page, params); |
||||
done(); |
||||
}, |
||||
selectionChange(list) { |
||||
this.selectionList = list; |
||||
}, |
||||
selectionClear() { |
||||
this.selectionList = []; |
||||
this.$refs.crud.toggleSelection(); |
||||
}, |
||||
currentChange(currentPage){ |
||||
this.page.currentPage = currentPage; |
||||
}, |
||||
sizeChange(pageSize){ |
||||
this.page.pageSize = pageSize; |
||||
}, |
||||
refreshChange() { |
||||
this.onLoad(this.page, this.query); |
||||
}, |
||||
onLoad(page, params = {}) { |
||||
this.loading = true; |
||||
|
||||
const { |
||||
tcWla005, |
||||
tcCmb003, |
||||
tcWlb006, |
||||
tcBmb003, |
||||
tcWlb005, |
||||
tcDmb003, |
||||
tcWlb008, |
||||
tcWlb007, |
||||
} = this.query; |
||||
|
||||
let values = { |
||||
tcWla005_like: tcWla005, |
||||
tcCmb003_like: tcCmb003, |
||||
tcWlb006_like: tcWlb006, |
||||
tcBmb003_like: tcBmb003, |
||||
tcWlb005_like: tcWlb005, |
||||
tcDmb003_like: tcDmb003, |
||||
tcWlb008_like: tcWlb008, |
||||
tcWlb007_like: tcWlb007, |
||||
}; |
||||
|
||||
getList(page.currentPage, page.pageSize, values).then(res => { |
||||
const data = res.data.data; |
||||
for (let i = 0; i < data.records.length; i++) { |
||||
// 产地转换 |
||||
for (let j = 0; j < this.linenumData.length; j++) { |
||||
|
||||
if (data.records[i].tcWlb006 == this.linenumData[j].logisticsLineNumber){ |
||||
|
||||
data.records[i].tcPoa061=this.linenumData[j].logisticsLineName; |
||||
} |
||||
} |
||||
} |
||||
this.page.total = data.total; |
||||
this.data = data.records; |
||||
this.loading = false; |
||||
this.selectionClear(); |
||||
}); |
||||
} |
||||
} |
||||
}; |
||||
</script> |
||||
|
||||
<style> |
||||
</style> |
Loading…
Reference in new issue