|
@@ -31,7 +31,7 @@
|
|
|
<el-form-item :label="$t('参会人员名单')" prop="staffId">
|
|
|
<el-input
|
|
|
v-model="queryParams.staffId"
|
|
|
- :placeholder="$t('请输入') + $t('需参会人员') + $t('员工号')"
|
|
|
+ :placeholder="$t('请输入') + $t('需参会人员')+ $t('空格') + $t('员工号')"
|
|
|
clearable
|
|
|
size="small"
|
|
|
@keyup.enter.native="handleQuery"
|
|
@@ -501,7 +501,7 @@ export default {
|
|
|
handleAdd() {
|
|
|
this.reset();
|
|
|
this.open = true;
|
|
|
- this.title = this.$t('新增') + " " + this.$t('公司级培训');
|
|
|
+ this.title = this.$t('新增') + this.$t('空格') + this.$t('公司级培训');
|
|
|
},
|
|
|
/** 修改按钮操作 */
|
|
|
handleUpdate(row) {
|
|
@@ -510,7 +510,7 @@ export default {
|
|
|
getCompanylevel(id).then(response => {
|
|
|
this.form = response.data;
|
|
|
this.open = true;
|
|
|
- this.title = this.$t('修改') + " " + this.$t('公司级培训');
|
|
|
+ this.title = this.$t('修改') + this.$t('公司级培训');
|
|
|
});
|
|
|
},
|
|
|
/** 参会人员名单按钮操作 */
|
|
@@ -525,7 +525,7 @@ export default {
|
|
|
this.checked = [];
|
|
|
}
|
|
|
this.participantsOpen = true;
|
|
|
- this.participantsTitle = this.$t('参加') +' '+ this.$t('公司级') + ' ' + this.$t('培训人员') + ' ' + this.$t('名单');
|
|
|
+ this.participantsTitle = this.$t('参加') +this.$t('空格')+ this.$t('公司级') + this.$t('空格') + this.$t('培训人员') + this.$t('空格') + this.$t('名单');
|
|
|
});
|
|
|
},
|
|
|
/** 提交按钮 */
|
|
@@ -602,7 +602,7 @@ export default {
|
|
|
},
|
|
|
/** 导入按钮操作 */
|
|
|
handleImport() {
|
|
|
- this.upload.title = "导入培训记录";
|
|
|
+ this.upload.title = this.$t('导入培训记录');
|
|
|
this.upload.open = true;
|
|
|
},
|
|
|
handleScore(){
|