Commit aa2eaa77 authored by 陈浩玮's avatar 陈浩玮

国际化

parent 31a5b39e
// 0 中文, 1 英文
export default {
'input.placeholder': ['请输入', 'Please enter'],
'input.search.one.placeholder': [
'请输入地点名称/二维码/电子标签',
'Please enter location name/QR code/electronic tag',
],
'input.search': ['搜索', 'search'],
'input.error': ['输入的内容有误!', 'Incorrect Input!'],
};
// 0 中文, 1 英文
export default {
'other.tag.valid': ['有效', 'Valid'],
'other.tag.invalid': ['无效', 'Invalid'],
'other.to': ['', 'To'],
'other.normal': ['正常值', 'normal'],
'other.outliers': ['异常值', 'outliers'],
'other.defaultValue': ['默认值', 'Default Value'],
'other.upperLimit': ['上限值', 'Upper Limit'],
'other.lowerLimit': ['下限值', 'Lower Limit'],
'other.TEXT': ['文本类型', 'Text Type'],
'other.OPTION': ['选项类型', 'Option Type'],
'other.NUMERIC': ['数值类型', 'Numeric Type'],
'other.on': ['', 'On'],
'other.off': ['', 'Off'],
};
......@@ -11,5 +11,7 @@ export default {
'select.examine': ['巡检状态', 'Examine Status'],
'select.taskType': ['任务类型', 'Task Type'],
'select.examiner': ['巡检人', 'Examiner'],
'select.routeName': ['线路名称', 'RouteName'],
'select.routeName': ['线路名称', 'Route Name'],
'select.option.place': ['地点免检', 'Place Exemption'],
'select.option.unit': ['单元免检', 'Unit Exemption'],
};
......@@ -29,4 +29,5 @@ export default {
'user.confirmUnlock': ['确认是否解锁', 'Confirm Whether To Unlock'],
'user.locking': ['锁定', 'Locking'],
'user.confirmLocked': ['确认是否锁定', 'Confirm Locked'],
'user.userName': ['用户姓名', 'User Name'],
};
<template>
<Wraper :hidden="hidden" :onOk="submit" :refresh="refresh" :noFooter="isView">
<a-form-model layout="vertical" :model="form" :rules="rules" ref="form">
<a-form-model-item label="免检类型" prop="exemptionType">
<a-select class="tw-w-full" v-model="form.exemptionType" :disabled="isView">
<a-select-option value="PLACE">地点免检</a-select-option>
<a-select-option value="UNIT">单元免检</a-select-option>
<a-form-model-item :label="$t('table.exemptionType')" prop="exemptionType">
<a-select
class="tw-w-full"
v-model="form.exemptionType"
:disabled="isView"
:placeholder="$t('select.placeholder')"
>
<a-select-option value="PLACE">{{ $t('select.option.place') }}</a-select-option>
<a-select-option value="UNIT">{{ $t('select.option.unit') }}</a-select-option>
</a-select>
</a-form-model-item>
<a-form-model-item label="所属地区" prop="regionId">
<a-form-model-item :label="$t('table.region')" prop="regionId">
<UrlSelect
url="/ranger/inspection/api/v1/region/list"
v-model="form.regionId"
labelFiled="regionName"
valueFiled="regionId"
:disabled="isView"
:placeholder="$t('select.placeholder')"
/>
</a-form-model-item>
<a-form-model-item label="所属地点" prop="placeId">
<a-form-model-item :label="$t('table.place')" prop="placeId">
<UrlSelect
v-model="form.placeId"
:url="
......@@ -26,23 +32,25 @@
labelFiled="placeName"
valueFiled="placeId"
:disabled="isView"
:placeholder="$t('select.placeholder')"
/>
</a-form-model-item>
<a-form-model-item label="时间" prop="startTime">
<a-form-model-item :label="$t('table.time')" prop="startTime">
<RangeTime
:startTime.sync="form.startTime"
:endTime.sync="form.endTime"
showTime
:disabled="isView"
:placeholder="$t('select.placeholder')"
/>
</a-form-model-item>
<a-form-model-item label="免检原因" prop="exemptionReason">
<a-form-model-item :label="$t('table.reason')" prop="exemptionReason">
<a-textarea
placeholder="Basic usage"
:rows="4"
v-model="form.exemptionReason"
:disabled="isView"
:placeholder="$t('input.placeholder')"
/>
</a-form-model-item>
</a-form-model>
......@@ -61,11 +69,11 @@ export default {
data: () => ({
form: {},
rules: {
exemptionType: [{ required: true }],
regionId: [{ required: true }],
placeId: [{ required: true }],
exemptionReason: [{ required: true }],
startTime: [{ required: true }],
exemptionType: [{ required: true, message: this.$t('select.placeholder') }],
regionId: [{ required: true, message: this.$t('select.placeholder') }],
placeId: [{ required: true, message: this.$t('select.placeholder') }],
exemptionReason: [{ required: true, message: this.$t('input.placeholder') }],
startTime: [{ required: true, message: this.$t('select.placeholder') }],
},
}),
......
......@@ -8,21 +8,26 @@
:defaultQuery="defaultQuery"
>
<template #search="{ query }">
<MoreItem label="免检类型">
<a-select class="tw-w-full" v-model="query.exemptionType">
<a-select-option value="PLACE">地点免检</a-select-option>
<a-select-option value="UNIT">单元免检</a-select-option>
<MoreItem :label="$t('table.exemptionType')">
<a-select
class="tw-w-full"
v-model="query.exemptionType"
:placeholder="$t('select.placeholder')"
>
<a-select-option value="PLACE">{{ $t('select.option.place') }}</a-select-option>
<a-select-option value="UNIT">{{ $t('select.option.unit') }}</a-select-option>
</a-select>
</MoreItem>
<MoreItem label="地区">
<MoreItem :label="$t('table.region')">
<UrlSelect
url="/ranger/inspection/api/v1/region/list"
v-model="query.regionId"
labelFiled="regionName"
valueFiled="regionId"
:placeholder="$t('select.placeholder')"
/>
</MoreItem>
<MoreItem label="地点">
<MoreItem :label="$t('table.place')">
<UrlSelect
v-model="query.placeId"
:url="
......@@ -30,14 +35,16 @@
"
labelFiled="placeName"
valueFiled="placeId"
:placeholder="$t('select.placeholder')"
/>
</MoreItem>
<MoreItem label="单元" v-if="query.exemptionType === 'UNIT'">
<MoreItem :label="$t('table.unit')" v-if="query.exemptionType === 'UNIT'">
<UrlSelect
v-model="query.unitId"
:url="query.placeId ? `/ranger/inspection/api/v1/units/places/${query.placeId}/list` : ''"
labelFiled="unitName"
valueFiled="unitId"
:placeholder="$t('select.placeholder')"
/>
</MoreItem>
</template>
......@@ -46,19 +53,21 @@
<AddAndEdit v-bind="drawer" />
</template>
<a-table-column title="免检地点/单元名称" data-index="exemptionName" />
<a-table-column title="所属地区" data-index="regionName" />
<a-table-column title="类型">
<a-table-column :title="$t('table.exemptionName')" data-index="exemptionName" />
<a-table-column :title="$t('table.region')" data-index="regionName" />
<a-table-column :title="$t('table.type')">
<template #default="row">
<span>{{ row.exemptionType === 'PLACE' ? '地点免检' : '单元免检' }}</span>
<span>{{
row.exemptionType === 'PLACE' ? $t('select.option.place') : $t('select.option.unit')
}}</span>
</template>
</a-table-column>
<a-table-column title="开始时间" data-index="startTime" />
<a-table-column title="结束时间" data-index="endTime" />
<a-table-column title="原因" data-index="exemptionReason" />
<a-table-column title="免检状态" data-index="exemptionStateName" />
<a-table-column title="修改人" data-index="editorName" />
<a-table-column title="修改时间" data-index="editTime" />
<a-table-column :title="$t('table.time.start')" data-index="startTime" />
<a-table-column :title="$t('table.time.start')" data-index="endTime" />
<a-table-column :title="$t('table.reason')" data-index="exemptionReason" />
<a-table-column :title="$t('table.state')" data-index="exemptionStateName" />
<a-table-column :title="$t('table.reviser')" data-index="editorName" />
<a-table-column :title="$t('table.revisionTime')" data-index="editTime" />
</Table>
</template>
......@@ -76,8 +85,8 @@ export default {
exemptionType: 'PLACE',
},
buttons: [
{ label: '编辑', click: this.edit },
{ label: '详情', click: this.view },
{ label: this.$t('table.edit'), click: this.edit },
{ label: this.$t('table.details'), click: this.view },
{
type: 'confirm',
url: (row) => `ranger/inspection/api/v1/exemptions/${row.exemptionId}`,
......@@ -91,10 +100,10 @@ export default {
this.$refs.table.getData();
},
edit(row) {
this.$refs.table.show({ row, title: '编辑', type: 'edit' });
this.$refs.table.show({ row, title: this.$t('table.edit'), type: 'edit' });
},
view(row) {
this.$refs.table.show({ row, title: '详情', type: 'view' });
this.$refs.table.show({ row, title: this.$t('table.details'), type: 'view' });
},
},
};
......
<template>
<Wraper :hidden="hidden" :onOk="submit" :refresh="refresh" :noFooter="isView">
<a-form-model layout="vertical" :model="form" :rules="rules" ref="form">
<a-form-model-item label="项目名称" prop="placeName">
<a-input v-model="form.placeName" :disabled="isView" />
<a-form-model-item :label="$t('table.placeholder')" prop="itemName">
<a-input v-model="form.itemName" :disabled="isView" :placeholder="$t('input.placeholder')" />
</a-form-model-item>
<a-form-model-item label="所属地区" prop="regionId">
<a-form-model-item :label="$t('table.region')" prop="regionId">
<UrlSelect
v-model="form.regionId"
url="/ranger/inspection/api/v1/region/list"
labelFiled="regionName"
valueFiled="regionId"
:disabled="isView"
:placeholder="$t('select.placeholder')"
/>
</a-form-model-item>
<a-form-model-item label="所属地点" prop="placeId">
<a-form-model-item :label="$t('table.place')" prop="placeId">
<UrlSelect
v-model="form.placeId"
:url="
......@@ -23,28 +24,30 @@
labelFiled="placeName"
valueFiled="placeId"
:disabled="isView"
:placeholder="$t('select.placeholder')"
/>
</a-form-model-item>
<a-form-model-item label="所属单元" prop="unitId">
<a-form-model-item :label="$t('table.unit')" prop="unitId">
<UrlSelect
v-model="form.unitId"
:url="form.placeId ? `/ranger/inspection/api/v1/units/places/${form.placeId}/list` : ''"
labelFiled="unitName"
valueFiled="unitId"
:disabled="isView"
:placeholder="$t('select.placeholder')"
/>
</a-form-model-item>
<a-form-model-item label="数据类型" prop="dataType">
<a-select v-model="form.dataType" :disabled="isView">
<a-select-option key="TEXT" value="TEXT">文本类型</a-select-option>
<a-select-option key="OPTION" value="OPTION">选项类型</a-select-option>
<a-select-option key="NUMERIC" value="NUMERIC">数值类型</a-select-option>
<a-form-model-item :label="$t('table.dataType')" prop="dataType">
<a-select v-model="form.dataType" :disabled="isView" :placeholder="$t('select.placeholder')">
<a-select-option key="TEXT" value="TEXT">{{ $t('other.TEXT') }}</a-select-option>
<a-select-option key="OPTION" value="OPTION">{{ $t('other.OPTION') }}</a-select-option>
<a-select-option key="NUMERIC" value="NUMERIC">{{ $t('other.NUMERIC') }}</a-select-option>
</a-select>
</a-form-model-item>
<div v-if="form.dataType === 'TEXT'">
<a-form-model-item label="默认值" prop="defaultText">
<a-form-model-item :label="$t('other.defaultValue')" prop="defaultText">
<a-textarea
placeholder="Basic usage"
:placeholder="$t('input.placeholder')"
:rows="4"
v-model="form.defaultText"
:disabled="isView"
......@@ -52,37 +55,56 @@
</a-form-model-item>
</div>
<div v-if="form.dataType === 'OPTION'">
<a-form-model-item label="选项类型" prop="optionType">
<a-select v-model="form.optionType" :disabled="isView">
<a-select-option key="TEXT" value="TEXT">开/关</a-select-option>
<a-form-model-item :label="$t('other.OPTION')" prop="optionType">
<a-select
v-model="form.optionType"
:disabled="isView"
:placeholder="$t('select.placeholder')"
>
<a-select-option key="TEXT" value="TEXT">{{
`${$t('other.on')}/${$t('other.off')}`
}}</a-select-option>
</a-select>
</a-form-model-item>
<a-form-model-item label="正常值" prop="normalValue">
<a-select v-model="form.normalValue" :disabled="isView">
<a-select-option key="1" value="1"></a-select-option>
<a-select-option key="0" value="0"></a-select-option>
<a-form-model-item :label="$t('other.normal')" prop="normalValue">
<a-select
v-model="form.normalValue"
:disabled="isView"
:placeholder="$t('select.placeholder')"
>
<a-select-option key="1" value="1">{{ $t('other.on') }}</a-select-option>
<a-select-option key="0" value="0">{{ $t('other.off') }}</a-select-option>
</a-select>
</a-form-model-item>
<a-form-model-item label="异常值" prop="abnormalValue">
<a-form-model-item
:label="$t('other.outliers')"
prop="abnormalValue"
:placeholder="$t('select.placeholder')"
>
<a-select v-model="form.abnormalValue" :disabled="isView">
<a-select-option key="1" value="1"></a-select-option>
<a-select-option key="0" value="0"></a-select-option>
<a-select-option key="1" value="1">{{ $t('other.on') }}</a-select-option>
<a-select-option key="0" value="0">{{ $t('other.off') }}</a-select-option>
</a-select>
</a-form-model-item>
</div>
<div v-if="form.dataType === 'NUMERIC'">
<a-form-model-item label="默认值" prop="defaultValue">
<a-input v-model="form.defaultValue" placeholder="请输入" />
<a-form-model-item :label="$t('other.defaultValue')" prop="defaultValue">
<a-input v-model="form.defaultValue" :placeholder="$t('input.placeholder')" />
</a-form-model-item>
<a-form-model-item label="上限值" prop="upperLimitValue">
<a-input v-model="form.upperLimitValue" placeholder="请输入" />
<a-form-model-item :label="$t('other.upperLimit')" prop="upperLimitValue">
<a-input v-model="form.upperLimitValue" :placeholder="$t('input.placeholder')" />
</a-form-model-item>
<a-form-model-item label="下限值" prop="lowerLimitValue">
<a-input v-model="form.lowerLimitValue" placeholder="请输入" />
<a-form-model-item :label="$t('other.lowerLimit')" prop="lowerLimitValue">
<a-input v-model="form.lowerLimitValue" :placeholder="$t('input.placeholder')" />
</a-form-model-item>
</div>
<a-form-model-item label="备注" prop="remark">
<a-textarea placeholder="Basic usage" :rows="4" v-model="form.remark" :disabled="isView" />
<a-form-model-item :label="$t('table.remark')" prop="remark">
<a-textarea
:placeholder="$t('input.placeholder')"
:rows="4"
v-model="form.remark"
:disabled="isView"
/>
</a-form-model-item>
</a-form-model>
</Wraper>
......@@ -99,11 +121,11 @@ export default {
data() {
let normalValueValidator = (rule, value, callback) => {
if (value === '') {
callback(new Error('Please input the password'));
callback(new Error(this.$t('input.placeholder')));
} else {
if (this.form.abnormalValue) {
if (value === this.form.abnormalValue) {
callback(new Error('Please input the password'));
callback(new Error(this.$t('input.error')));
} else {
callback();
}
......@@ -114,11 +136,11 @@ export default {
};
let abnormalValueValidator = (rule, value, callback) => {
if (value === '') {
callback(new Error('Please input the password'));
callback(new Error(this.$t('input.placeholder')));
} else {
if (this.form.abnormalValue) {
if (value === this.form.abnormalValue) {
callback(new Error('Please input the password'));
callback(new Error(this.$t('input.error')));
} else {
callback();
}
......@@ -129,25 +151,25 @@ export default {
};
let defaultValueValidator = (rule, value, callback) => {
if (value === '') {
callback(new Error('Please input the password'));
callback(new Error(this.$t('input.placeholder')));
} else {
if (this.form.upperLimitValue && this.form.lowerLimitValue) {
if (this.form.upperLimitValue > value && value > this.form.lowerLimitValue) {
callback();
} else {
callback(new Error('数值错误'));
callback(new Error(this.$t('input.error')));
}
} else if (this.form.upperLimitValue) {
if (this.form.upperLimitValue > value) {
callback();
} else {
callback(new Error('数值错误1'));
callback(new Error(this.$t('input.error')));
}
} else if (this.form.lowerLimitValue) {
if (this.form.lowerLimitValue < value) {
callback();
} else {
callback(new Error('数值错误2'));
callback(new Error(this.$t('input.error')));
}
} else {
callback();
......@@ -156,25 +178,25 @@ export default {
};
let upperLimitValueValidator = (rule, value, callback) => {
if (value === '') {
callback(new Error('Please input the password'));
callback(new Error(this.$t('input.placeholder')));
} else {
if (this.form.defaultValue && this.form.lowerLimitValue) {
if (this.form.defaultValue < value && value > this.form.lowerLimitValue) {
callback();
} else {
callback(new Error('数值错误'));
callback(new Error(this.$t('input.error')));
}
} else if (this.form.defaultValue) {
if (this.form.defaultValue < value) {
callback();
} else {
callback(new Error('数值错误1'));
callback(new Error(this.$t('input.error')));
}
} else if (this.form.lowerLimitValue) {
if (this.form.lowerLimitValue < value) {
callback();
} else {
callback(new Error('数值错误2'));
callback(new Error(this.$t('input.error')));
}
} else {
callback();
......@@ -183,25 +205,25 @@ export default {
};
let lowerLimitValueValidator = (rule, value, callback) => {
if (value === '') {
callback(new Error('Please input the password'));
callback(new Error(this.$t('input.placeholder')));
} else {
if (this.form.defaultValue && this.form.upperLimitValue) {
if (this.form.defaultValue > value && value < this.form.upperLimitValue) {
callback();
} else {
callback(new Error('数值错误'));
callback(new Error(this.$t('input.error')));
}
} else if (this.form.defaultValue) {
if (this.form.defaultValue > value) {
callback();
} else {
callback(new Error('数值错误1'));
callback(new Error(this.$t('input.error')));
}
} else if (this.form.upperLimitValue) {
if (this.form.upperLimitValue > value) {
callback();
} else {
callback(new Error('数值错误2'));
callback(new Error(this.$t('input.error')));
}
} else {
callback();
......@@ -211,23 +233,35 @@ export default {
return {
form: {},
rules: {
placeName: [{ required: true }],
placeId: [{ required: true }],
regionId: [{ required: true }],
unitId: [{ required: true }],
dataType: [{ required: true }],
defaultText: [{ required: true }],
optionType: [{ required: true }],
itemName: [{ required: true, message: this.$t('input.placeholder') }],
placeId: [{ required: true, message: this.$t('input.placeholder') }],
regionId: [{ required: true, message: this.$t('input.placeholder') }],
unitId: [{ required: true, message: this.$t('input.placeholder') }],
dataType: [{ required: true, message: this.$t('input.placeholder') }],
defaultText: [{ required: true, message: this.$t('input.placeholder') }],
optionType: [{ required: true, message: this.$t('input.placeholder') }],
normalValue: [
{ required: true },
{ required: true, message: this.$t('input.placeholder') },
{
validator: normalValueValidator,
},
],
abnormalValue: [{ required: true }, { validator: abnormalValueValidator }],
defaultValue: [{ required: true }, { validator: defaultValueValidator }],
upperLimitValue: [{ required: true }, { validator: upperLimitValueValidator }],
lowerLimitValue: [{ required: true }, { validator: lowerLimitValueValidator }],
abnormalValue: [
{ required: true, message: this.$t('input.placeholder') },
{ validator: abnormalValueValidator },
],
defaultValue: [
{ required: true, message: this.$t('input.placeholder') },
{ validator: defaultValueValidator },
],
upperLimitValue: [
{ required: true, message: this.$t('input.placeholder') },
{ validator: upperLimitValueValidator },
],
lowerLimitValue: [
{ required: true, message: this.$t('input.placeholder') },
{ validator: lowerLimitValueValidator },
],
},
};
},
......
......@@ -8,15 +8,16 @@
:scroll="{ x: true }"
>
<template #search="{ query }">
<MoreItem label="地区">
<MoreItem :label="$t('table.region')">
<UrlSelect
url="/ranger/inspection/api/v1/region/list"
v-model="query.regionId"
labelFiled="regionName"
valueFiled="regionId"
:placeholder="$t('select.placeholder')"
/>
</MoreItem>
<MoreItem label="地点">
<MoreItem :label="$t('table.place')">
<UrlSelect
v-model="query.placeId"
:url="
......@@ -24,18 +25,20 @@
"
labelFiled="placeName"
valueFiled="placeId"
:placeholder="$t('select.placeholder')"
/>
</MoreItem>
<MoreItem label="单元">
<MoreItem :label="$t('table.unit')">
<UrlSelect
v-model="query.unitId"
:url="query.placeId ? `/ranger/inspection/api/v1/units/places/${query.placeId}/list` : ''"
labelFiled="unitName"
valueFiled="unitId"
:placeholder="$t('select.placeholder')"
/>
</MoreItem>
<MoreItem label="项目名称">
<a-input v-model="query.inputValue" placeholder="请输入项目名称" />
<MoreItem :label="$t('table.itemName')">
<a-input v-model="query.inputValue" :placeholder="$t('input.placeholder')" />
</MoreItem>
</template>
......@@ -47,28 +50,34 @@
<AddAndEdit v-bind="drawer" />
</template>
<a-table-column title="项目名称" data-index="itemName" />
<a-table-column title="所属单元" data-index="unitName" />
<a-table-column title="数据类型">
<a-table-column :title="$t('table.itemName')" data-index="itemName" />
<a-table-column :title="$t('table.unitName')" data-index="unitName" />
<a-table-column :title="$t('table.dataType')">
<template #default="row">
<span> {{ dataType[row.dataType] }}</span>
<span> {{ $t(`other.${row.dataType}`) }}</span>
</template>
</a-table-column>
<a-table-column title="项目描述">
<a-table-column :title="$t('table.describe')">
<template #default="row">
<span v-if="row.dataType === 'TEXT'"> {{ row.defaultText }}</span>
<span v-if="row.dataType === 'OPTION'">
{{ `正常值:${row.normalValue} 异常值:${row.abnormalValue}` }}</span
{{
`${$t('other.normal')}:${row.normalValue} ${$t('other.outliers')}:${
row.abnormalValue
}`
}}</span
>
<span v-if="row.dataType === 'NUMERIC'">
{{
`默认值:${row.defaultValue} 上限值:${row.upperLimitValue} 下限值:${row.lowerLimitValue}`
`${$t('other.defaultValue')}:${row.defaultValue}
${$t('other.upperLimit')}:${row.upperLimitValue}
${$t('other.lowerLimit')}:${row.lowerLimitValue}`
}}</span
>
</template>
</a-table-column>
<a-table-column title="修改人" data-index="editorName" />
<a-table-column title="修改时间" data-index="editTime" />
<a-table-column :title="$t('table.reviser')" data-index="editorName" />
<a-table-column :title="$t('table.revisionTime')" data-index="editTime" />
</Table>
</template>
......@@ -83,19 +92,14 @@ export default {
data() {
return {
buttons: [
{ label: '编辑', click: this.edit },
{ label: '详情', click: this.view },
{ label: this.$t('table.edit'), click: this.edit },
{ label: this.$t('table.details'), click: this.view },
{
type: 'confirm',
url: (row) => `/ranger/inspection/api/v1/items/${row.itemId}`,
after: this.refresh,
},
],
dataType: {
TEXT: '文本类型',
OPTION: '选项类型',
NUMERIC: '数值类型',
},
};
},
methods: {
......@@ -103,10 +107,10 @@ export default {
this.$refs.table.getData();
},
edit(row) {
this.$refs.table.show({ row, title: '编辑', type: 'edit' });
this.$refs.table.show({ row, title: this.$t('table.edit'), type: 'edit' });
},
view(row) {
this.$refs.table.show({ row, title: '查看', type: 'view' });
this.$refs.table.show({ row, title: this.$t('table.details'), type: 'view' });
},
},
};
......
<template>
<Wraper :hidden="hidden" :onOk="submit" :refresh="refresh" :noFooter="isView">
<a-form-model layout="vertical" :model="form" :rules="rules" ref="form">
<a-form-model-item label="专业名称" prop="specialityName">
<a-input v-model="form.specialityName" :disabled="isView" />
<a-form-model-item :label="$t('table.majorName')" prop="specialityName">
<a-input
v-model="form.specialityName"
:disabled="isView"
:placeholder="$t('input.placeholder')"
/>
</a-form-model-item>
<a-form-model-item label="所属地区" prop="regionId">
<a-form-model-item :label="$t('table.region')" prop="regionId">
<UrlSelect
url="/ranger/inspection/api/v1/region/list"
v-model="form.regionId"
labelFiled="regionName"
valueFiled="regionId"
:disabled="isView"
:placeholder="$t('select.placeholder')"
/>
</a-form-model-item>
<a-form-model-item label="备注" prop="remark">
<a-textarea placeholder="Basic usage" :rows="4" v-model="form.remark" :disabled="isView" />
<a-form-model-item :label="$t('table.remark')" prop="remark">
<a-textarea
:placeholder="$t('input.placeholder')"
:rows="4"
v-model="form.remark"
:disabled="isView"
/>
</a-form-model-item>
</a-form-model>
</Wraper>
......
......@@ -9,7 +9,7 @@
rowKey="userId"
:loading="loading"
>
<a-table-column title="姓名" data-index="userName" />
<a-table-column :title="$t('user.name')" data-index="userName" />
</a-table>
</Wraper>
</template>
......
......@@ -7,16 +7,17 @@
ref="table"
>
<template #search="{ query }">
<MoreItem label="地区">
<MoreItem :label="$t('table.region')">
<UrlSelect
url="/ranger/inspection/api/v1/region/list"
v-model="query.regionId"
labelFiled="regionName"
valueFiled="regionId"
:placeholder="$t('select.placeholder')"
/>
</MoreItem>
<MoreItem label="专业名称">
<a-input v-model="query.specialityName" />
<MoreItem :label="$t('table.majorName')">
<a-input v-model="query.specialityName" :placeholder="$t('input.placeholder')" />
</MoreItem>
</template>
......@@ -25,10 +26,10 @@
<AddAndEdit v-bind="drawer" v-else />
</template>
<a-table-column title="专业名称" data-index="specialityName" />
<a-table-column title="所属地区" data-index="regionName" />
<a-table-column title="修改人" data-index="editorName" />
<a-table-column title="修改时间" data-index="editTime" />
<a-table-column :title="$t('table.majorName')" data-index="specialityName" />
<a-table-column :title="$t('table.regionName')" data-index="regionName" />
<a-table-column :title="$t('table.reviser')" data-index="editorName" />
<a-table-column :title="$t('table.revisionTime')" data-index="editTime" />
</Table>
</template>
......@@ -44,9 +45,9 @@ export default {
data() {
return {
buttons: [
{ label: '编辑', click: this.edit },
{ label: '详情', click: this.view },
{ label: '人员', click: this.showMember },
{ label: this.$t('table.edit'), click: this.edit },
{ label: this.$t('table.details'), click: this.view },
{ label: this.$t('table.personnel'), click: this.showMember },
{
type: 'confirm',
url: (row) => `/ranger/inspection/api/v1/specialities/${row.specialityId}`,
......@@ -60,13 +61,13 @@ export default {
this.$refs.table.getData();
},
edit(row) {
this.$refs.table.show({ row, title: '编辑', type: 'edit' });
this.$refs.table.show({ row, title: this.$t('table.edit'), type: 'edit' });
},
view(row) {
this.$refs.table.show({ row, title: '详情', type: 'view' });
this.$refs.table.show({ row, title: this.$t('table.details'), type: 'view' });
},
showMember(row) {
this.$refs.table.show({ row, title: '人员', type: 'member' });
this.$refs.table.show({ row, title: this.$t('table.personnel'), type: 'member' });
},
},
};
......
......@@ -13,8 +13,8 @@
<AddMember v-bind="drawer" :specialityId="row.specialityId" />
</template>
<a-table-column title="部门" data-index="orgName" />
<a-table-column title="用户姓名" data-index="staffName" />
<a-table-column :title="$t('table.department')" data-index="orgName" />
<a-table-column :title="$t('table.userName')" data-index="staffName" />
</Table>
</Wraper>
</template>
......@@ -33,8 +33,8 @@ export default {
data() {
return {
addBtn: {
text: '添加',
title: '添加',
text: this.$t('table.add'),
title: this.$t('table.add'),
},
buttons: [
{
......
<template>
<Wraper :hidden="hidden" :onOk="submit" :refresh="refresh" :noFooter="isView">
<a-form-model layout="vertical" :model="form" :rules="rules" ref="form">
<a-form-model-item label="单元名称" prop="unitName">
<a-input v-model="form.unitName" :disabled="isView" />
<a-form-model-item :label="$t('table.unitName')" prop="unitName">
<a-input v-model="form.unitName" :disabled="isView" :placeholder="$t('input.placeholder')" />
</a-form-model-item>
<a-form-model-item label="所属地区" prop="regionId">
<a-form-model-item :label="$t('table.regionName')" prop="regionId">
<UrlSelect
url="/ranger/inspection/api/v1/region/list"
v-model="form.regionId"
labelFiled="regionName"
valueFiled="regionId"
:disabled="isView"
:placeholder="$t('select.placeholder')"
/>
</a-form-model-item>
<a-form-model-item label="所属地点" prop="placeId">
<a-form-model-item :label="$t('table.placeName')" prop="placeId">
<UrlSelect
v-model="form.placeId"
:url="
......@@ -23,9 +24,10 @@
labelFiled="placeName"
valueFiled="placeId"
:disabled="isView"
:placeholder="$t('select.placeholder')"
/>
</a-form-model-item>
<a-form-model-item label="设备编号" prop="equipmentCode">
<a-form-model-item :label="$t('table.equipmentCode')" prop="equipmentCode">
<SearchSelect
url="oceanus/api/v1/equipments/list"
searchField="searchKey"
......@@ -33,11 +35,17 @@
labelFiled="equipmentCode"
valueFiled="equipmentCode"
:disabled="isView"
:placeholder="$t('select.placeholder')"
/>
</a-form-model-item>
<a-form-model-item label="备注" prop="remark">
<a-textarea placeholder="Basic usage" :rows="4" v-model="form.remark" :disabled="isView" />
<a-form-model-item :label="$t('table.remark')" prop="remark">
<a-textarea
:placeholder="$t('input.placeholder')"
:rows="4"
v-model="form.remark"
:disabled="isView"
/>
</a-form-model-item>
</a-form-model>
</Wraper>
......
<template>
<Table url="/ranger/inspection/api/v1/units" rowKey="unitId" addBtn :buttons="buttons" ref="table">
<template #search="{ query }">
<MoreItem label="地区">
<MoreItem :label="$t('table.region')">
<UrlSelect
url="/ranger/inspection/api/v1/region/list"
v-model="query.regionId"
labelFiled="regionName"
valueFiled="regionId"
:placeholder="$t('select.placeholder')"
/>
</MoreItem>
<MoreItem label="地点">
<MoreItem :label="$t('table.place')">
<UrlSelect
v-model="query.placeId"
:url="
......@@ -17,10 +18,11 @@
"
labelFiled="placeName"
valueFiled="placeId"
:placeholder="$t('select.placeholder')"
/>
</MoreItem>
<MoreItem label="关键字">
<a-input v-model="query.inputValue" />
<MoreItem :label="$t('table.unitName')">
<a-input v-model="query.inputValue" :placeholder="$t('input.placeholder')" />
</MoreItem>
</template>
......@@ -28,11 +30,11 @@
<AddAndEdit v-bind="drawer" />
</template>
<a-table-column title="单元名称" data-index="unitName" />
<a-table-column title="所属地点" data-index="placeName" />
<a-table-column title="设备编号" data-index="equipmentCode" />
<a-table-column title="修改人" data-index="editorName" />
<a-table-column title="修改时间" data-index="editTime" />
<a-table-column :title="$t('table.unitName')" data-index="unitName" />
<a-table-column :title="$t('table.placeName')" data-index="placeName" />
<a-table-column :title="$t('table.equipmentCode')" data-index="equipmentCode" />
<a-table-column :title="$t('table.reviser')" data-index="editorName" />
<a-table-column :title="$t('table.revisionTime')" data-index="editTime" />
</Table>
</template>
......@@ -47,9 +49,9 @@ export default {
data() {
return {
buttons: [
{ label: '编辑', click: this.edit },
{ label: '详情', click: this.view },
{ label: '免检', click: this.view },
{ label: this.$t('table.edit'), click: this.edit },
{ label: this.$t('table.details'), click: this.view },
{ label: this.$t('table.exemption'), click: this.view },
// { label: '文档', click: this.view },
{
type: 'confirm',
......@@ -64,10 +66,10 @@ export default {
this.$refs.table.getData();
},
edit(row) {
this.$refs.table.show({ row, title: '编辑', type: 'edit' });
this.$refs.table.show({ row, title: this.$t('table.edit'), type: 'edit' });
},
view(row) {
this.$refs.table.show({ row, title: '详情', type: 'view' });
this.$refs.table.show({ row, title: this.$t('table.details'), type: 'view' });
},
},
};
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment