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

页面修改

parent a206517b
......@@ -53,9 +53,9 @@
<em>订单状态</em>
<el-select filterable v-model="msg.COrderState" class="w150">
<el-option :label="$t('pub.unlimitedSel')" :value="-1"></el-option>
<el-option label="正常" :value="0"></el-option>
<el-option label="禁用" :value="1"></el-option>
<el-option label="删除" :value="2"></el-option>
<el-option v-for="item in OrderStatusList" :label="item.Name" :value="item.Id"
:key="item.ID"></el-option>
</el-select>
</span>
</li>
......@@ -157,11 +157,14 @@
CustomerList: [],
//领队列表
LeaderList: [],
//订单状态列表
OrderStatusList:[],
};
},
mounted() {
this.getEmployeeList();
this.getLeaderList();
this.getOrderStatusList();
//this.getCustomerList();
this.getList();
},
......@@ -231,7 +234,18 @@
}
}, 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