|
@@ -535,7 +535,7 @@ const data = reactive({
|
|
|
photographNum: 0, //照相数量
|
|
|
photographyMinNum: 0, //摄影数量
|
|
|
photographySecNum: 0, //摄影数量
|
|
|
- recorderInfo: recorderInfoType,
|
|
|
+ recorderInfo: JSON.parse(JSON.stringify(recorderInfoType)),
|
|
|
signatureInfo: [], //现场勘验人员
|
|
|
witnessInfo: [],
|
|
|
remark: "",
|
|
@@ -591,9 +591,9 @@ onMounted(() => {
|
|
|
});
|
|
|
|
|
|
const addRecorderInfo = () => {
|
|
|
- console.log("recorderInfoDialogSelect", recorderInfoType);
|
|
|
+ console.log("recorderInfoDialogSelect", recorderInfoType, recorderInfoDialogSelect.value);
|
|
|
recorderInfoDialogShow.value = false;
|
|
|
- if (recorderInfoDialogSelect.value) {
|
|
|
+ if (recorderInfoDialogSelect.value || recorderInfoDialogSelect.value === 0) {
|
|
|
const newCrew = recorderInfoType.find(
|
|
|
(i) => i.type === recorderInfoDialogSelect.value
|
|
|
);
|