ruanqi 2 years ago
parent
commit
af0e14da85
  1. 3
      src/views/modules/board/SORoutingBoard.vue
  2. 4
      src/views/modules/schedule/generateReport.vue
  3. 4
      static/config/init.js

3
src/views/modules/board/SORoutingBoard.vue

@ -132,7 +132,8 @@
return '' return ''
}, },
search () { search () {
let inData= {number:this.pageIndex};
let inData= {number:this.pageIndex,
text1:this.lineNo};
SORoutingBoard(inData).then(({data}) => { SORoutingBoard(inData).then(({data}) => {
this.tableData = data.rows; this.tableData = data.rows;
this.totalPage= data.maxPage; this.totalPage= data.maxPage;

4
src/views/modules/schedule/generateReport.vue

@ -413,7 +413,7 @@
operatorIdName2: '', operatorIdName2: '',
scrapReason: '', scrapReason: '',
preparationTime: 0, preparationTime: 0,
manufacturingTime: 0,
manufacturingTime: 1,
cleaningTime: 0, cleaningTime: 0,
shutdownReason: '', shutdownReason: '',
remark: '', remark: '',
@ -691,7 +691,7 @@
this.saveHeaderData.operatorName=currentData.operatorName; this.saveHeaderData.operatorName=currentData.operatorName;
this.saveHeaderData.qtyRequire=currentData.qtyRequired; this.saveHeaderData.qtyRequire=currentData.qtyRequired;
this.saveHeaderData.userId=this.$store.state.user.name; this.saveHeaderData.userId=this.$store.state.user.name;
this.saveHeaderData.manufacturingTime='';
this.saveHeaderData.manufacturingTime=1;
this.qty1=''; this.qty1='';
this.qty2 =''; this.qty2 ='';
this.saveHeaderData.planStartTime = this.dayjs(new Date()).format('YYYY-MM-DD 00:00:00') this.saveHeaderData.planStartTime = this.dayjs(new Date()).format('YYYY-MM-DD 00:00:00')

4
static/config/init.js

@ -10,7 +10,7 @@
js: [ js: [
// 插件, 放置业务之前加载, 以免业务需求依赖插件时, 还未加载出错 // 插件, 放置业务之前加载, 以免业务需求依赖插件时, 还未加载出错
// 插件 - echarts // 插件 - echarts
window.SITE_CONFIG.cdnUrl + '/static/plugins/echarts-3.8.5/echarts.common.min.js',
window.SITE_CONFIG.cdnUrl + '/static/plugins/echarts/echarts.min.js',
// 插件 - ueditor // 插件 - ueditor
window.SITE_CONFIG.cdnUrl + '/static/plugins/ueditor-1.4.3.3/ueditor.config.js', window.SITE_CONFIG.cdnUrl + '/static/plugins/ueditor-1.4.3.3/ueditor.config.js',
window.SITE_CONFIG.cdnUrl + '/static/plugins/ueditor-1.4.3.3/ueditor.all.min.js', window.SITE_CONFIG.cdnUrl + '/static/plugins/ueditor-1.4.3.3/ueditor.all.min.js',
@ -73,4 +73,4 @@
createScripts(); createScripts();
} }
}; };
})();
})();
Loading…
Cancel
Save