|
@@ -32,7 +32,7 @@
|
|
|
<el-form-item label="PGU/AEU" prop="coldarea" label-width="50">
|
|
|
<el-checkbox v-model="queryParams.coldarea"></el-checkbox>
|
|
|
</el-form-item>
|
|
|
- <el-form-item :label="$t('无')+$t('上岗证')" prop="notHave" label-width="50">
|
|
|
+ <el-form-item :label="$t('无')+$t('空格')+$t('上岗证')" prop="notHave" label-width="50">
|
|
|
<el-checkbox v-model="queryParams.notHave"></el-checkbox>
|
|
|
</el-form-item>
|
|
|
<el-form-item :label="$t('证书有效期即将到期')" prop="expiring" label-width="50">
|
|
@@ -217,7 +217,7 @@
|
|
|
<el-input v-model="form.idtype" :placeholder="$t('请输入') + $t('证件类型')" />
|
|
|
</el-form-item>
|
|
|
<el-form-item :label="$t('证件号')" prop="crackingIdnum">
|
|
|
- <el-input v-model="form.crackingIdnum" placeholder="请输入证件号" />
|
|
|
+ <el-input v-model="form.crackingIdnum" :placeholder="$t('请输入') +$t('证件号') " />
|
|
|
</el-form-item>
|
|
|
<el-form-item :label="$t('裂解')" prop="boiler">
|
|
|
<el-checkbox v-model="form.boiler" @change="changeBoiler()"></el-checkbox>
|
|
@@ -383,7 +383,7 @@
|
|
|
<el-col>
|
|
|
<el-card class="box-card" shadow="hover">
|
|
|
<div slot="header" class="clearfix">
|
|
|
- <span>{{ $t('上岗证统计') }}</span>
|
|
|
+ <span>{{$t('上岗证')+$t('空格')+ $t('统计') }}</span>
|
|
|
</div>
|
|
|
<div class="text item">
|
|
|
<license-data></license-data>
|
|
@@ -681,7 +681,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) {
|
|
@@ -698,7 +698,7 @@ export default {
|
|
|
if (response.data.coldarea == 1) { this.form.coldarea = true; this.pguaeuDisplay = true }
|
|
|
if (response.data.coldarea == 0) { this.form.coldarea = false; this.pguaeuDisplay = false }
|
|
|
this.open = true;
|
|
|
- this.title = this.$t('修改') + " " + this.$t('上岗证一览');
|
|
|
+ this.title = this.$t('修改') + this.$t('上岗证一览');
|
|
|
});
|
|
|
},
|
|
|
/** 提交按钮 */
|
|
@@ -817,18 +817,18 @@ export default {
|
|
|
handleDoc(row , fileType) {
|
|
|
var workType = "";
|
|
|
if (fileType === "worklicense-boiler"){
|
|
|
- workType = "裂解";
|
|
|
+ workType = this.$t('裂解');
|
|
|
}else if (fileType === "worklicense-compression"){
|
|
|
- workType = "压缩";
|
|
|
+ workType = this.$t('压缩');
|
|
|
}else if (fileType === "worklicense-separation"){
|
|
|
- workType = "分离";
|
|
|
+ workType = this.$t('分离');
|
|
|
}else if (fileType === "worklicense-pguaeu"){
|
|
|
workType = "PGU/AEU";
|
|
|
}
|
|
|
this.doc.pType = fileType
|
|
|
this.doc.queryParams.pType = fileType
|
|
|
this.doc.id = row.id;
|
|
|
- this.doc.title = row.name + "的" + workType + "上岗证附件";
|
|
|
+ this.doc.title = row.name + this.$t('的')+ this.$t('空格') + workType+ this.$t('空格') + this.$t('上岗证')+ this.$t('空格')+ this.$t('附件') ;
|
|
|
this.doc.open = true;
|
|
|
this.doc.queryParams.pId = row.id
|
|
|
this.doc.pId = row.id
|