md
This commit is contained in:
parent
c47d1552db
commit
45ba34de33
@ -13,13 +13,13 @@
|
||||
no-data-text=""
|
||||
|
||||
@blur="onBlur"
|
||||
@change="onChange"
|
||||
|
||||
@click.native="onClick"
|
||||
@visible-change="reverseArrow"
|
||||
>
|
||||
<el-option v-for="item in optionItems" :key="item.siteCode" :label="item.siteName" :value="item.siteCode" ></el-option>
|
||||
</el-select>
|
||||
|
||||
<!-- @change="onChange" -->
|
||||
|
||||
</template>
|
||||
<script>
|
||||
|
||||
@ -25,7 +25,7 @@
|
||||
<el-select v-model="form.feeType" filterable clearable placeholder="费用类型"
|
||||
style="width:100%"
|
||||
>
|
||||
<el-option v-for="dict in feeTypeList"
|
||||
<el-option v-for="dict in dict.type.emis_cost_fee_type.filter(item=>(item.value=='1002'||item.value=='1004'))"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
@ -230,20 +230,17 @@ export default {
|
||||
},
|
||||
created() {
|
||||
this.initData();
|
||||
|
||||
|
||||
|
||||
},
|
||||
|
||||
methods: {
|
||||
initData() {
|
||||
|
||||
this.feeTypeList=[];
|
||||
this.feeTypeList=this.dict.type.emis_cost_fee_type.map(item=>{
|
||||
if(item.value=='1002' || item.value=='1004'){
|
||||
return item;
|
||||
}
|
||||
});
|
||||
// this.feeTypeList=[];
|
||||
// this.feeTypeList=this.dict.type.emis_cost_fee_type.map(item=>{
|
||||
// if(item.value=='1002' || item.value=='1004'){
|
||||
// return item;
|
||||
// }
|
||||
// });
|
||||
|
||||
console.log()
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user