|
@@ -117,8 +117,13 @@
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
|
async getOrderTypeList() {
|
|
async getOrderTypeList() {
|
|
|
|
|
+ this.orderTypeList.splice(0, this.orderTypeList.length)
|
|
|
const { data } = await typeApi.getList()
|
|
const { data } = await typeApi.getList()
|
|
|
- this.orderTypeList = data.list
|
|
|
|
|
|
|
+ for (let item of data.list) {
|
|
|
|
|
+ if (item.name !== '硬件交付工单') {
|
|
|
|
|
+ this.orderTypeList.push(item)
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
},
|
|
},
|
|
|
changeOrderType() {
|
|
changeOrderType() {
|
|
|
let item = this.orderTypeList.find((item) => {
|
|
let item = this.orderTypeList.find((item) => {
|