|
|
|
@ -90,7 +90,7 @@
|
|
|
|
|
<el-input v-model.trim="Addform.linkman" placeholder="请输入联系人" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
<el-form-item label="联系电话" prop="contactNumber"> |
|
|
|
|
<el-form-item label="联系电话" prop="contactNumber"> |
|
|
|
|
<el-input v-model.trim="Addform.contactNumber" placeholder="请输入联系电话" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
@ -456,7 +456,6 @@ const rules = reactive({
|
|
|
|
|
addressInfo: [{ required: true, message: '请选择仓库地区', trigger: 'change' }], |
|
|
|
|
department: [{ required: true, message: '请选择所属部门', trigger: 'change' }], |
|
|
|
|
warehouseAddress: [{ required: true, message: '请选择仓库地址', trigger: 'change' }], |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
const Topquery = ref({}); //顶部搜索参数 |
|
|
|
|
const newlyaddload = ref(false); //新增弹窗 |
|
|
|
@ -465,8 +464,7 @@ const department = ref();
|
|
|
|
|
const Addform = ref({}); //表格新增数据表单 |
|
|
|
|
const WarehouseType = ref([]); //仓库类型 |
|
|
|
|
const FireProtection = ref([]); //消防等级 |
|
|
|
|
const Isprotection = ref([ |
|
|
|
|
]); //是否具有消防等级 |
|
|
|
|
const Isprotection = ref([]); //是否具有消防等级 |
|
|
|
|
const WarehouseStructureList = ref([]); //仓库结构 |
|
|
|
|
const Iselevated = ref([ |
|
|
|
|
{ |
|
|
|
@ -917,13 +915,19 @@ const view = value => {
|
|
|
|
|
GetDetails(value); //获取详情 |
|
|
|
|
}; |
|
|
|
|
const beforeAvatarUpload = async rawFile => { |
|
|
|
|
if (rawFile.type !== 'image/png') { |
|
|
|
|
ElMessage.error('图片格式只能为image/png!'); |
|
|
|
|
return false; |
|
|
|
|
} else if (rawFile.size / 1024 / 1024 > 2) { |
|
|
|
|
ElMessage.error('图片大小不能大于2MB!'); |
|
|
|
|
const _nameArr = rawFile.name.split('.'); |
|
|
|
|
|
|
|
|
|
if (_nameArr.length === 0) { |
|
|
|
|
ElMessage.warning('异常类型文件'); |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
const _name = _nameArr[_nameArr.length - 1]; |
|
|
|
|
|
|
|
|
|
const _whiteArr = ['png', 'jpg', 'jpeg']; |
|
|
|
|
|
|
|
|
|
if (!_whiteArr.includes(_name.toLocaleLowerCase())) |
|
|
|
|
return ElMessage.warning('请上传png、jpg、jpeg的类型图片'); |
|
|
|
|
const res = await compressImageBlob(rawFile); |
|
|
|
|
return res; |
|
|
|
|
}; |
|
|
|
|