优化
This commit is contained in:
@@ -10,7 +10,7 @@ export default {
|
||||
'instorage_time': '入箱时间',
|
||||
'product_area': '生产区域',
|
||||
'temperature': '温度',
|
||||
'last_time': '倒计时',
|
||||
'last_time': '加热时间',
|
||||
'group_name': '组别',
|
||||
'ext_code': '外部编码',
|
||||
'point_location': '位置',
|
||||
|
||||
@@ -59,6 +59,16 @@
|
||||
@change="hand"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="备注">
|
||||
<el-input
|
||||
v-model="query.remark"
|
||||
clearable
|
||||
placeholder="备注"
|
||||
style="width: 185px;"
|
||||
class="filter-item"
|
||||
@keyup.enter.native="crud.toQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('Hot.pan1.dialog.point_location')">
|
||||
<el-select
|
||||
v-model="query.point_location"
|
||||
@@ -153,9 +163,15 @@
|
||||
<el-form-item :label="$t('Hot.pan1.dialog.temperature')">
|
||||
<el-input v-model="form.temperature" style="width: 370px;" />
|
||||
</el-form-item>
|
||||
<el-form-item label="加热时间">
|
||||
<el-input v-model="form.last_time" style="width: 370px;" />
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('Hot.pan1.dialog.is_used')" prop="is_used">
|
||||
<el-switch v-model="form.is_used" active-value="1" inactive-value="0" />
|
||||
</el-form-item>
|
||||
<el-form-item label="备注" prop="remark">
|
||||
<el-input v-model="form.remark" style="width: 370px;" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button type="text" @click="crud.cancelCU">{{ $t('common.Cancel') }}</el-button>
|
||||
@@ -199,16 +215,20 @@
|
||||
:min-width="flexWidth('instorage_time',crud.data,$t('Hot.pan1.table.instorage_time'))"
|
||||
show-overflow-tooltip
|
||||
/>
|
||||
|
||||
<el-table-column
|
||||
prop="last_time"
|
||||
:label="$t('Hot.pan1.table.last_time')"
|
||||
:min-width="flexWidth('last_time',crud.data,$t('Hot.pan1.table.last_time'))"
|
||||
/>
|
||||
<el-table-column
|
||||
prop="temperature"
|
||||
:label="$t('Hot.pan1.table.temperature')"
|
||||
:min-width="flexWidth('temperature',crud.data,$t('Hot.pan1.table.temperature'), 10)"
|
||||
/>
|
||||
<el-table-column
|
||||
prop="last_time"
|
||||
:label="$t('Hot.pan1.table.last_time')"
|
||||
:min-width="flexWidth('last_time',crud.data,$t('Hot.pan1.table.last_time'))"
|
||||
prop="remark"
|
||||
:label="$t('Hot.pan1.table.remark')"
|
||||
:min-width="flexWidth('remark',crud.data,$t('Hot.pan1.table.remark'))"
|
||||
/>
|
||||
<el-table-column
|
||||
prop="group_name"
|
||||
@@ -238,11 +258,7 @@
|
||||
{{ dict.label.is_used[scope.row.is_used] }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="remark"
|
||||
:label="$t('Hot.pan1.table.remark')"
|
||||
:min-width="flexWidth('remark',crud.data,$t('Hot.pan1.table.remark'))"
|
||||
/>
|
||||
|
||||
<el-table-column
|
||||
prop="update_time"
|
||||
:label="$t('Hot.pan1.table.update_time')"
|
||||
|
||||
@@ -238,36 +238,7 @@
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item v-show="pointTypesDialogList.length > 0" :label="$t('Point.dialog.point_type')" prop="device_point_type">
|
||||
<el-select
|
||||
v-model="form.point_type"
|
||||
size="mini"
|
||||
:placeholder="$t('Point.dialog.point_type')"
|
||||
class="filter-item"
|
||||
style="width: 370px;"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in pointTypesDialogList"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('Point.search.lock_type')" prop="device_point_type">
|
||||
<el-select
|
||||
v-model="form.lock_type"
|
||||
size="mini"
|
||||
:placeholder="$t('Point.search.lock_type')"
|
||||
class="filter-item"
|
||||
style="width: 370px;"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in dict.d_lock_type"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item :label="$t('Point.dialog.parent_point_code')" prop="vehicle_code">
|
||||
<el-input v-model="form.parent_point_code" clearable style="width: 370px;" @focus="getParentPoint" />
|
||||
</el-form-item>
|
||||
|
||||
Reference in New Issue
Block a user