irc_web/.svn/pristine/31/31e2d3b69e60af22df3a759c921...

180 lines
4.0 KiB
Plaintext

<template>
<div>
<div class="search-form" style="display:flex;justify-content: space-between;">
<div></div>
<div>
<el-button
size="mini"
type="primary"
@click="handleAdd"
>
配置
</el-button>
</div>
</div>
<el-table
v-loading="loading"
v-adaptive="{bottomOffset:80}"
height="100"
:data="list"
stripe
>
<el-table-column
prop=""
label="序号"
width="50"
>
<template slot-scope="scope">
{{scope.$index + 1}}
</template>
</el-table-column>
<el-table-column
prop="ValueCN"
label="中文值"
show-overflow-tooltip
>
</el-table-column>
<el-table-column
prop="Value"
label="英文值"
show-overflow-tooltip
>
</el-table-column>
</el-table>
<el-dialog
v-if="config.visible"
:visible.sync="config.visible"
:close-on-click-modal="false"
:title="config.title"
width="90%"
append-to-body
>
<div style="text-align: right">
<el-button
size="mini"
type="primary"
@click="handleSave"
v-loading="loading"
>
保存
</el-button>
</div>
<el-table
v-loading="loading"
v-adaptive="{bottomOffset:80}"
height="100"
ref="multipleTable"
:data="$d.OncologyAssessType"
stripe
@selection-change="handleSelectionChange"
>
<el-table-column
type="selection"
width="55">
</el-table-column>
<el-table-column
prop="raw.ValueCN"
label="中文值"
show-overflow-tooltip
>
</el-table-column>
<el-table-column
prop="raw.Value"
label="英文值"
show-overflow-tooltip
>
</el-table-column>
</el-table>
</el-dialog>
</div>
</template>
<script>
import { getAssessType, setAssessType } from '@/api/dictionary'
export default {
props: {
criterionId: {
type: String,
required: true
}
},
data() {
return {
list: [],
total: 0,
loading: false,
rowData: {},
activeName: '0',
addOrEdit: { visible: false, title: '' },
preview: { visible: false, title: 'eCRF预览' },
config: { visible: false, title: '全局配置' },
selectedList: []
}
},
mounted() {
this.getList()
},
methods: {
toggleSelection(rows) {
console.log(this.$refs.multipleTable)
if (rows) {
rows.forEach(row => {
this.$refs.multipleTable.toggleRowSelection(row);
});
} else {
this.$refs.multipleTable.clearSelection();
}
},
handleSelectionChange(val) {
this.selectedList = val
},
getList() {
this.loading = true
getAssessType({
CriterionId: this.criterionId,
ParentCode: 'OncologyAssessType'
}).then(res => {
this.loading = false
this.list = res.Result
console.log(this.$d.OncologyAssessType)
})
},
handleAdd() {
this.config.visible = true
this.$nextTick(() => {
var a = this.$d.OncologyAssessType.filter(v => {
return !!this.list.find(v1 => {
return v1.DictionaryId === v.id
})
})
this.toggleSelection(a)
})
},
handleSave() {
this.loading = true
var params = {
CriterionId: this.criterionId,
ParentCode: 'OncologyAssessType',
DictionaryIds: this.selectedList.map(v => v.id),
isSystemCriterion: true
}
setAssessType(params).then(res => {
this.loading = false
this.$message.success('保存成功')
this.config.visible = false
this.selectedList = []
this.getList()
}).catch(() => {
})
},
handleDelete() {
}
}
}
</script>
<style scoped>
</style>