Browse Source

优化

master
ltlzx 4 years ago
parent
commit
c19bd4d2ee
  1. 6
      src/components/billDetails/index.vue
  2. 4
      src/components/page/classification/Category.vue

6
src/components/billDetails/index.vue

@ -237,6 +237,12 @@
width:'120px',
// align:'center'
},
{
title: '受理状态',
dataIndex: 'callback_msg',
width:'120px',
// // align:'center'
},
],
}
},

4
src/components/page/classification/Category.vue

@ -11,7 +11,7 @@
<a-row type="flex" justify="space-between" >
<a-col :lg="8" :xl="7" :xxl="6" class="query_item">
<span>一级分类</span>
<a-select default-value="" @change="handleChange" v-model="query.top_class">
<a-select default-value="" @change="handleChange(0)" v-model="query.top_class">
<a-select-option :value="item" v-for="(item,index) in oneList" :key="index">
{{item}}
</a-select-option>
@ -254,12 +254,14 @@ export default {
},
//
getSon(type){
console.info(type)
let data
if(type==1){
data={top_class:this.query1.pull_top_class}
}else{
data=this.query
}
getSon(data).then(res=>{
if(res.code==200){
this.twoList=res.data

Loading…
Cancel
Save