Commit 4abd9c22 authored by 黄奎's avatar 黄奎

页面修改

parent a206517b
...@@ -53,9 +53,9 @@ ...@@ -53,9 +53,9 @@
<em>订单状态</em> <em>订单状态</em>
<el-select filterable v-model="msg.COrderState" class="w150"> <el-select filterable v-model="msg.COrderState" class="w150">
<el-option :label="$t('pub.unlimitedSel')" :value="-1"></el-option> <el-option :label="$t('pub.unlimitedSel')" :value="-1"></el-option>
<el-option label="正常" :value="0"></el-option> <el-option v-for="item in OrderStatusList" :label="item.Name" :value="item.Id"
<el-option label="禁用" :value="1"></el-option> :key="item.ID"></el-option>
<el-option label="删除" :value="2"></el-option>
</el-select> </el-select>
</span> </span>
</li> </li>
...@@ -157,11 +157,14 @@ ...@@ -157,11 +157,14 @@
CustomerList: [], CustomerList: [],
//领队列表 //领队列表
LeaderList: [], LeaderList: [],
//订单状态列表
OrderStatusList:[],
}; };
}, },
mounted() { mounted() {
this.getEmployeeList(); this.getEmployeeList();
this.getLeaderList(); this.getLeaderList();
this.getOrderStatusList();
//this.getCustomerList(); //this.getCustomerList();
this.getList(); this.getList();
}, },
...@@ -231,7 +234,18 @@ ...@@ -231,7 +234,18 @@
} }
}, null); }, null);
}, },
//获取领队列表
getOrderStatusList() {
this.apipost(
'ShopOrder_get_GetShopOrderStateService', {},
res => {
if (res.data.resultCode == 1) {
this.OrderStatusList = res.data.data;
}
},
err => {}
)
},
} }
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment