|
|
@ -5,27 +5,27 @@ |
|
|
<div class="mjy" v-show="!showDetail"> |
|
|
<div class="mjy" v-show="!showDetail"> |
|
|
<el-form :model="queryParams" ref="queryForm" class="search-area" :inline="true" label-width="88px"> |
|
|
<el-form :model="queryParams" ref="queryForm" class="search-area" :inline="true" label-width="88px"> |
|
|
<!-- 名称 --> |
|
|
<!-- 名称 --> |
|
|
<el-form-item :label="$t('page.business.study.cell.mc') + ':'"> |
|
|
|
|
|
|
|
|
<el-form-item :label="$t('page.business.study.cell.mc') + ':'" prop="mc"> |
|
|
<el-input v-model="queryParams.mc" clearable @change="handleQuery" |
|
|
<el-input v-model="queryParams.mc" clearable @change="handleQuery" |
|
|
:placeholder="$t('form.placeholderInput')" /> |
|
|
:placeholder="$t('form.placeholderInput')" /> |
|
|
</el-form-item> |
|
|
</el-form-item> |
|
|
<!-- 编号 --> |
|
|
<!-- 编号 --> |
|
|
<el-form-item :label="$t('page.business.study.cell.bh') + ':'"> |
|
|
|
|
|
|
|
|
<el-form-item :label="$t('page.business.study.cell.bh') + ':'" prop="bh"> |
|
|
<el-input v-model="queryParams.bh" clearable @change="handleQuery" |
|
|
<el-input v-model="queryParams.bh" clearable @change="handleQuery" |
|
|
:placeholder="$t('form.placeholderInput')" /> |
|
|
:placeholder="$t('form.placeholderInput')" /> |
|
|
</el-form-item> |
|
|
</el-form-item> |
|
|
<!-- 来源 --> |
|
|
<!-- 来源 --> |
|
|
<el-form-item :label="$t('page.business.study.cell.ly') + ':'"> |
|
|
|
|
|
|
|
|
<el-form-item :label="$t('page.business.study.cell.ly') + ':'" prop="ly"> |
|
|
<el-input v-model="queryParams.ly" clearable @change="handleQuery" |
|
|
<el-input v-model="queryParams.ly" clearable @change="handleQuery" |
|
|
:placeholder="$t('form.placeholderInput')" /> |
|
|
:placeholder="$t('form.placeholderInput')" /> |
|
|
</el-form-item> |
|
|
</el-form-item> |
|
|
<!-- 所属试验 --> |
|
|
<!-- 所属试验 --> |
|
|
<el-form-item :label="$t('page.business.study.cell.sssy') + ':'"> |
|
|
|
|
|
|
|
|
<el-form-item :label="$t('page.business.study.cell.sssy') + ':'" prop="studyName"> |
|
|
<el-input v-model="queryParams.studyName" clearable @change="handleQuery" |
|
|
<el-input v-model="queryParams.studyName" clearable @change="handleQuery" |
|
|
:placeholder="$t('form.placeholderInput')" /> |
|
|
:placeholder="$t('form.placeholderInput')" /> |
|
|
</el-form-item> |
|
|
</el-form-item> |
|
|
<!-- 失效日 --> |
|
|
<!-- 失效日 --> |
|
|
<el-form-item :label="$t('page.business.study.cell.sxr') + ':'"> |
|
|
|
|
|
|
|
|
<el-form-item :label="$t('page.business.study.cell.sxr') + ':'" prop="daterange"> |
|
|
<el-date-picker v-model="daterange" class="chat-histogram-daterange" type="daterange" range-separator="-" |
|
|
<el-date-picker v-model="daterange" class="chat-histogram-daterange" type="daterange" range-separator="-" |
|
|
:start-placeholder="$t('form.startDate')" :end-placeholder="$t('form.endDate')" value-format="yyyy-MM-dd" |
|
|
:start-placeholder="$t('form.startDate')" :end-placeholder="$t('form.endDate')" value-format="yyyy-MM-dd" |
|
|
@change="handleQuery" style="width: 250px;" /> |
|
|
@change="handleQuery" style="width: 250px;" /> |
|
|
|