7 changed files with 875 additions and 42 deletions
@ -0,0 +1,50 @@
|
||||
import request from '@/axios'; |
||||
|
||||
export const getList = (current, size, params) => { |
||||
return request({ |
||||
url: '/api/logpm-basic/property/list', |
||||
method: 'get', |
||||
params: { |
||||
...params, |
||||
current, |
||||
size, |
||||
} |
||||
}) |
||||
} |
||||
|
||||
export const getDetail = (id) => { |
||||
return request({ |
||||
url: '/api/logpm-basic/property/detail', |
||||
method: 'get', |
||||
params: { |
||||
id |
||||
} |
||||
}) |
||||
} |
||||
|
||||
export const remove = (ids) => { |
||||
return request({ |
||||
url: '/api/logpm-basic/property/remove', |
||||
method: 'post', |
||||
params: { |
||||
ids, |
||||
} |
||||
}) |
||||
} |
||||
|
||||
export const add = (row) => { |
||||
return request({ |
||||
url: '/api/logpm-basic/property/submit', |
||||
method: 'post', |
||||
data: row |
||||
}) |
||||
} |
||||
|
||||
export const update = (row) => { |
||||
return request({ |
||||
url: '/api/logpm-basic/property/submit', |
||||
method: 'post', |
||||
data: row |
||||
}) |
||||
} |
||||
|
@ -0,0 +1,193 @@
|
||||
export default { |
||||
height:'auto', |
||||
calcHeight: 30, |
||||
tip: false, |
||||
searchShow: true, |
||||
searchMenuSpan: 6, |
||||
border: true, |
||||
index: true, |
||||
viewBtn: false, |
||||
editBtn: true, |
||||
selection: true, |
||||
dialogClickModal: false, |
||||
column: [ |
||||
{ |
||||
label: "主键", |
||||
prop: "id", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "租户号", |
||||
prop: "tenantId", |
||||
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: "createTime", |
||||
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: "updateTime", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "状态", |
||||
prop: "status", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
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: "预留1", |
||||
prop: "reserve1", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "预留2", |
||||
prop: "reserve2", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "预留3", |
||||
prop: "reserve3", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "预留4", |
||||
prop: "reserve4", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "预留5", |
||||
prop: "reserve5", |
||||
type: "input", |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: "资产类型", |
||||
prop: "assetType", |
||||
type: "select", |
||||
labelWidth:'150', |
||||
width:"280px", |
||||
align:'center', |
||||
span:11, |
||||
dicUrl: '/api/blade-system/dict-biz/dictionary?code=basic_property_type', |
||||
props: { |
||||
label: 'dictValue', |
||||
value: 'dictKey', |
||||
}, |
||||
search: true, |
||||
}, |
||||
{ |
||||
label: "资产名称", |
||||
prop: "assetName", |
||||
type: "input", |
||||
labelWidth:'150', |
||||
width:"200px", |
||||
align:'center', |
||||
span:11, |
||||
search: true, |
||||
}, |
||||
{ |
||||
label: "资产统一编号", |
||||
prop: "assetId", |
||||
type: "input", |
||||
labelWidth:'150', |
||||
width:"200px", |
||||
align:'center', |
||||
span:11, |
||||
}, |
||||
{ |
||||
label: "资产现有数量", |
||||
prop: "assetNub", |
||||
type: "input", |
||||
labelWidth:'150', |
||||
width:"250px", |
||||
align:'center', |
||||
span:11, |
||||
}, |
||||
{ |
||||
label: "备注", |
||||
prop: "node", |
||||
type: "input", |
||||
labelWidth:'150', |
||||
width:"340px", |
||||
align:'center', |
||||
span:11, |
||||
}, |
||||
] |
||||
} |
@ -0,0 +1,260 @@
|
||||
<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.basicProperty_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="handleEdit(row)">编 辑</el-button> |
||||
<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/basic/basicProperty"; |
||||
import option from "@/option/basic/basicProperty"; |
||||
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.basicProperty_add, false), |
||||
viewBtn: this.validData(this.permission.basicProperty_view, false), |
||||
delBtn: this.validData(this.permission.basicProperty_delete, false), |
||||
editBtn: this.validData(this.permission.basicProperty_edit, false) |
||||
}; |
||||
}, |
||||
ids() { |
||||
let ids = []; |
||||
this.selectionList.forEach(ele => { |
||||
ids.push(ele.id); |
||||
}); |
||||
return ids.join(","); |
||||
} |
||||
}, |
||||
methods: { |
||||
//编辑字段 |
||||
handleEdit(row) { |
||||
console.log("编辑字段>>>>>>>>>>>>>>>",row); |
||||
// |
||||
// this.pdaformdata = row; |
||||
// this.pdaformdata.view =false; |
||||
// this.edit =false; |
||||
this.$router.push({ |
||||
path: '/basic/property/basicPropertyform', |
||||
query: { |
||||
data: row.id, |
||||
name: row.assetName +'-字段编辑' |
||||
} |
||||
}); |
||||
}, |
||||
//查看字段 |
||||
handleview(row) { |
||||
console.log("编辑字段>>>>>>>>>>>>>>>",row); |
||||
// |
||||
// this.pdaformdata = row; |
||||
// this.pdaformdata.view =false; |
||||
// this.edit =false; |
||||
this.$router.push({ |
||||
path: '/basic/property/basicPropertyform', |
||||
query: { |
||||
data: row.id, |
||||
name: row.assetName +'-字段编辑' |
||||
} |
||||
}); |
||||
}, |
||||
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: "操作成功!" |
||||
}); |
||||
}); |
||||
}, |
||||
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 = `/basicProperty/basicProperty/export-basicProperty?${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 { |
||||
} = this.query; |
||||
|
||||
let values = { |
||||
}; |
||||
|
||||
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,272 @@
|
||||
<template> |
||||
<el-form> |
||||
<div style="background-color: #ffffff;height: 845px;padding: 2% 4%;"> |
||||
|
||||
<avue-form :option="option" ref="myForm" v-model="form"> |
||||
<template #input="{row}"> |
||||
<el-tag>序号:{{row.$index}}-数据:{{row.input}}</el-tag> |
||||
</template> |
||||
</avue-form> |
||||
<div style="position: fixed;bottom: 7%;left: 40%;width: 100%"> |
||||
<div style="width: 100%"> |
||||
<el-button type="primary" @click="submitForm" style="margin-right: 20%">确定</el-button> |
||||
<el-button type="primary" @click="cancellation" >取消</el-button> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
|
||||
</el-form> |
||||
</template> |
||||
|
||||
<script> |
||||
import { getDetail as getDetailWarehouse } from '@/api/basicdata/basicdataWarehouse'; |
||||
import { add, getDetail, update } from '@/api/basic/basicLine'; |
||||
import {getListpage,getList} from '@/api/basic/basicLineNode' |
||||
import { getList as carrierData } from '@/api/basicdata/basicdataCarrier'; |
||||
export default { |
||||
name: "basicLineform", |
||||
// props: { |
||||
// lineformdata:{ |
||||
// type:Object, |
||||
// }, |
||||
// }, |
||||
created(){ |
||||
// if (!!this.lineformdata.id){this.initData()} |
||||
}, |
||||
data() { |
||||
return { |
||||
//防止重复点击 |
||||
isDis:false, |
||||
nodequery:{}, |
||||
// option: { |
||||
// emptyBtn: false, //隐藏清空按钮 |
||||
// submitBtn: false, //隐藏提交按钮 |
||||
// tableData: [], |
||||
// }, |
||||
form: { |
||||
field: [{}], |
||||
}, |
||||
// 分页信息 |
||||
nodepage: { |
||||
currentPage: 1, |
||||
pageSize: 50, |
||||
total: 40 |
||||
}, |
||||
option: { |
||||
emptyBtn: false, //隐藏清空按钮 |
||||
submitBtn: false, |
||||
column: [ |
||||
{ |
||||
label: "资产类型", |
||||
prop: "assetType", |
||||
type: "select", |
||||
labelWidth:'150', |
||||
width:"280px", |
||||
align:'center', |
||||
span:11, |
||||
dicUrl: '/api/blade-system/dict-biz/dictionary?code=basic_property_type', |
||||
props: { |
||||
label: 'dictValue', |
||||
value: 'dictKey', |
||||
}, |
||||
}, |
||||
{ |
||||
label: "资产名称", |
||||
prop: "assetName", |
||||
type: "input", |
||||
labelWidth:'150', |
||||
width:"200px", |
||||
align:'center', |
||||
span:11, |
||||
}, |
||||
{ |
||||
label: "资产统一编号", |
||||
prop: "assetId", |
||||
type: "input", |
||||
labelWidth:'150', |
||||
width:"200px", |
||||
align:'center', |
||||
span:11, |
||||
}, |
||||
{ |
||||
label: "资产现有数量", |
||||
prop: "assetNub", |
||||
type: "input", |
||||
labelWidth:'150', |
||||
width:"250px", |
||||
align:'center', |
||||
span:11, |
||||
}, |
||||
{ |
||||
label: "备注", |
||||
prop: "node", |
||||
type: "input", |
||||
labelWidth:'150', |
||||
width:"340px", |
||||
align:'center', |
||||
span:11, |
||||
}, |
||||
{ |
||||
label: '字段编辑', |
||||
prop: 'field', |
||||
type: 'dynamic', |
||||
span: 24, |
||||
hight:20, |
||||
children: { |
||||
align: 'center', |
||||
headerAlign: 'center', |
||||
rowAdd: (done) => { |
||||
this.$message.success('新增回调'); |
||||
done({ |
||||
input: '默认值' |
||||
}); |
||||
}, |
||||
rowDel: (row, done) => { |
||||
this.$message.success('删除回调' + JSON.stringify(row)); |
||||
done(); |
||||
}, |
||||
column: [{ |
||||
label: '字段类型', |
||||
prop: "propertyType", |
||||
type: 'select', |
||||
width: 220, |
||||
dicUrl: '/api/blade-system/dict-biz/dictionary?code=basic_field_type', |
||||
props: { |
||||
label: 'dictValue', |
||||
value: 'dictKey', |
||||
}, |
||||
rules: [{ required: true, message: '请选择字段类型!',trigger: 'blur'}], |
||||
// change: (val) => { |
||||
// if (!!val.value){ |
||||
// getDetailWarehouse(val.value).then(res => { |
||||
// // $this.$set($this.option.column[0], 'contacts', res.data.data.linkman); |
||||
// this.form.linenode[val.index].contacts =res.data.data.linkman |
||||
// this.form.linenode[val.index].telephone =res.data.data.contactNumber |
||||
// this.form.linenode[val.index].addressNotes =res.data.remarks |
||||
// this.form.linenode[val.index].warehouseAddress =res.data.data.warehouseAddress |
||||
// this.form.linenode[val.index].warehouseName =res.data.data.name |
||||
// // if (val.index ==0){ |
||||
// // this.form.lineName = |
||||
// // } |
||||
// this.form.lineName = this.form.linenode[0].warehouseName; |
||||
// for (let i = 1; i < this.form.linenode.length; i++) { |
||||
// this.form.lineName += ("->"+this.form.linenode[i].warehouseName) |
||||
// } |
||||
// }); |
||||
// } |
||||
// }, |
||||
},{ |
||||
width: 220, |
||||
label: '填写类型', |
||||
prop: "inputType", |
||||
type: "select", |
||||
dicUrl: '/api/blade-system/dict-biz/dictionary?code=basic_in_type', |
||||
props: { |
||||
label: 'dictValue', |
||||
value: 'dictKey', |
||||
}, |
||||
}, |
||||
{ |
||||
width: 250, |
||||
label: '字段名称', |
||||
prop: "fieldName", |
||||
type: 'input', |
||||
}, |
||||
{ |
||||
width: 250, |
||||
label: '字段说明', |
||||
prop: "node", |
||||
type: 'input', |
||||
}, |
||||
{ |
||||
width: 250, |
||||
label: '字段排序', |
||||
prop: "sort", |
||||
type: 'number', |
||||
}, |
||||
{ |
||||
width: 200, |
||||
label: '是否搜索', |
||||
prop: "isSearch", |
||||
type: 'switch', |
||||
}, |
||||
] |
||||
} |
||||
}, |
||||
|
||||
] |
||||
}, |
||||
} |
||||
|
||||
}, |
||||
methods: { |
||||
beforeOpen(done, type) { |
||||
if (["edit", "view"].includes(type)) { |
||||
console.log("type>>>>>>>",type); |
||||
} |
||||
done(); |
||||
}, |
||||
initData(){ |
||||
//查询子表 |
||||
let params ={ |
||||
masterId: this.lineformdata.id |
||||
} |
||||
getList(this.nodepage.currentPage, this.nodepage.pageSize,Object.assign(params, this.nodequery)).then(res => { |
||||
this.form = this.lineformdata; |
||||
this.form.linenode = res.data.data.records; |
||||
}); |
||||
}, |
||||
cancellation(){ |
||||
let str = { |
||||
val: false |
||||
} |
||||
this.$emit("returnline", str); |
||||
}, |
||||
submitForm(){ |
||||
this.$refs.myForm.validate(valid => { |
||||
if (valid) { |
||||
this.isDis = true; |
||||
let row = this.form |
||||
if (!!row.id){ |
||||
update(row).then(() => { |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!" |
||||
}); |
||||
let str = { |
||||
val: true |
||||
} |
||||
this.isDis = false; |
||||
this.$emit("returnline", str); |
||||
}, error => { |
||||
this.isDis = false; |
||||
loading(); |
||||
console.log(error); |
||||
}); |
||||
}else { |
||||
add(row).then(() => { |
||||
this.$message({ |
||||
type: "success", |
||||
message: "操作成功!" |
||||
}); |
||||
let str = { |
||||
val: true |
||||
} |
||||
this.isDis = false; |
||||
this.$emit("returnline", str); |
||||
}, error => { |
||||
this.isDis = false; |
||||
loading(); |
||||
window.console.log(error); |
||||
}); |
||||
} |
||||
} |
||||
}); |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<style scoped> |
||||
|
||||
</style> |
Loading…
Reference in new issue