Browse Source

1.资产表

dev-warehouse
0.0 2 years ago
parent
commit
fab8849162
  1. 50
      src/api/basic/basicProperty.js
  2. 193
      src/option/basic/basicProperty.js
  3. 30
      src/router/views/index.js
  4. 44
      src/views/basic/pda/basicPda.vue
  5. 68
      src/views/basic/pda/basicPdaform.vue
  6. 260
      src/views/basic/property/basicProperty.vue
  7. 272
      src/views/basic/property/basicPropertyform.vue

50
src/api/basic/basicProperty.js

@ -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
})
}

193
src/option/basic/basicProperty.js

@ -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,
},
]
}

30
src/router/views/index.js

@ -298,4 +298,34 @@ export default [
},
],
},
{
path: '/basic/pda/basicPdaform',
component: Layout,
redirect: '/basic/pda',
children: [
{
path: '/basic/pda/basicPdaform',
name: 'pad信息',
meta: {
data: 'data',
},
component: () => import('@/views/basic/pda/basicPdaform.vue'),
},
],
},
{
path: '/basic/property/basicPropertyform',
component: Layout,
redirect: '/basic/property',
children: [
{
path: '/basic/property/basicPropertyform',
name: '编辑字段',
meta: {
data: 'data',
},
component: () => import('@/views/basic/property/basicPropertyform.vue'),
},
],
},
];

44
src/views/basic/pda/basicPda.vue

@ -114,29 +114,33 @@
//
handleEdit(row) {
console.log(">>>>>>>>>>>>>>>",row);
this.pdaformdata = row;
this.pdaformdata.view =false;
this.edit =false;
// this.$router.push({
// path: '/basic/pdarecords/basicPdarecords',
// query: {
// data: row.id
// }
// });
//
// this.pdaformdata = row;
// this.pdaformdata.view =false;
// this.edit =false;
this.$router.push({
path: '/basic/pda/basicPdaform',
query: {
data: row.id,
edt:true,
name: row.name +'-pad信息编辑'
}
});
},
//
handleview(row) {
this.pdaformdata = row;
this.pdaformdata.view = true ;
console.log("this.pdaformdata.view>>>>>>>>>>>>>>>",this.pdaformdata.view);
this.edit =false;
// this.$router.push({
// path: '/basic/pdarecords/basicPdarecords',
// query: {
// data: row.id
// }
// });
// this.pdaformdata = row;
// this.pdaformdata.view = true ;
// console.log("this.pdaformdata.view>>>>>>>>>>>>>>>",this.pdaformdata.view);
// this.edit =false;
this.$router.push({
path: '/basic/pda/basicPdaform',
query: {
data: row.id,
edt:false,
name: row.name +'-pad信息查看'
}
});
},
//
returnpda(str){

68
src/views/basic/pda/basicPdaform.vue

@ -13,11 +13,11 @@
</avue-form>
<el-row>
<el-col :offset="11" >
<el-button type="primary" @click="rowUpdate" v-if="!this.pdaformdata.view"> </el-button>
<el-button type="primary" @click="rowUpdate" v-if="!this.edt"> </el-button>
</el-col>
</el-row>
<el-divider>维修记录</el-divider>
<el-row v-if="!this.pdaformdata.view">
<el-row v-if="!this.edt">
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
@ -52,8 +52,8 @@
<el-table-column prop="menu" label="操作" :width="220" align="center">
<template #="{row}">
<el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button>
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(row)" v-if="!this.pdaformdata.view">编辑</el-button>
<el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)" v-if="!this.pdaformdata.view">删除</el-button>
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(row)" v-if="!this.edt">编辑</el-button>
<el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)" v-if="!this.edt">删除</el-button>
</template>
</el-table-column>
</el-table>
@ -212,6 +212,8 @@ export default {
isadd: false,
//
loading: true,
//
edt:true,
//pda
padview:false,
//
@ -244,7 +246,7 @@ export default {
emptyBtn:false,//
submitBtn: false, //
searchMenuSpan: 6,
disabled: this.pdaformdata.view,
disabled: true,
border: true,
index: true,
viewBtn: false,
@ -531,6 +533,23 @@ export default {
type:Object,
},
},
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 {
}
}
},
mounted() {
this.init();
@ -583,15 +602,17 @@ export default {
//
handleViewpda() {
// this.$store.dispatch(this.$route.path, this.$route);
// this.$router.push({
// path: '/basic/pda/basicPda'
// });
let str = {
val: false
}
this.$emit("returnpda", str);
this.$router.push({
path: '/basic/pda/basicPda'
});
// let str = {
// val: false
// }
// this.$emit("returnpda", str);
},
init() {
console.log("this.$route.query.edt>>>>>>>",this.$route.query.edt);
this.padoption.disabled = false
this.height = this.setPx(document.body.clientHeight - 340);
},
searchHide() {
@ -714,9 +735,10 @@ export default {
this.onLoad(this.page);
},
onLoad(page, params = {}) {
if (this.pdaformdata) {
this.query.masterId = this.pdaformdata.id;
}
// if (this.pdaformdata) {
let id = this.$route.query.data;
this.query.masterId = id
// }
this.loading = true;
getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
const data = res.data.data;
@ -736,13 +758,15 @@ export default {
this.loading = false;
this.selectionClear();
});
// let id = this.pdaformdata.id;
// getDetailPda(id).then(res => {
// const data = res.data.data;
// this.dataForm = data;
// console.log('res>>>>>>>>>>>>>>', res.data.data);
// });
this.dataForm = this.pdaformdata;
getDetailPda(id).then(res => {
const data = res.data.data;
this.dataForm = data;
});
console.log('this.edt>>>>>>>>>>>>>>',this.edt);
// this.dataForm = this.pdaformdata;
}
}
};

260
src/views/basic/property/basicProperty.vue

@ -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>

272
src/views/basic/property/basicPropertyform.vue

@ -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…
Cancel
Save