ir项目列表排序报错问题解决
parent
a9cbdf9b08
commit
e4fa9c7afd
|
@ -43,7 +43,29 @@
|
||||||
/>
|
/>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<!-- 阅片标准 -->
|
||||||
|
<el-form-item :label="$t('trials:trials-list:table:IR_ReadingCriterionList')" v-if="hasPermi(['role:ir'])">
|
||||||
|
<el-select
|
||||||
|
v-model="searchData.CriterionType"
|
||||||
|
style="width:150px;"
|
||||||
|
clearable
|
||||||
|
>
|
||||||
|
<el-option
|
||||||
|
v-for="(item) in $d.CriterionType"
|
||||||
|
:key="item.id"
|
||||||
|
:label="item.label"
|
||||||
|
:value="item.value"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- 联系人 -->
|
||||||
|
<el-form-item :label="$t('trials:trials-list:table:IR_PMEmailList')" v-if="hasPermi(['role:ir'])">
|
||||||
|
<el-input
|
||||||
|
v-model="searchData.PM_EMail"
|
||||||
|
style="width:100px;"
|
||||||
|
clearable
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<!-- <el-button type="text" @click="isShow = !isShow">More</el-button> -->
|
<!-- <el-button type="text" @click="isShow = !isShow">More</el-button> -->
|
||||||
<!-- Search -->
|
<!-- Search -->
|
||||||
|
@ -381,7 +403,6 @@
|
||||||
prop="IR_ReadingCriterionList"
|
prop="IR_ReadingCriterionList"
|
||||||
:label="$t('trials:trials-list:table:IR_ReadingCriterionList')"
|
:label="$t('trials:trials-list:table:IR_ReadingCriterionList')"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
sortable="custom"
|
|
||||||
min-width="160"
|
min-width="160"
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
|
@ -417,7 +438,6 @@
|
||||||
prop="IR_PMEmailList"
|
prop="IR_PMEmailList"
|
||||||
:label="$t('trials:trials-list:table:IR_PMEmailList')"
|
:label="$t('trials:trials-list:table:IR_PMEmailList')"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
sortable="custom"
|
|
||||||
min-width="170"
|
min-width="170"
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
|
@ -643,7 +663,9 @@ const searchDataDefault = () => {
|
||||||
PageIndex: 1,
|
PageIndex: 1,
|
||||||
PageSize: 20,
|
PageSize: 20,
|
||||||
Asc: false,
|
Asc: false,
|
||||||
SortField: ''
|
SortField: '',
|
||||||
|
CriterionType:null,
|
||||||
|
PM_EMail:null,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
export default {
|
export default {
|
||||||
|
|
Loading…
Reference in New Issue