批处理前端

This commit is contained in:
446052889@qq.com 2022-09-03 21:27:46 +08:00
parent d7f7c5445e
commit d0700a293f
2 changed files with 201 additions and 202 deletions

View File

@ -1,61 +1,73 @@
<template>
<div v-loading="loading">
<!-- 校验结果 -->
<!--上传的清单内容预览-->
<div v-if="checkResult.checkTemplateResult == 'ok'">
<awsui-tabs v-model="activeName">
<awsui-tab-pane v-for="(tabItem, index) in tabData" :key="tabItem.id" :name="tabItem.id">
<span slot="label"><span :style="{color: tabItem.isOk ? '' : 'red'}">{{tabItem.sheetName}}</span></span>
<div :style="{height: msgHeight}" v-html="checkResult.resultMsg[index]"></div>
<div :style="{height: msgHeight}" v-html="checkResult.resultMsg"></div>
<div>
<el-table
id='table'
:height="tableHeight"
:data="tabItem.data"
:data="tableData"
border
size="medium"
style="width: 100%">
<!-- ExcelNo -->
<el-table-column
prop='index'
label=''
prop='excelNo'
label=' '
align='center'
width=50px
width=100px
>
<template slot-scope="scope">
{{scope.row.excelNo}}
</template>
</el-table-column>
<!-- 策略 -->
<el-table-column
prop='result'
label='策略'
align='center'
width=100px
fiexd="left"
>
<template slot-scope="scope">
<p :style="{color: scope.row.isRowOk ? '#009688' : '#ff0000'}">
<span v-if="scope.row.result == 'add'">新增</span>
<span v-else-if="scope.row.result == 'update'">更新</span>
<span v-else-if="(scope.row.result == 'repeat' || scope.row.result == 'blank' || scope.row.result == 'noMatch')">忽略</span>
<span v-else></span>
</p>
</template>
</el-table-column>
<el-table-column
v-for="(item) in tabItem.titleRow"
v-for="(item, index) in tableTitle"
:key=item
:prop=item
:label="item">
:label="item"
min-width="150">
<template slot-scope="scope">
<template v-if="scope.row[item] != undefined">
{{scope.row[item].value}}
<!--警告类提示上传可忽略-->
<span v-if="!scope.row[item].isRowOk && item == '名称'" style="color: #E6A23C">
<br/><b>{{scope.row[item].rowMsg}}</b>
</span>
<!--错误类提示不能上传-->
<span v-if="!scope.row[item].isOk" style="color: #ff0000">
<br/><b>{{scope.row[item].msg}}</b>
<template v-if="scope.row.row[index] != undefined">
{{ scope.row.row[index].value }}
<span v-if="!scope.row.row[index].isOk" style="color: #ff0000">
<br/>{{ scope.row.row[index].msg }}
</span>
</template>
</template>
</el-table-column>
</el-table>
</div>
</awsui-tab-pane>
</awsui-tabs>
</div>
<!-- excel错误提示 -->
<!--上传的清单校验失败时显示内容-->
<div v-if="checkResult.checkTemplateResult != 'ok'">
<div style="background-color:#F56C6C;padding: 10px;" v-html="checkResult.checkTemplateResultMsg"></div>
</div>
</div>
</template>
<script>
import awsuiAxios from "../../awsuiAxios";
export default {
import awsuiAxios from "../../awsuiAxios";
export default {
name: "check-shape",
props: {
fileName: {//
@ -73,17 +85,29 @@
wsId: wsId,
teamId: teamId,
shapeFileValue: shapeFileValue,
methodCategory: methodCategory,
msgHeight: '20px',
tableHeight: parseInt(this.totalHeight) - 20 - 45 + 'px',
activeName: 'first',
tabData: [],
tableHeight: parseInt(this.totalHeight) - 20 + 'px',
tableTitle: [],
tableData: [],
checkResult: {
isOk: true,
okData: [],
resultMsg: [],
errData: [],
existData: [],
excelExistData: [],
resultMsg: '正在校验...',
chheckDone: false,
checkTemplateResult: 'ok',
checkTemplateResultMsg: [],
checkTemplateResultMsg: '',
totalCount: 0,
okCount: 0,
repeatCount: 0,
blankCount: 0,
errCount: 0,
noMatchCount: 0,
noPermCount: 0,
moreMatchCount: 0,
readonlyCount: 0
}
}
},
@ -95,65 +119,75 @@
const that = this;
that.loading = true;
const params = {
url:'jd',
data:{
cmd : "com.actionsoft.apps.coe.pal.batch_create_process_data_check",
url: 'jd',
data: {
cmd: "com.actionsoft.apps.coe.pal.batch_create_process_data_check",
wsId: that.wsId,
teamId: that.teamId,
type: 'shapeList',
fileValue: that.shapeFileValue,
fileName: that.fileName
fileName: that.fileName,
methodCategory: methodCategory
}
};
awsuiAxios.post(params).then(function (ro) {
that.loading = false;
if (ro.result == 'ok') {
const data = ro.data;
that.checkResult.okData = JSON.parse(JSON.stringify(data));
for (let i = 0; i < data.length; i++) {
if (i == 0) {
that.activeName = data[i].id;
}
const tableDataTemp = [];
const tableData = data[i].data;
let msg = '清单共<span style="font-weight:bold;">' + tableData.length + '</span>条记录';
let okCount = 0;
let errCount = 0;
for (let j = 0; j < tableData.length; j++) {
const row = {};
const rowArr = tableData[j];
let isRowOk = true;//
for (let m = 0; m < rowArr.length; m++) {
if (!rowArr[m].isOk) {
isRowOk = false;
break;
}
}
for (let m = 0; m < rowArr.length; m++) {
row[rowArr[m].name2] = rowArr[m];
}
row.index = j + 1;// 便
tableDataTemp.push(row);
if (isRowOk) {
okCount++;
//
that.tableTitle = ro.data.data.titleRow;
//
const data = ro.data.data.data;
let totalCount = data.totalCount;//
that.checkResult.totalCount = totalCount;
let okCount = data.okCount;//
that.checkResult.okCount = okCount;
let repeatCount = data.repeatCount;// Excel
that.checkResult.repeatCount = repeatCount;
let blankCount = data.blankCount;//
that.checkResult.blankCount = blankCount;
let errCount = data.errCount;//
that.checkResult.errCount = errCount;
let noMatchCount = data.noMatchCount;//
that.checkResult.noMatchCount = noMatchCount;
let noPermCount = data.noPermCount;//
that.checkResult.noPermCount = noPermCount;
let moreMatchCount = data.moreMatchCount;//
that.checkResult.moreMatchCount = moreMatchCount;
let readonlyCount = data.readonlyCount;//
that.checkResult.readonlyCount = readonlyCount;
let result = '共<span style="font-weight:bold;">' + totalCount + '</span>条';
if (okCount > 0) {
if (totalCount == okCount) {
result += ',全部校验通过';
} else {
errCount++;
that.checkResult.isOk = false;
result += ',通过<span style="font-weight:bold;">' + okCount + '</span>条';
}
}
if (okCount == tableData.length) {
msg += ',全部校验通过';
} else if (errCount == tableData.length) {
msg += ',全部校验失败';
} else {
msg += ',校验通过<span style="font-weight:bold;">' + okCount + '</span>条';
msg += ',校验失败<span style="color:red;font-weight:bold;">' + errCount + '</span>条';
if (errCount > 0) {
result += ',失败<span style="color:red;font-weight:bold;">' + errCount + '</span>条';
}
if (blankCount > 0) {
result += ',模型名称、模型类型、形状名称、形状类型缺失<span style="color:red;font-weight:bold;">' + blankCount + '</span>条';
}
if (repeatCount > 0) {
result += ',重复<span style="color:red;font-weight:bold;">' + repeatCount + '</span>条';
}
if (noMatchCount > 0) {
result += ',不匹配<span style="color:red;font-weight:bold;">' + noMatchCount + '</span>条';
}
if (noPermCount > 0) {
result += ',没权限<span style="color:red;font-weight:bold;">' + noPermCount + '</span>条';
}
if (moreMatchCount > 0) {
result += ',匹配出多个<span style="color:red;font-weight:bold;">' + moreMatchCount + '</span>条';
}
if (readonlyCount > 0) {
result += ',只读<span style="color:red;font-weight:bold;">' + readonlyCount + '</span>条';
}
that.checkResult.resultMsg.push(msg);
data[i].data = tableDataTemp;
}
that.tabData = ro.data;
that.checkResult.resultMsg = result;
that.tableData = data.result;
that.checkResult.okData = that.tableData;
that.checkResult.chheckDone = true;
} else if (ro.result == 'warning') {
that.$message({message: ro.msg, type: 'warning'});
@ -162,16 +196,12 @@
that.checkResult.checkTemplateResult = 'error';
that.checkResult.checkTemplateResultMsg = ro.msg;
}
}).catch(error=>{
}).catch(error => {
console.log(error);
})
},
handleClick() {
alert(this.activeName)
}
}
}
}
</script>
<style scoped>

View File

@ -73,7 +73,7 @@
</awsui-button>
<div style="padding-top: 30px;">
<span class="text-linker-color" style="cursor: pointer;"
@click="openRepositoryTreeDlg">下载Excel模板</span>
@click="downloadTemplate('shapeList')">下载Excel模板</span>
</div>
</div>
<!-- 已上传文件删除 -->
@ -116,18 +116,6 @@
</pal-upload>
</div>
</div>
<create-tree
ref="createTree"
:visible.sync="uploadStep.shapeUpload.createTree.visible"
:wsId="wsId"
:teamId="teamId"
:categorys="methodCategory"
:multiple=true
v-on:cancel="uploadStep.shapeUpload.createTree.visible = false"
v-on:getResult="saveCreateTreeResult"
:title="uploadStep.shapeUpload.createTree.title"
></create-tree>
</awsui-tab-pane>
</awsui-tabs>
</div>
@ -163,15 +151,13 @@
<script>
import palUpload from '../components/upload/index';
import awsuiAxios from "../../awsuiAxios";
import createTree from './components/createTree/index';
import checkProcess from './check-process';
import checkShape from './check-shape';
import save from './save';
import Save from './save.vue';
export default {
name: "create",
components: {palUpload, createTree, checkProcess, checkShape, save},
components: {palUpload, checkProcess, checkShape, save},
data() {
return {
active: 1,
@ -196,10 +182,6 @@ export default {
status: 0,
fileList: [],
data: {},
createTree: {
visible: false,
title: '请选择流程'
}
}
},
checkStep: {
@ -261,7 +243,7 @@ export default {
this.$message({message: '正在校验或校验未通过,不支持此操作', type: 'warning'});
return;
}
if (!result.isOk) {
if (result.okCount != result.totalCount) {
this.$message({message: '校验未通过', type: 'warning'});
return;
}
@ -300,7 +282,7 @@ export default {
document.getElementById("selectShapeFileButton").click();
}
},
downloadTemplate(type, versionIds) { //
downloadTemplate(type) { //
const that = this;
that.uploadStep.loading = true;
const data = {
@ -309,7 +291,6 @@ export default {
cmd: "com.actionsoft.apps.coe.pal.batch_create_download_template",
wsId: that.wsId,
type: type,
versionIds: versionIds,
methodCategory: methodCategory
}
};
@ -383,18 +364,6 @@ export default {
console.log(error);
})
},
/******模型结构模板下载start*******/
openRepositoryTreeDlg() {//
this.uploadStep.shapeUpload.createTree.visible = true;
},
saveCreateTreeResult(data) {//
if (data.length == 0) {
this.$message({message: '未选择任何模型,下载模板被取消', type: 'warning'});
} else {
this.downloadTemplate('shapeList', data.join(','));
}
},
/******模型结构模板下载end*******/
/******模型清单模板上传start*********/
handleProcessRemove(file, fileList) {
this.uploadStep.processUpload.status = 0;