|
@@ -129,7 +129,7 @@
|
|
|
<span>
|
|
|
<Icon type="md-cube" color="#40A8F0" size="16" />
|
|
|
<span style="margin-left: 5px;">{{ $t("knowledge.point") }}</span>
|
|
|
- <span v-show="uploadNum">
|
|
|
+ <span v-show="uploadShow">
|
|
|
({{ $t('knowledge.imported1') }}{{ filePointNum }}{{ $t('knowledge.imported2') }},{{ $t('knowledge.imported3') }}{{ uploadNum }}{{ $t('knowledge.pointsNum') }})</span>
|
|
|
<!-- <Input v-special-char icon="ios-close" v-model="searchPoint" v-show="subTree.length && !updated" :placeholder="$t('knowledge.searchPoint')" autofocus style="width: 300px;margin-left: 20px;" @on-click="onSearchClear" @on-blur="isSearchPoint = false" @on-change="onSearchPointChange" @on-enter="onSearchPointChange" @on-clear="onSearchClear" /> -->
|
|
|
</span>
|
|
@@ -289,6 +289,7 @@ export default {
|
|
|
activeBlockIndex: null,
|
|
|
uploadNum: 0,
|
|
|
filePointNum: 0,
|
|
|
+ uploadShow: false,
|
|
|
guid: '',
|
|
|
}
|
|
|
},
|
|
@@ -418,6 +419,7 @@ export default {
|
|
|
this.addMode = 0
|
|
|
this.uploadNum = 0
|
|
|
this.filePointNum = 0
|
|
|
+ this.uploadShow = false
|
|
|
this.schoolParams = {
|
|
|
schoolCode: this.originData.id,
|
|
|
subjectId: this.subjectList[index].subjectId,
|
|
@@ -573,6 +575,7 @@ export default {
|
|
|
}
|
|
|
this.uploadNum = 0
|
|
|
this.filePointNum = 0
|
|
|
+ this.uploadShow = false
|
|
|
},
|
|
|
doBatchDelete() {},
|
|
|
// 新增知识点事件
|
|
@@ -784,6 +787,7 @@ export default {
|
|
|
this.$Message.success(this.$t("knowledge.import.sucTip"))
|
|
|
this.batchUploadModal = false
|
|
|
this.updated = true
|
|
|
+ this.uploadShow = true
|
|
|
} else {
|
|
|
this.filePointNum = 0
|
|
|
}
|