国际化修改
continuous-integration/drone/push Build is running
Details
continuous-integration/drone/push Build is running
Details
parent
f3a237b0bf
commit
2c93ba2882
|
@ -209,9 +209,12 @@ export default {
|
||||||
[],
|
[],
|
||||||
this.arr.filter(
|
this.arr.filter(
|
||||||
(v) =>
|
(v) =>
|
||||||
~v.Code.toLowerCase().indexOf(this.key.toLowerCase()) ||
|
(v.Code &&
|
||||||
~v.Value.toLowerCase().indexOf(this.key.toLowerCase()) ||
|
~v.Code.toLowerCase().indexOf(this.key.toLowerCase())) ||
|
||||||
~v.ValueCN.toLowerCase().indexOf(this.key.toLowerCase())
|
(v.Value &&
|
||||||
|
~v.Value.toLowerCase().indexOf(this.key.toLowerCase())) ||
|
||||||
|
(v.ValueCN &&
|
||||||
|
~v.ValueCN.toLowerCase().indexOf(this.key.toLowerCase()))
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -129,7 +129,7 @@
|
||||||
v-if="hasDownLoad && isManage && !viewStatus"
|
v-if="hasDownLoad && isManage && !viewStatus"
|
||||||
@click.stop="downLoad"
|
@click.stop="downLoad"
|
||||||
>
|
>
|
||||||
{{ $t('trials:trialDocument:fileRecord:button:downLoad') }}
|
{{ $t('trials:trialDocument:fileRecord:button:downLoadFile') }}
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button
|
<el-button
|
||||||
type="primary"
|
type="primary"
|
||||||
|
@ -317,7 +317,7 @@
|
||||||
<el-button
|
<el-button
|
||||||
v-if="hasDownLoad && isManage && !viewStatus"
|
v-if="hasDownLoad && isManage && !viewStatus"
|
||||||
icon="el-icon-download"
|
icon="el-icon-download"
|
||||||
:title="$t('trials:trialDocument:fileRecord:button:download')"
|
:title="$t('trials:trialDocument:fileRecord:button:downLoadFile')"
|
||||||
circle
|
circle
|
||||||
@click.stop="downLoad(false, scope.row.TrialFileRecord, 'file')"
|
@click.stop="downLoad(false, scope.row.TrialFileRecord, 'file')"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -111,7 +111,7 @@
|
||||||
v-if="hasDownLoad && isManage && !viewStatus"
|
v-if="hasDownLoad && isManage && !viewStatus"
|
||||||
@click.stop="downLoad"
|
@click.stop="downLoad"
|
||||||
>
|
>
|
||||||
{{ $t('trials:trialDocument:temp:button:downLoad') }}
|
{{ $t('trials:trialDocument:temp:button:downLoadFile') }}
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button
|
<el-button
|
||||||
type="primary"
|
type="primary"
|
||||||
|
@ -272,7 +272,7 @@
|
||||||
<el-button
|
<el-button
|
||||||
v-if="hasDownLoad && isManage && !viewStatus"
|
v-if="hasDownLoad && isManage && !viewStatus"
|
||||||
icon="el-icon-download"
|
icon="el-icon-download"
|
||||||
:title="$t('trials:trialDocument:temp:button:download')"
|
:title="$t('trials:trialDocument:temp:button:downLoadFile')"
|
||||||
circle
|
circle
|
||||||
@click.stop="downLoad(false, scope.row.TrialFileRecord, 'file')"
|
@click.stop="downLoad(false, scope.row.TrialFileRecord, 'file')"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -171,7 +171,7 @@
|
||||||
v-if="hasDownLoad && isManage && !viewStatus"
|
v-if="hasDownLoad && isManage && !viewStatus"
|
||||||
@click.stop="downLoad"
|
@click.stop="downLoad"
|
||||||
>
|
>
|
||||||
{{ $t('trials:trialDocument:trainRecord:button:downLoad') }}
|
{{ $t('trials:trialDocument:trainRecord:button:downLoadFile') }}
|
||||||
</el-button>
|
</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
@ -376,7 +376,7 @@
|
||||||
<el-button
|
<el-button
|
||||||
v-if="hasDownLoad && isManage && !viewStatus"
|
v-if="hasDownLoad && isManage && !viewStatus"
|
||||||
icon="el-icon-download"
|
icon="el-icon-download"
|
||||||
:title="$t('trials:trialDocument:trainRecord:button:download')"
|
:title="$t('trials:trialDocument:trainRecord:button:downLoadFileFileFile')"
|
||||||
circle
|
circle
|
||||||
@click.stop="downLoad(false, scope.row.TrialFileRecord, 'file')"
|
@click.stop="downLoad(false, scope.row.TrialFileRecord, 'file')"
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in New Issue