| | |
| | | import { mapGetters } from 'vuex' |
| | | import ttable from '@/views/common/ztt-table.vue' |
| | | import { pageList } from '@/api/accounting/personReport' |
| | | import { remote } from '@/api/admin/dict' |
| | | export default { |
| | | components: { |
| | | ttable |
| | |
| | | prop: 'workShop', |
| | | label: '车间', |
| | | isTrue: true, |
| | | isSearch: true, |
| | | searchInfoType: 'text', |
| | | isSearch: true,searchInfoType:'select', |
| | | optList: () => { |
| | | return this.workShopList |
| | | } |
| | | }, |
| | | { |
| | | minWidth: '100', |
| | |
| | | operator: null |
| | | }, |
| | | prelang: "operation", |
| | | workShopList:[], |
| | | } |
| | | }, |
| | | mounted(){ |
| | | this.getWorkShopList() |
| | | }, |
| | | methods:{ |
| | | // table自带事件 |
| | | handleSelectionChange(val) { |
| | | this.multipleSelection = val |
| | | }, |
| | | getWorkShopList(){ |
| | | remote('work_shop').then((response) => { |
| | | if (response.data.code === 0) { |
| | | this.workShopList = response.data.data |
| | | } else { |
| | | this.workShopList = [] |
| | | } |
| | | }) |
| | | } |
| | | } |
| | | } |
| | | </script> |
| | |
| | | </el-col> |
| | | </div> |
| | | <div style="margin-left: 50px;width: 100%;"> |
| | | <el-row style="margin-top: 10px;"> |
| | | <el-row> |
| | | <el-col style="font-weight: bold;font-size: 14px;"><span>批 次 号: </span>{{ item.code.moNo2 }}</el-col> |
| | | </el-row> |
| | | <el-row style="margin-top: 9px;font-size: 14px;"> |
| | | <el-row style="margin-top: 6px;font-size: 14px;"> |
| | | <el-col style="font-weight: bold;"><span>订 单 号: </span>{{ item.orderNo }}</el-col> |
| | | </el-row> |
| | | <el-row style="margin-top: 9px;font-size: 14px;"> |
| | | <el-row style="margin-top: 6px;font-size: 14px;"> |
| | | <el-col style="font-weight: bold;"><span>客户名称: </span>{{ item.cName }}</el-col> |
| | | </el-row> |
| | | <el-row style="margin-top: 6px;font-size: 14px;"> |
| | | <el-col style="font-weight: bold;"><span>零 件 号: </span>{{ item.partNo }}</el-col> |
| | | </el-row> |
| | | </div> |
| | | </div> |
| | |
| | | } |
| | | let no = (i+"").padStart(3,'0') |
| | | obj.code.moNo2 = data.moNo + no |
| | | obj.partNo = data.partNo |
| | | this.qrData.push(obj) |
| | | } |
| | | } |
| | |
| | | <tr class="x1111113"> |
| | | <td class="x1111114" colspan=6> |
| | | <div style="height: 75px;" > |
| | | <p><span lang="EN-US" class="x1111112">地址:江苏省南通经济技术开发区常兴路96号</span></p> |
| | | <p><span lang="EN-US" class="x1111112">电话/传真:0513—89191125</span></p> |
| | | <p style="margin-top: 0;margin-bottom: 0;"><span lang="EN-US" class="x1111112">地址:江苏省南通经济技术开发区常兴路96号</span></p> |
| | | <p style="margin-top: 0;margin-bottom: 0;"><span lang="EN-US" class="x1111112">电话/传真:0513—89191125</span></p> |
| | | </div> |
| | | </td> |
| | | </tr> |
| | |
| | | </div> |
| | | <el-table :data="processConfigFileTableData" height="260px"> |
| | | <el-table-column |
| | | prop="rawInsNo" |
| | | prop="no" |
| | | align="center" |
| | | width="120" |
| | | label="原材料检验编号" |
| | |
| | | ></el-table-column> |
| | | <el-table-column align="center" label="操作"> |
| | | <template slot-scope="scope"> |
| | | <!-- :disabled="(resultVal!=null && resultVal!='')" --> |
| | | <el-button |
| | | @click="delProcessConfigFile(scope.row)" |
| | | type="text" |
| | | size="small" |
| | | :disabled="(resultVal!=null && resultVal!='')" |
| | | |
| | | >删除</el-button |
| | | > |
| | | <el-button |