特殊权重页面调整
This commit is contained in:
parent
b13bc01ae0
commit
c1e9f5d0aa
@ -26,6 +26,23 @@
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="是否过期" prop="expireStatus" >
|
||||
<el-select v-model="queryParams.expireStatus" :placeholder="$t('是否过期')" clearable>
|
||||
<el-option
|
||||
label="全部"
|
||||
value="0"
|
||||
/>
|
||||
<el-option
|
||||
label="过期"
|
||||
value="1"
|
||||
/>
|
||||
<el-option
|
||||
label="未过期"
|
||||
value="2"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
|
||||
</SearchForm>
|
||||
|
||||
|
||||
@ -108,17 +125,17 @@
|
||||
<div class="link-type" @click="handleUpdate(scope.row)">{{scope.row.prodName}}</div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="所属路线" align="center" prop="lineName" min-width="100" :show-overflow-tooltip="true"/>
|
||||
<el-table-column label="所属国家" align="center" prop="countryName" min-width="100" />
|
||||
<el-table-column :label="$t('取重方式')" align="center" prop="carryType" width="100" >
|
||||
<el-table-column label="所属路线" align="center" prop="lineName" min-width="120" :show-overflow-tooltip="true" sortable/>
|
||||
<el-table-column label="所属国家" align="center" prop="countryName" min-width="120" sortable/>
|
||||
<el-table-column :label="$t('取重方式')" align="center" prop="carryType" width="120" sortable>
|
||||
<template slot-scope="scope">
|
||||
<dict-tag :options="dict.type.emis_take_weight_method" :value="scope.row.carryType"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column :label="$t('起始重量')" align="center" prop="beginWeight" width="80" />
|
||||
<el-table-column :label="$t('结束重量')" align="center" prop="endWeight" width="80" />
|
||||
<el-table-column :label="$t('生效时间')" align="center" prop="beginDate" min-width="170" />
|
||||
<el-table-column :label="$t('失效时间')" align="center" prop="endDate" min-width="170" />
|
||||
<el-table-column :label="$t('生效时间')" align="center" prop="beginDate" min-width="170" sortable/>
|
||||
<el-table-column :label="$t('失效时间')" align="center" prop="endDate" min-width="170" sortable/>
|
||||
<!-- <el-table-column :label="$t('启用状态')" align="center" prop="status" min-width="100" /> -->
|
||||
<!-- <el-table-column :label="$t('备注')" align="center" prop="remark" min-width="100" /> -->
|
||||
<el-table-column label="创建人" align="center" prop="createByName" width="80" :show-overflow-tooltip="true"/>
|
||||
@ -230,6 +247,7 @@ export default {
|
||||
prodName: null,
|
||||
status: null,
|
||||
carryType: null,
|
||||
expireStatus:null,
|
||||
},
|
||||
};
|
||||
},
|
||||
|
||||
Loading…
Reference in New Issue
Block a user