parent
edddf9fe6c
commit
cbe2ac7d3a
|
@ -51,7 +51,7 @@
|
||||||
<u-form-item label="作业内容" prop="JOB_CONTENT" borderBottom required>
|
<u-form-item label="作业内容" prop="JOB_CONTENT" borderBottom required>
|
||||||
<u-input v-model="form.JOB_CONTENT" border="none" placeholder="请输入作业内容" />
|
<u-input v-model="form.JOB_CONTENT" border="none" placeholder="请输入作业内容" />
|
||||||
</u-form-item>
|
</u-form-item>
|
||||||
<u-form-item label="动火操作人" prop="USER_NAME" borderBottom required labelPosition="top" labelWidth="auto">
|
<u-form-item v-if="false" label="动火操作人" prop="USER_NAME" borderBottom required labelPosition="top" labelWidth="auto">
|
||||||
<u-button type="primary" size="mini" text="添加"
|
<u-button type="primary" size="mini" text="添加"
|
||||||
:customStyle="{ position: 'absolute', top: '-46upx', right: '20upx', width: '90upx' }"
|
:customStyle="{ position: 'absolute', top: '-46upx', right: '20upx', width: '90upx' }"
|
||||||
@click="otherUserNameSelectShow = true" />
|
@click="otherUserNameSelectShow = true" />
|
||||||
|
@ -266,7 +266,7 @@ export default {
|
||||||
eventChannel.emit("data", {
|
eventChannel.emit("data", {
|
||||||
form: this.form,
|
form: this.form,
|
||||||
formItems: this.formItems,
|
formItems: this.formItems,
|
||||||
EW_RU_TASK_ID: this.taskId
|
taskId: this.taskId
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
|
@ -64,21 +64,20 @@ export default {
|
||||||
mounted() {
|
mounted() {
|
||||||
const eventChannel = this.getOpenerEventChannel();
|
const eventChannel = this.getOpenerEventChannel();
|
||||||
eventChannel.on('data', (data) => {
|
eventChannel.on('data', (data) => {
|
||||||
console.log(data)
|
|
||||||
this.form = data.form;
|
this.form = data.form;
|
||||||
this.formItems = data.formItems;
|
this.formItems = data.formItems;
|
||||||
this.taskId = data.taskId;
|
this.taskId = data.taskId;
|
||||||
this.hotWorkOperatorList = uni.$u.deepClone(data.form.hotWorkOperatorList);
|
this.hotWorkOperatorList = JSON.parse(JSON.stringify(data.form.hotWorkOperatorList));
|
||||||
if (this.hotWorkOperatorList.length === 0) this.fnAddHotWorkOperatorList();
|
if (this.hotWorkOperatorList.length === 0) {
|
||||||
else {
|
this.fnAddHotWorkOperatorList();
|
||||||
|
} else {
|
||||||
for (let i = 0; i < this.hotWorkOperatorList.length; i++) {
|
for (let i = 0; i < this.hotWorkOperatorList.length; i++) {
|
||||||
for (let i = 0; i < this.hotWorkOperatorList.length; i++) {
|
for (let i = 0; i < this.hotWorkOperatorList.length; i++) {
|
||||||
fnGetUserList(this.hotWorkOperatorList.value[i], i);
|
this.fnGetUserList(this.hotWorkOperatorList[i], i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
fnAddHotWorkOperatorList() {
|
fnAddHotWorkOperatorList() {
|
||||||
|
@ -161,7 +160,6 @@ export default {
|
||||||
this.picker.show = false;
|
this.picker.show = false;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -277,8 +277,9 @@ export const getData = async (taskId) => {
|
||||||
for (let i = 0; i < item.list.length; i++) {
|
for (let i = 0; i < item.list.length; i++) {
|
||||||
form[item.ITEM_NAME].push({});
|
form[item.ITEM_NAME].push({});
|
||||||
for (let j = 0; j < item.list[i].list.length; j++) {
|
for (let j = 0; j < item.list[i].list.length; j++) {
|
||||||
form[item.ITEM_NAME][i][item.list[i].list[j].ITEM_NAME] =
|
form[item.ITEM_NAME][i][item.list[i].list[j].ITEM_NAME] = item.list[i].list[j].ITEM_VALUE;
|
||||||
item.list[i].list[j].ITEM_VALUE;
|
form[item.ITEM_NAME][i][item.list[i].list[j].FK_NAME] = item.list[i].list[j].FK_VALUE;
|
||||||
|
form[item.ITEM_NAME][i]['TYPE'] = item.list[i].list[j].TYPE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue