Compare commits

..

No commits in common. "bfa7fb4820ac92d71e6609d13256eb5183e6699f" and "235184e8c79d1e25b2a7de1765b5e23b0398e6d8" have entirely different histories.

2 changed files with 4 additions and 6 deletions

View File

@ -36,8 +36,6 @@ export default {
taskId: '', taskId: '',
EW_RU_JOB_ID: '', EW_RU_JOB_ID: '',
vernier: '', vernier: '',
CORP_ID: '',
CORP_NAME: '',
formItems: [ formItems: [
{name: '经度', key_name: 'WORK_LONGITUDE', type: 0}, {name: '经度', key_name: 'WORK_LONGITUDE', type: 0},
{name: '纬度', key_name: 'WORK_LATITUDE', type: 0} {name: '纬度', key_name: 'WORK_LATITUDE', type: 0}
@ -57,8 +55,8 @@ export default {
this.EW_RU_JOB_ID = options.EW_RU_JOB_ID this.EW_RU_JOB_ID = options.EW_RU_JOB_ID
this.vernier = options.vernier this.vernier = options.vernier
this.type = options.type this.type = options.type
this.CORP_ID = options.CORP_ID this.form.CORP_ID = options.CORPINFO_ID
this.CORP_NAME = options.CORP_NAME this.form.CORP_NAME = options.CORP_NAME
}, },
methods: { methods: {
fnLocation() { fnLocation() {
@ -80,7 +78,7 @@ export default {
form: this.form, form: this.form,
formItems: this.formItems, formItems: this.formItems,
TYPE: this.type, TYPE: this.type,
CORP_ID: this.CORP_ID, CORP_ID: this.form.CORP_ID,
EW_RU_TASK_ID: this.taskId, EW_RU_TASK_ID: this.taskId,
EW_RU_JOB_ID: this.EW_RU_JOB_ID, EW_RU_JOB_ID: this.EW_RU_JOB_ID,
vernier: this.vernier vernier: this.vernier

View File

@ -239,7 +239,7 @@ export const resolveNextOperation = async ({EW_RU_TASK_ID = '', CORP_ID = '', TY
if (info.otherFlag !== null && info.otherFlag.redirectFlag === '1') { if (info.otherFlag !== null && info.otherFlag.redirectFlag === '1') {
uni.$u.route({ uni.$u.route({
url: info.otherFlag.url, url: info.otherFlag.url,
params: {taskId: EW_RU_TASK_ID, EW_RU_JOB_ID, TYPE,CORP_ID,vernier: info.vernier} params: {taskId: EW_RU_TASK_ID, EW_RU_JOB_ID, TYPE,vernier: info.vernier}
}) })
return return
} }