|
|
@ -58,8 +58,8 @@ |
|
|
<el-form-item :label="$t('page.business.study.studyFormApply.sfbl')"> |
|
|
<el-form-item :label="$t('page.business.study.studyFormApply.sfbl')"> |
|
|
<el-select v-model="searchForm.sfbl" :placeholder="$t('form.placeholderSelect')" clearable |
|
|
<el-select v-model="searchForm.sfbl" :placeholder="$t('form.placeholderSelect')" clearable |
|
|
@change="search"> |
|
|
@change="search"> |
|
|
<el-option :label="$t('page.business.study.studyFormApply.yes')" :value="10" /> |
|
|
|
|
|
<el-option :label="$t('page.business.study.studyFormApply.no')" :value="1" /> |
|
|
|
|
|
|
|
|
<el-option :label="$t('page.business.study.studyFormApply.yes')" value="是" /> |
|
|
|
|
|
<el-option :label="$t('page.business.study.studyFormApply.no')" value="否" /> |
|
|
</el-select> |
|
|
</el-select> |
|
|
</el-form-item> |
|
|
</el-form-item> |
|
|
</el-col> |
|
|
</el-col> |
|
|
@ -83,8 +83,8 @@ |
|
|
<el-table-column :label="$t('page.business.study.studyFormApply.sfbl')" align="center" prop="status" |
|
|
<el-table-column :label="$t('page.business.study.studyFormApply.sfbl')" align="center" prop="status" |
|
|
width="100"> |
|
|
width="100"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<span v-if="scope.row.sfbl === 10">{{ $t('page.business.study.studyFormApply.yes') }}</span> |
|
|
|
|
|
<span v-if="scope.row.sfbl === 1">{{ $t('page.business.study.studyFormApply.no') }}</span> |
|
|
|
|
|
|
|
|
<span v-if="scope.row.sfbl === '是'">{{ $t('page.business.study.studyFormApply.yes') }}</span> |
|
|
|
|
|
<span v-if="scope.row.sfbl === '否'">{{ $t('page.business.study.studyFormApply.no') }}</span> |
|
|
</template> |
|
|
</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
<el-table-column :label="$t('page.business.form.status')" prop="status" align="center" width="100"> |
|
|
<el-table-column :label="$t('page.business.form.status')" prop="status" align="center" width="100"> |
|
|
|