| | |
| | | <div class="operationClass"> |
| | | <el-tooltip class="item" effect="dark" content="打印工单" placement="top"> |
| | | <i |
| | | class="el-icon-tickets" |
| | | class="el-icon-printer" |
| | | style="cursor: pointer;color: #42b983;margin-right: 15px" |
| | | @click="handlePrint(row.wo_code)" |
| | | /> |
| | |
| | | <div class="operationClass"> |
| | | <el-tooltip class="item" effect="dark" content="打印工序" placement="top"> |
| | | <i |
| | | class="el-icon-tickets" |
| | | class="el-icon-printer" |
| | | style="cursor: pointer;color: #42b983;margin-right: 15px" |
| | | @click="supplementSmallClick(row)" |
| | | /> |
| | |
| | | {{ formApprove.partspec }} |
| | | </el-form-item> |
| | | <el-form-item label="产品名称:" class="formContent" style="width: 100%;"> |
| | | <!-- {{ formApprove.partname }}--> |
| | | 王力-5寸H型单曲合页(加彩款)左上页金工件 |
| | | {{ formApprove.partname }} |
| | | <!-- 王力-5寸H型单曲合页(加彩款)左上页金工件--> |
| | | </el-form-item> |
| | | |
| | | <el-form-item label="工单数量:" class="formContent"> |
| | |
| | | this.$nextTick(() => { |
| | | console.log(this.qrForm.qrvalue, 3333) |
| | | this.bindQRCode2(this.qrForm.qrvalue) |
| | | const div = document.getElementById('qrCode2') |
| | | // 这么多代码只需要这一句实现我们所需要的功能,定位div滚动条位置在底部,scrollHeight计算出div的高度,再scrollTop 设置滚动条的高度为多少 |
| | | div.scrollTop = div.scrollHeight // 滚动条位于最底部 |
| | | // div.scrollTop = 0 // 滚动条位于最顶部 |
| | | }) |
| | | } |
| | | }) |
| | |
| | | partspec: '', // 产品规格 |
| | | reportuser: '', // 报工人员 |
| | | reportdate: '', // 报工时间 |
| | | prop: 'lm_date', // 排序字段 |
| | | prop: 'report_date', // 排序字段 |
| | | order: 'desc', // 排序字段 |
| | | page: 1, // 第几页 |
| | | rows: 20 // 每页多少条 |
| | |
| | | partspec: this.form.partspec, // 产品规格 |
| | | reportuser: this.form.reportuser, // 报工人员 |
| | | reportdate: tempDate, // 报工时间 |
| | | prop: 'report_date', // 排序字段 |
| | | order: 'desc', // 排序字段 |
| | | page: 1, // 第几页 |
| | | rows: 20 // 每页多少条 |
| | | prop: this.form.prop, // 排序字段 |
| | | order: this.form.order, // 排序字段 |
| | | page: this.form.page, // 第几页 |
| | | rows: this.form.rows // 每页多少条 |
| | | } |
| | | |
| | | const res = await MesOrderStepVerifySearch(data) |
| | |
| | | }, |
| | | proxy: { |
| | | [process.env.VUE_APP_BASE_API]: { |
| | | target: 'http://121.196.36.24:8005', // 请求的第三⽅接⼝地址 本地服务器(灵翔) |
| | | // target: 'http://192.168.0.230:8001', // 请求的第三⽅接⼝地址 客户服务器(灵翔) |
| | | // target: 'http://121.196.36.24:8005', // 请求的第三⽅接⼝地址 本地服务器(灵翔) |
| | | target: 'http://192.168.0.230:8001', // 请求的第三⽅接⼝地址 客户服务器(灵翔) |
| | | changeOrigin: true, // 请求跨域时,需 配置此项 |
| | | pathRewrite: { // 路径重写,替换target中的请求地址 |
| | | ['^' + process.env.VUE_APP_BASE_API]: '/api/' |