|
|
@@ -13,12 +13,12 @@
|
|
|
<a-col :span="6">
|
|
|
<a-form-item
|
|
|
field="address"
|
|
|
- :label="$t('dashboard.form.address')"
|
|
|
+ :label="t('dashboard.form.address')"
|
|
|
label-col-flex="50px"
|
|
|
>
|
|
|
<a-input
|
|
|
v-model="formModel.address"
|
|
|
- :placeholder="$t('dashboard.form.address')"
|
|
|
+ :placeholder="t('dashboard.form.address')"
|
|
|
allow-clear
|
|
|
/>
|
|
|
</a-form-item>
|
|
|
@@ -26,12 +26,12 @@
|
|
|
<a-col :span="6">
|
|
|
<a-form-item
|
|
|
field="name"
|
|
|
- :label="$t('dashboard.form.name')"
|
|
|
+ :label="t('dashboard.form.name')"
|
|
|
label-col-flex="50px"
|
|
|
>
|
|
|
<a-input
|
|
|
v-model="formModel.name"
|
|
|
- :placeholder="$t('dashboard.form.name')"
|
|
|
+ :placeholder="t('dashboard.form.name')"
|
|
|
allow-clear
|
|
|
/>
|
|
|
</a-form-item>
|
|
|
@@ -39,12 +39,12 @@
|
|
|
<a-col :span="6">
|
|
|
<a-form-item
|
|
|
field="entityType"
|
|
|
- :label="$t('dashboard.form.entityType')"
|
|
|
+ :label="t('dashboard.form.entityType')"
|
|
|
label-col-flex="60px"
|
|
|
>
|
|
|
<a-select
|
|
|
v-model="formModel.entityType"
|
|
|
- :placeholder="$t('dashboard.form.entityType')"
|
|
|
+ :placeholder="t('dashboard.form.entityType')"
|
|
|
allow-clear
|
|
|
>
|
|
|
<a-option
|
|
|
@@ -58,12 +58,12 @@
|
|
|
<a-col :span="6">
|
|
|
<a-form-item
|
|
|
field="statusTypeList"
|
|
|
- :label="$t('dashboard.form.status')"
|
|
|
+ :label="t('dashboard.form.status')"
|
|
|
label-col-flex="60px"
|
|
|
>
|
|
|
<a-select
|
|
|
v-model="formModel.status"
|
|
|
- :placeholder="$t('dashboard.form.status')"
|
|
|
+ :placeholder="t('dashboard.form.status')"
|
|
|
allow-clear
|
|
|
>
|
|
|
<a-option
|
|
|
@@ -76,7 +76,7 @@
|
|
|
</a-col>
|
|
|
<a-col :span="6">
|
|
|
<a-form-item
|
|
|
- :label="$t('dashboard.form.timeRange')"
|
|
|
+ :label="t('dashboard.form.timeRange')"
|
|
|
label-col-flex="60px"
|
|
|
>
|
|
|
<a-range-picker v-model="formModel.time" />
|
|
|
@@ -92,13 +92,13 @@
|
|
|
<template #icon>
|
|
|
<icon-search />
|
|
|
</template>
|
|
|
- {{ $t('searchTable.form.search') }}
|
|
|
+ {{ t('searchTable.form.search') }}
|
|
|
</a-button>
|
|
|
<a-button @click="reset">
|
|
|
<template #icon>
|
|
|
<icon-refresh />
|
|
|
</template>
|
|
|
- {{ $t('searchTable.form.reset') }}
|
|
|
+ {{ t('searchTable.form.reset') }}
|
|
|
</a-button>
|
|
|
</a-space>
|
|
|
<a-space class="right-side">
|
|
|
@@ -106,7 +106,7 @@
|
|
|
<template #icon>
|
|
|
<icon-download />
|
|
|
</template>
|
|
|
- {{ $t('searchTable.form.down') }}
|
|
|
+ {{ t('searchTable.form.down') }}
|
|
|
</a-button>
|
|
|
</a-space>
|
|
|
</a-col>
|