feat:增加测试接口默认token配置、增加创建单层项目附件上传。

This commit is contained in:
wuyx
2022-10-31 16:49:58 +08:00
parent a9d78e9c7c
commit d3448506c3
3 changed files with 100 additions and 30 deletions

View File

@@ -77,8 +77,8 @@
<div class="in select">
<a-select :getPopupContainer="triggerNode => {
return triggerNode.parentNode || document.body
}" :value="classifySelect1" placeholder="请选择项目经理" style="width: 100%" :options="classifyList1" allowClear
showSearch>
}" :value="classifySelect1" placeholder="请选择项目经理" style="width: 100%" :options="classifyList1"
@change="classificationChange1" allowClear showSearch>
</a-select>
</div>
</div>
@@ -118,7 +118,7 @@
<div class="inname">项目级别</div>
</div>
<div class="in">
<a-input v-model:value="valueE" placeholder="集团级/组织级/现地级/部门级" />
<a-input v-model:value="valueE1" placeholder="集团级/组织级/现地级/部门级" />
</div>
</div>
<div class="name">
@@ -127,7 +127,7 @@
<div class="inname">培训体系</div>
</div>
<div class="in">
<a-input v-model:value="valueE" placeholder="集团级/组织级/现地级/部门级" />
<a-input v-model:value="valueE2" placeholder="集团级/组织级/现地级/部门级" />
</div>
</div>
<div class="name">
@@ -152,7 +152,7 @@
<div>
<img v-if="fileList1.length < 6" class="fileimg" src="../../assets/images/projectadd/enclosure.png" />
<a-upload :disabled="fileList1.length > 5" :before-upload="beforeUpload1" v-model:file-list="fileList1"
name="file" action="/api/file/upload" :headers="headers" @change="handleChange1">
@remove="removeFile" name="file" action="/api/file/upload" :headers="headers" @change="handleChange1">
<!-- <a-button> -->
<!-- <upload-outlined></upload-outlined> -->
<span v-if="fileList1.length > 5" class="filetext">上传数量已经达到最大值</span>
@@ -196,7 +196,10 @@ export default {
classifySelect: null,
classifySelectId: null,
checked: false,
checked1: false
checked1: false,
valueE: null,
valueE1: null,
valueE2: null
});
const projectName = ref('');
@@ -224,6 +227,7 @@ export default {
const fileList1 = ref([]);
const loading = ref(false);
const imageUrl = ref('');
let picUrl = '';
const handleChange = (info) => {
if (info.file.status === 'uploading') {
@@ -232,6 +236,7 @@ export default {
}
if (info.file.status === 'done') {
console.log('上传图片返回的信息 %o', info)
picUrl = info.file.response.data;
// Get this url from response in real world.
getBase64(info.file.originFileObj, (base64Url) => {
imageUrl.value = base64Url;
@@ -246,6 +251,8 @@ export default {
let uplodaFileCount = false;
let attach = "";
let attachData = "";
const handleChange1 = (info) => {
if (info.file.status === 'uploading') {
loading.value = true;
@@ -253,6 +260,19 @@ export default {
}
if (info.file.status === 'done') {
console.log('上传附件返回的信息 %o', info, info.fileList.length, uplodaFileCount)
let attachStr = "";
attachData = info.fileList;
for (let i = 0; i < attachData.length; i++) {
if (attachData.length - 1 == i) {
attachStr += attachData[i].response.data;
} else {
attachStr += attachData[i].response.data + ',';
}
}
console.log(attachStr)
attach = attachStr;
if (info.fileList.length > 5) {
uplodaFileCount = true;
} else {
@@ -287,12 +307,18 @@ export default {
})
};
let beginTime = "";
let endTime = "";
const onRangeChange = (value, dateString) => {
console.log('Selected Time: ', value);
// 项目时间选择函数
console.log('Formatted Selected Time: ', dateString);
console.log('Formatted Selected TimeStamp', new Date(dateString[0]).getTime())
beginTime = new Date(dateString[0]).getTime();
endTime = new Date(dateString[1]).getTime();
};
// 项目经理 后续接口调用
const classifyList1 = ref([
{ value: 1, label: '李俊国' },
@@ -300,22 +326,56 @@ export default {
{ value: 3, label: '刘孟君' },
]);
let manager = "";
let managerId = "";
const classificationChange1 = (key) => {
console.log(`selected ${key}`);
console.log(classifyList1.value[key - 1].label)
manager = String(classifyList1.value[key - 1].label)
managerId = String(key)
};
// 资源归属 sourceBelongId 后续给接口
// 项目说明
const remark = ref('');
let courseSyncFlag = 0;
const changeChecked = () => {
console.log(state.checked)
state.checked ? state.checked = false : state.checked = true;
courseSyncFlag = state.checked ? 1 : 0;
}
let boeFlag = 0;
const changeChecked1 = () => {
console.log(state.checked1)
state.checked1 ? state.checked1 = false : state.checked1 = true;
boeFlag = state.checked1 ? 1 : 0;
}
const removeFile = (file) => {
const index = fileList1.value.indexOf(file);
const newFileList = fileList1.value.slice();
newFileList.splice(index, 1);
fileList1.value = newFileList;
let attachStr = "";
if (newFileList.length == 0) {
attachStr = "";
}
for (let i = 0; i < fileList1["value"].length; i++) {
console.log(fileList1["value"][i].response.data)
if (fileList1["value"].length - 1 == i) {
attachStr += fileList1["value"][i].response.data;
} else {
attachStr += fileList1["value"][i].response.data + ',';
}
}
attach = attachStr;
}
const errorMsgs = {
"name": "请输入项目名称",
"type": "请选择项目分类",
@@ -333,31 +393,29 @@ export default {
const createProject = () => {
let obj = {
"attach": "1",
"beginTime": 0,
"boeFlag": 0,
"category": 0,
"courseSyncFlag": 0,
"endTime": 0,
"level": 0,
"manager": "",
"managerId": "",
"name": projectName["value"],
"type": projectType,
"picUrl": picUrl,
"beginTime": beginTime,
"endTime": endTime,
"manager": manager,
"managerId": managerId,
"sourceBelongId": 11,
"remark": remark["value"],
"courseSyncFlag": courseSyncFlag,
"level": 3,
"systemId": 4,
"boeFlag": boeFlag,
"attach": attach,
"templateId": 10,
"category": 0,
"notice": "",
"noticeFlag": 0,
"parentId": 0,
"picUrl": "",
"projectId": 0,
"remark": remark["value"],
"sourceBelongId": 0,
"status": 0,
"systemId": 0,
"templateId": 0,
"type": projectType
"status": 0
}
console.log('提交的数据格式 %o', obj)
for (let i in obj) {
for (let i in errorMsgs) {
console.log(obj[i])
if (obj[i] === "") {
message.destroy()
@@ -378,6 +436,7 @@ export default {
projectName,
classifyList,
classificationChange,
classificationChange1,
fileList,
fileList1,
loading,
@@ -392,7 +451,8 @@ export default {
changeChecked,
changeChecked1,
uplodaFileCount,
createProject
createProject,
removeFile
};
}
};