|
|
|
@ -1,9 +1,9 @@
|
|
|
|
|
<template> |
|
|
|
|
<basic-container> |
|
|
|
|
<el-row v-if="search"> |
|
|
|
|
<el-form :inline="true" :model="query" class="el-fr-d"> |
|
|
|
|
<el-form :inline="true" :model="Topquery" class="el-fr-d"> |
|
|
|
|
<el-form-item label="工单号" class="el-times"> |
|
|
|
|
<el-input type="text" v-model="query.workOrderNumber" placeholder="请输入工单号" /> |
|
|
|
|
<el-input type="text" v-model="Topquery.workOrderNumber" placeholder="请输入工单号" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-form> |
|
|
|
|
</el-row> |
|
|
|
@ -39,7 +39,7 @@
|
|
|
|
|
<template v-if="slotProps.scope.column.label === '操作'"> |
|
|
|
|
<div class="ElBtnClass"> |
|
|
|
|
<el-button @click="view(slotProps.scope)">查看</el-button> |
|
|
|
|
<el-button @click="view(slotProps.scope)">编辑</el-button> |
|
|
|
|
<el-button @click="edit(slotProps.scope)">编辑</el-button> |
|
|
|
|
<el-button @click="DeleteInformation(slotProps.scope)">删除</el-button> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
@ -66,9 +66,17 @@
|
|
|
|
|
</div> |
|
|
|
|
</el-row> |
|
|
|
|
<!-- 新增弹窗 --> |
|
|
|
|
<el-dialog destroy-on-close v-model="newlyaddload" title="新增" width="800"> |
|
|
|
|
<el-form class="add_form" inline="true" :model="Addform"> |
|
|
|
|
<el-form-item label="仓库名称"> |
|
|
|
|
<el-dialog destroy-on-close v-model="newlyaddload" :title="dialogTitle" width="800"> |
|
|
|
|
<el-form |
|
|
|
|
class="add_form" |
|
|
|
|
inline="true" |
|
|
|
|
:model="Addform" |
|
|
|
|
v-loading="TCloading" |
|
|
|
|
element-loading-text="Loading..." |
|
|
|
|
ref="ruleFormRef" |
|
|
|
|
:rules="rules" |
|
|
|
|
> |
|
|
|
|
<el-form-item label="仓库名称" prop="name"> |
|
|
|
|
<el-input v-model="Addform.name" placeholder="请输入仓库名称" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="仓库编码"> |
|
|
|
@ -304,7 +312,7 @@
|
|
|
|
|
<template #footer> |
|
|
|
|
<div class="dialog-footer"> |
|
|
|
|
<el-button @click="newlyaddload = false">取消</el-button> |
|
|
|
|
<el-button type="primary" @click="newlyaddSubmit"> 确定 </el-button> |
|
|
|
|
<el-button :disabled="TCloading" type="primary" @click="newlyaddSubmit"> 确定 </el-button> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
</el-dialog> |
|
|
|
@ -580,7 +588,10 @@ import {
|
|
|
|
|
$_addsave, |
|
|
|
|
$_dataremove, |
|
|
|
|
$_getDetail, |
|
|
|
|
$_getMyWarehouseList, |
|
|
|
|
$_Postupdate, |
|
|
|
|
} from '@/api/basicdata/basicdataWarehouse'; |
|
|
|
|
import { processRowProperty } from '@/utils/util'; |
|
|
|
|
import { getDictionaryBiz } from '@/api/system/dict'; //字典 |
|
|
|
|
import { getToken } from '@/utils/auth'; |
|
|
|
|
import dayjs from 'dayjs'; |
|
|
|
@ -594,12 +605,13 @@ const search = ref(false); //搜索展开
|
|
|
|
|
const dialogDetail = ref(false); //查看详情弹窗 |
|
|
|
|
const dialogImageUrl = ref(''); |
|
|
|
|
const dialogVisible = ref(false); |
|
|
|
|
const TCloading = ref(false); |
|
|
|
|
const disabled = ref(false); |
|
|
|
|
const dialogTitle = ref('新增'); |
|
|
|
|
const handleRemove = file => { |
|
|
|
|
console.log(file); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const ruleFormRef = ref() |
|
|
|
|
const handlePictureCardPreview = file => { |
|
|
|
|
dialogImageUrl.value = file.url; |
|
|
|
|
dialogVisible.value = true; |
|
|
|
@ -608,8 +620,12 @@ const handlePictureCardPreview = file => {
|
|
|
|
|
const handleDownload = file => { |
|
|
|
|
console.log(file); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const query = ref({}); //顶部搜索参数 |
|
|
|
|
const rules = reactive({ |
|
|
|
|
name: [ |
|
|
|
|
{ required: true, message: '仓库名称', trigger: 'change' }, |
|
|
|
|
], |
|
|
|
|
}) |
|
|
|
|
const Topquery = ref({}); //顶部搜索参数 |
|
|
|
|
const newlyaddload = ref(false); //新增弹窗 |
|
|
|
|
const AssessmentDepartment = ref([]); //考核部门 |
|
|
|
|
const department = ref(); |
|
|
|
@ -627,7 +643,16 @@ const Isprotection = ref([
|
|
|
|
|
}, |
|
|
|
|
]); //是否具有消防等级 |
|
|
|
|
const WarehouseStructureList = ref([]); //仓库结构 |
|
|
|
|
const Iselevated = ref([]); //是否高架 |
|
|
|
|
const Iselevated = ref([ |
|
|
|
|
{ |
|
|
|
|
dictValue: '是', |
|
|
|
|
dictKey: '1', |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
dictValue: '否', |
|
|
|
|
dictKey: '2', |
|
|
|
|
}, |
|
|
|
|
]); //是否高架 |
|
|
|
|
const powerConditionList = ref([]); //电力类型 |
|
|
|
|
const rentTypeList = ref([]); //租金类型 |
|
|
|
|
const gradeList = ref([]); //仓库等级 |
|
|
|
@ -729,9 +754,33 @@ loadInitialCategories();
|
|
|
|
|
|
|
|
|
|
// 刷新数据 |
|
|
|
|
const searchChangeS = () => { |
|
|
|
|
query.value = {}; |
|
|
|
|
Topquery.value = {}; |
|
|
|
|
onLoad(); |
|
|
|
|
}; |
|
|
|
|
// 编辑 |
|
|
|
|
const edit = val => { |
|
|
|
|
let data = { |
|
|
|
|
id: val.row.id, |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
$_getDetail(data).then(res => { |
|
|
|
|
console.log(res, '查看详情'); |
|
|
|
|
Addform.value = res.data.data; |
|
|
|
|
Addform.value['address'] = []; |
|
|
|
|
Addform.value['addressInfo'] = []; |
|
|
|
|
console.log(Addform.value); |
|
|
|
|
console.log(options.value, '职能类型'); |
|
|
|
|
newlyaddload.value = true; |
|
|
|
|
dialogTitle.value = '编辑'; |
|
|
|
|
Addform.value.functionType = String(Addform.value.functionType); //职能类型转换字符串类型 |
|
|
|
|
Addform.value.address[0] = Addform.value.longitude; //精度地区 |
|
|
|
|
Addform.value.address[1] = Addform.value.latitude; //维度 |
|
|
|
|
Addform.value.address[2] = Addform.value.warehouseAddress; //仓库地址 |
|
|
|
|
Addform.value['addressInfo'][0] = Addform.value.provinceCode; //仓库地区-省 |
|
|
|
|
Addform.value['addressInfo'][1] = Addform.value.cityCode; //仓库地区-市 |
|
|
|
|
Addform.value['addressInfo'][2] = Addform.value.code; //仓库地区-区 |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
const areaoptions = ref([]); //地区 |
|
|
|
|
// 地区获取 |
|
|
|
|
const initialization = () => { |
|
|
|
@ -743,6 +792,7 @@ const initialization = () => {
|
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const warehouseList = ref([]); //仓库列表 |
|
|
|
|
initialization(); |
|
|
|
|
const searchHide = () => {}; |
|
|
|
|
|
|
|
|
@ -753,9 +803,9 @@ const details = reactive({
|
|
|
|
|
stockupDate: [], |
|
|
|
|
/** 列表 */ |
|
|
|
|
columnList, |
|
|
|
|
|
|
|
|
|
query: {}, |
|
|
|
|
/** 列表数据 */ |
|
|
|
|
data: [{}], |
|
|
|
|
data: [], |
|
|
|
|
/** 页面loading */ |
|
|
|
|
loadingObj: { |
|
|
|
|
/** 列表加载loading */ |
|
|
|
@ -799,6 +849,7 @@ const {
|
|
|
|
|
loadingObj, |
|
|
|
|
selectionList, |
|
|
|
|
drawerShow, |
|
|
|
|
query, |
|
|
|
|
page, |
|
|
|
|
trickleLoadingPage, |
|
|
|
|
zeroAdditionalRecordingInfo, |
|
|
|
@ -846,7 +897,7 @@ const dictionary = () => {
|
|
|
|
|
updateDictionary(FireProtection.value, 'warehouse_fireGrade'); //消防等级 |
|
|
|
|
updateDictionary(Isprotection.value, 'yes_no'); //消防等级 |
|
|
|
|
updateDictionary(WarehouseStructureList.value, 'warehouse_structure'); //仓库结构 |
|
|
|
|
updateDictionary(Iselevated.value, 'yes_no'); //是否高架 |
|
|
|
|
// updateDictionary(Iselevated.value, 'yes_no'); //是否高架 |
|
|
|
|
updateDictionary(powerConditionList.value, 'power_condition'); //是否高架 |
|
|
|
|
updateDictionary(rentTypeList.value, 'rent_type'); //是否高架 |
|
|
|
|
updateDictionary(gradeList.value, 'warehouse_grade'); //仓库等级 |
|
|
|
@ -854,26 +905,102 @@ const dictionary = () => {
|
|
|
|
|
// 页面初始化字典 |
|
|
|
|
dictionary(); |
|
|
|
|
// 页面初始化 |
|
|
|
|
// 转码 |
|
|
|
|
|
|
|
|
|
const MyWareh = () => { |
|
|
|
|
$_getMyWarehouseList().then(res => { |
|
|
|
|
console.log(res, '仓库列表'); |
|
|
|
|
if (res.data.data.length) { |
|
|
|
|
res.data.data.forEach(item => { |
|
|
|
|
warehouseList.value.push({ |
|
|
|
|
value: item.name, |
|
|
|
|
label: item.name, |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
columnList.find(res => res.label == '仓库名称').checkarr = warehouseList.value; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
MyWareh(); //获取仓库列表 |
|
|
|
|
const onLoad = val => { |
|
|
|
|
let data = { |
|
|
|
|
current: details.page.currentPage, |
|
|
|
|
size: details.page.pageSize, |
|
|
|
|
...val, |
|
|
|
|
...details.query, |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
details.loadingObj.list = true; //开启表格加载 |
|
|
|
|
$_getList(data) |
|
|
|
|
.then(res => { |
|
|
|
|
console.log(res); |
|
|
|
|
console.log(gradeList.value, '仓库等级'); |
|
|
|
|
if (res.data.code == 200) { |
|
|
|
|
if (res.data.data.records.length) { |
|
|
|
|
details.data = res.data.data.records; //表格数据 |
|
|
|
|
|
|
|
|
|
details.page.total = res.data.data.total; //总条数 |
|
|
|
|
details.data.forEach(item => { |
|
|
|
|
if (item.functionType) { |
|
|
|
|
// 职能类型 |
|
|
|
|
item.functionType = options.value.find( |
|
|
|
|
res => res.dictKey === String(item.functionType) |
|
|
|
|
).dictValue; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (item.warehouseType) { |
|
|
|
|
// 仓库类型 |
|
|
|
|
item.warehouseType = WarehouseType.value.find( |
|
|
|
|
res => res.dictKey === String(item.warehouseType) |
|
|
|
|
).dictValue; |
|
|
|
|
} |
|
|
|
|
if (item.fireGrade) { |
|
|
|
|
// 消防等级 |
|
|
|
|
item.fireGrade = FireProtection.value.find( |
|
|
|
|
res => res.dictKey === String(item.fireGrade) |
|
|
|
|
).dictValue; |
|
|
|
|
} |
|
|
|
|
if (item.fireRatingNot) { |
|
|
|
|
// 消防等级 |
|
|
|
|
item.fireRatingNot = Isprotection.value.find( |
|
|
|
|
res => res.dictKey === String(item.fireRatingNot) |
|
|
|
|
).dictValue; |
|
|
|
|
} |
|
|
|
|
if (item.warehouseStructure) { |
|
|
|
|
// 仓库结构 |
|
|
|
|
item.warehouseStructure = WarehouseStructureList.value.find( |
|
|
|
|
res => res.dictKey === String(item.warehouseStructure) |
|
|
|
|
).dictValue; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (item.elevatedNot) { |
|
|
|
|
// 是否高架 |
|
|
|
|
item.elevatedNot = Iselevated.value.find( |
|
|
|
|
res => res.dictKey === String(item.elevatedNot) |
|
|
|
|
).dictValue; |
|
|
|
|
} |
|
|
|
|
if (item.powerCondition) { |
|
|
|
|
// 电力类型 |
|
|
|
|
item.powerCondition = powerConditionList.value.find( |
|
|
|
|
res => res.dictKey === String(item.powerCondition) |
|
|
|
|
).dictValue; |
|
|
|
|
} |
|
|
|
|
if (item.rentType) { |
|
|
|
|
// 租金类型 |
|
|
|
|
item.rentType = rentTypeList.value.find( |
|
|
|
|
res => res.dictKey === String(item.rentType) |
|
|
|
|
).dictValue; |
|
|
|
|
} |
|
|
|
|
if (item.grade) { |
|
|
|
|
// 仓库等级 |
|
|
|
|
item.grade = gradeList.value.find(res => res.dictKey === String(item.grade) || res.dictValue === String(item.grade)).dictValue; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
details.data = res.data.data.records; //表格数据 |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
.catch(res => { |
|
|
|
|
ElMessage.error('获取失败联系后端管理员'); |
|
|
|
|
}) |
|
|
|
|
.catch(res => {}) |
|
|
|
|
.finally(() => { |
|
|
|
|
details.loadingObj.list = false; //关闭表格加载 |
|
|
|
|
}); |
|
|
|
@ -891,13 +1018,18 @@ const currentChange = val => {
|
|
|
|
|
}; |
|
|
|
|
// 新增数据 |
|
|
|
|
const newlyadd = () => { |
|
|
|
|
dialogTitle.value = '新增'; |
|
|
|
|
Addform.value = {}; |
|
|
|
|
dialogDetail.value = true; //开启详情弹窗 |
|
|
|
|
Addform.value.warehouseAddress = []; |
|
|
|
|
Addform.value.address = []; |
|
|
|
|
newlyaddload.value = true; //开启新增弹窗 |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 表格表头下拉框选择 */ |
|
|
|
|
const selectsc = (index, row) => { |
|
|
|
|
console.log(details, 'details'); |
|
|
|
|
processRowProperty(index, row, details); |
|
|
|
|
onLoad(); |
|
|
|
|
}; |
|
|
|
|
// 批量删除 |
|
|
|
|
const DeleteInformationAll = () => { |
|
|
|
|
if (!selectAll.value.length) { |
|
|
|
@ -1000,6 +1132,18 @@ const DeleteInformation = val => {
|
|
|
|
|
}; |
|
|
|
|
// 新增数据确定 |
|
|
|
|
const newlyaddSubmit = () => { |
|
|
|
|
ruleFormRef.value.validate(valid=>{ |
|
|
|
|
console.log(valid,'当前校验'); |
|
|
|
|
}) |
|
|
|
|
return |
|
|
|
|
console.log(ruleFormRef); |
|
|
|
|
if(ruleFormRef.value.validate){ |
|
|
|
|
console.log('通过校验'); |
|
|
|
|
}else{ |
|
|
|
|
console.log('未通过校验'); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
return |
|
|
|
|
console.log(Addform.value); |
|
|
|
|
Addform.value.warehouseAddress = Addform.value.address[2]; //仓库地址 |
|
|
|
|
Addform.value.longitude = Addform.value.address[0]; //精度 |
|
|
|
@ -1022,55 +1166,48 @@ const newlyaddSubmit = () => {
|
|
|
|
|
...Addform.value, |
|
|
|
|
}; |
|
|
|
|
console.log(data, '准备提交的参数'); |
|
|
|
|
$_addsave(data).then(res => { |
|
|
|
|
console.log(res, '新增之后返回值'); |
|
|
|
|
if (res.data.code == 200) { |
|
|
|
|
newlyaddload.value = false; //关闭新增弹窗 |
|
|
|
|
Addform.value = {}; |
|
|
|
|
ElMessage({ |
|
|
|
|
message: res.data.msg, |
|
|
|
|
type: 'success', |
|
|
|
|
if (dialogTitle.value == '新增') { |
|
|
|
|
TCloading.value = true; |
|
|
|
|
$_addsave(data) |
|
|
|
|
.then(res => { |
|
|
|
|
console.log(res, '新增之后返回值'); |
|
|
|
|
if (res.data.code == 200) { |
|
|
|
|
newlyaddload.value = false; //关闭新增弹窗 |
|
|
|
|
Addform.value = {}; |
|
|
|
|
ElMessage({ |
|
|
|
|
message: res.data.msg, |
|
|
|
|
type: 'success', |
|
|
|
|
}); |
|
|
|
|
onLoad(); |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
.catch(() => {}) |
|
|
|
|
.finally(() => { |
|
|
|
|
TCloading.value = false; |
|
|
|
|
}); |
|
|
|
|
onLoad(); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
TCloading.value = true; |
|
|
|
|
$_Postupdate(data) |
|
|
|
|
.then(res => { |
|
|
|
|
console.log(res, '编辑之后的值'); |
|
|
|
|
if (res.data.code == 200) { |
|
|
|
|
newlyaddload.value = false; //关闭新增弹窗 |
|
|
|
|
Addform.value = {}; |
|
|
|
|
ElMessage({ |
|
|
|
|
message: res.data.msg, |
|
|
|
|
type: 'success', |
|
|
|
|
}); |
|
|
|
|
onLoad(); |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
.catch(() => {}) |
|
|
|
|
.finally(() => { |
|
|
|
|
TCloading.value = false; |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
// 部门选择 |
|
|
|
|
const AffiliationList = ref({ |
|
|
|
|
formOption: { |
|
|
|
|
labelWidth: 100, |
|
|
|
|
column: [ |
|
|
|
|
{ |
|
|
|
|
label: '自定义项', |
|
|
|
|
prop: 'label', |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
}, |
|
|
|
|
lazy: true, |
|
|
|
|
treeLoad: function (node, resolve) { |
|
|
|
|
if (node.level === 0) { |
|
|
|
|
return resolve([{ is_show: true, label: 'region', value: new Date().getTime() }]); |
|
|
|
|
} |
|
|
|
|
if (node.level > 2) return resolve([]); |
|
|
|
|
setTimeout(() => { |
|
|
|
|
const data = [ |
|
|
|
|
{ |
|
|
|
|
label: 'leaf', |
|
|
|
|
is_show: true, |
|
|
|
|
value: new Date().getTime(), |
|
|
|
|
leaf: true, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
is_show: true, |
|
|
|
|
value: new Date().getTime(), |
|
|
|
|
label: 'zone', |
|
|
|
|
}, |
|
|
|
|
]; |
|
|
|
|
|
|
|
|
|
resolve(data); |
|
|
|
|
}, 500); |
|
|
|
|
}, |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
// 编辑信息 |
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<style scoped lang="scss"> |
|
|
|
|