提交 8e00ba65 编写于 作者: 张敬贤's avatar 张敬贤

Hotfix0515

上级 d95530e3
...@@ -297,7 +297,7 @@ ...@@ -297,7 +297,7 @@
ref="templateForm" ref="templateForm"
:model="item1" :model="item1"
label-suffix=":" label-suffix=":"
label-width="110px" label-width="130px"
style="width: 100%" style="width: 100%"
> >
<div class="template-content"> <div class="template-content">
...@@ -598,7 +598,7 @@ ...@@ -598,7 +598,7 @@
</el-col> </el-col>
<el-col :span="10" class="item-icon"> <el-col :span="10" class="item-icon">
<span class="require">*</span> <span class="require">*</span>
<el-form-item label="关联课程"> <el-form-item label="关联课程名称/ID">
<el-select <el-select
v-model="item3.content2" v-model="item3.content2"
filterable filterable
...@@ -620,7 +620,7 @@ ...@@ -620,7 +620,7 @@
v-for="(itemCourse, v-for="(itemCourse,
indexCourse) in courseIdSelect" indexCourse) in courseIdSelect"
:key="indexCourse" :key="indexCourse"
:label="itemCourse.name" :label="itemCourse.id + '-' + itemCourse.name"
:value="itemCourse.id + ''" :value="itemCourse.id + ''"
> >
</el-option> </el-option>
...@@ -783,6 +783,25 @@ ...@@ -783,6 +783,25 @@
> >
</span> </span>
</el-dialog> </el-dialog>
<el-dialog
class="exportlogistics-dialog"
:visible="progressFlag"
width="600px"
:close-on-click-modal="false"
:show-close="false"
>
<div>
<div class="progress-container">
<div class="progress-tag">
{{ totalIndex }}/{{ fileList.length }}
<div class="popper__arrow" />
</div>
<div class="progress-content">
正在导入...
</div>
</div>
</div>
</el-dialog>
</div> </div>
</template> </template>
<script> <script>
...@@ -873,6 +892,7 @@ export default { ...@@ -873,6 +892,7 @@ export default {
resultFlag: "", resultFlag: "",
conditionSelect: false, conditionSelect: false,
newconditionSelect: false, newconditionSelect: false,
totalIndex: 0, // 一共发了多少次请求
conditionAnd: true, conditionAnd: true,
isStorage: false, isStorage: false,
dialogTitle: "选择模板", dialogTitle: "选择模板",
...@@ -885,6 +905,7 @@ export default { ...@@ -885,6 +905,7 @@ export default {
certificateLable: "否", certificateLable: "否",
portCertificateLable: "否", portCertificateLable: "否",
moduleIndex: "", moduleIndex: "",
fileList: [],
editableTabs: [ editableTabs: [
{ {
title: "模块 1", title: "模块 1",
...@@ -917,6 +938,20 @@ export default { ...@@ -917,6 +938,20 @@ export default {
}, },
pageNo: 1, pageNo: 1,
pageSize: 3, pageSize: 3,
progressFlagDetection: false, // 导入检测进度弹窗
progressFlag: false,
ProgressData: {
// 倒入相关数据
totalNum: '', // 总数
nullNum: '', // 空白行
status: '', // 1完成 0进行中
doneNum: '', // doneNum 完成数量
successNum: '', // 成功数量
failNum: '', // 失败数量
repeatNum: '',
errorFileUrl: '', // 失败 原因文件
errorList: [], // 失败列表
},
componentList: { componentList: {
moduleModelList: [ moduleModelList: [
{ {
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册