|
@@ -30,8 +30,6 @@
|
|
|
@handleAdd="handleAdd"
|
|
|
@handleEdit="handleEdit"
|
|
|
@handleDelete="handleDelete"
|
|
|
- @handleImport="handleImport"
|
|
|
- @handleExport="handleExport"
|
|
|
></btns>
|
|
|
</div>
|
|
|
<div class="scoringRulesTableData">
|
|
@@ -112,18 +110,16 @@
|
|
|
</el-dialog>
|
|
|
<scoring-rules-detail-page ref="rulesDetail"></scoring-rules-detail-page>
|
|
|
</div>
|
|
|
- <import-dailog ref="importPage" @successImport="successImport" @importLoading="importLoading"></import-dailog>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import importDailog from '../importPage/importDailog.vue'
|
|
|
import scoringRulesDetailPage from './scoringRulesDetailPage.vue'
|
|
|
import btns from '../elbuttonS.vue'
|
|
|
import {apiGetevaluationscoringruleList, apiGetindicatorListAll, apiGetbinsectionList, apiGetevaluationscoringSaveList, apiGetevaluationruleRemove} from '../../api/api'
|
|
|
export default {
|
|
|
//
|
|
|
- components: { importDailog,scoringRulesDetailPage,btns },
|
|
|
+ components: { scoringRulesDetailPage,btns },
|
|
|
data() {
|
|
|
return {
|
|
|
dialogVisible: false,
|
|
@@ -315,13 +311,6 @@ export default {
|
|
|
this.indicatorStr = ''
|
|
|
this.getEvalscoringData()
|
|
|
},
|
|
|
- successImport(val) {
|
|
|
- this.loadingImport = false
|
|
|
- this.getEvalscoringData()
|
|
|
- },
|
|
|
- importLoading(val) {
|
|
|
- this.loadingImport = true
|
|
|
- },
|
|
|
handleSizeChange(val){
|
|
|
this.page.pagesize = val
|
|
|
this.getEvalscoringData()
|
|
@@ -332,11 +321,7 @@ export default {
|
|
|
},
|
|
|
rowClick(selection, row) {
|
|
|
this.changeDateSelect = selection
|
|
|
- },
|
|
|
- handleImport() {
|
|
|
- this.$refs.importPage.upload.title = "考评指标管理信息导入"
|
|
|
- this.$refs.importPage.upload.open = true
|
|
|
- },
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
</script>
|