Compare commits

..

No commits in common. "0f0e520b494e16da7d2e30e1c9f1fd084a054ada" and "3b49c37b07fe522ff8fede0b4588599091881641" have entirely different histories.

3 changed files with 3 additions and 5 deletions

View File

@ -325,9 +325,8 @@ onMounted(() => {
hide: false hide: false
} }
] ]
ERPFactoryQuery()
handleQuery() handleQuery()
ERPFactoryQuery()
getUnitInfo() getUnitInfo()
updateTableHeight(); updateTableHeight();
window.addEventListener('resize', handleResize); window.addEventListener('resize', handleResize);
@ -419,7 +418,7 @@ function getpows() {
} }
addNChargeNOrder(state.queryParam) addNChargeNOrder(state.queryParam)
.then((res: any) => { .then((res: any) => {
if (res.code == 200) { if (res.code == 0) {
state.undistributed_list = res.resultObj state.undistributed_list = res.resultObj
ElMessageBox.alert("新建成功", { ElMessageBox.alert("新建成功", {
confirmButtonText: 'OK' confirmButtonText: 'OK'

View File

@ -257,7 +257,6 @@ const { tableContainer, tableHeight, updateTableHeight, handleResize } = bTableH
FROMDATE: '', FROMDATE: '',
TODATE: '', TODATE: '',
CAREER_ASSISTANCE :'', CAREER_ASSISTANCE :'',
DESC_CN:''
}, },
pageNum: 1, pageNum: 1,
pageSize: 10 pageSize: 10

View File

@ -65,7 +65,7 @@ function creatCode() {
hints.set(EncodeHintType.MARGIN, 1); hints.set(EncodeHintType.MARGIN, 1);
try { try {
// 'http://192.168.1.73:8086/PDA.apk' // 'http://192.168.1.73:8086/PDA.apk'
const url = "http://172.22.10.225/"; const url = "http://172.22.10.217:8086/";
const result = writer.encode(url + 'PDA.apk', BarcodeFormat.QR_CODE, 200, 200, hints); const result = writer.encode(url + 'PDA.apk', BarcodeFormat.QR_CODE, 200, 200, hints);
const canvas = document.createElement('canvas'); const canvas = document.createElement('canvas');