| | |
| | | <div class="statusItem" :class="{statusItemLight:form.erporderstus===''}" @click="statusChange('')">全部</div> |
| | | <div class="statusItem" :class="{statusItemLight:form.erporderstus==='NEW'}" @click="statusChange('NEW')">新订单 |
| | | </div> |
| | | <div class="statusItem" :class="{statusItemLight:form.erporderstus==='CREATING'}" |
| | | @click="statusChange('CREATING')">部分下达 |
| | | <div |
| | | class="statusItem" |
| | | :class="{statusItemLight:form.erporderstus==='CREATING'}" |
| | | @click="statusChange('CREATING')" |
| | | >部分下达 |
| | | </div> |
| | | <div class="statusItem" :class="{statusItemLight:form.erporderstus==='CREATED'}" |
| | | @click="statusChange('CREATED')">全部下达 |
| | | <div |
| | | class="statusItem" |
| | | :class="{statusItemLight:form.erporderstus==='CREATED'}" |
| | | @click="statusChange('CREATED')" |
| | | >全部下达 |
| | | </div> |
| | | <div class="statusItem" :class="{statusItemLight:form.erporderstus==='CLOSED'}" @click="statusChange('CLOSED')"> |
| | | 已关闭 |
| | |
| | | <el-select |
| | | v-model="form.wkshopcode" |
| | | filterable |
| | | multiple |
| | | collapse-tags |
| | | :popper-append-to-body="false" |
| | | style="width: 200px" |
| | | placeholder="请选择" |
| | |
| | | mainHeight: 0, |
| | | tableHeight: 0, |
| | | form: { |
| | | wkshopcode: '', // 车间编码 |
| | | wkshopcode: [], // 车间编码 |
| | | erporderstus: '', // 订单状态码 |
| | | erpordercode: '', // 订单编号 |
| | | partcode: '', // 产品编码 |
| | |
| | | const data = { |
| | | |
| | | erporderstus: this.form.erporderstus, // 订单状态码 |
| | | wkshopcode: this.form.wkshopcode, // 车间编码 |
| | | wkshopcode: this.form.wkshopcode.join(','), // 车间编码 |
| | | erpordercode: this.form.erpordercode, // 订单编号 |
| | | saleordercode: this.form.saleordercode, // 销售单号 |
| | | |
| | |
| | | }, |
| | | // 重置 |
| | | reset() { |
| | | this.form.wkshopcode = '' |
| | | this.form.wkshopcode = [] |
| | | this.form.erporderstus = '' |
| | | this.form.erpordercode = '' |
| | | this.form.partcode = '' |