|
@@ -18,14 +18,14 @@
|
|
|
</a-form-item>
|
|
|
</a-form>
|
|
|
<div class="edit-btn">
|
|
|
- <a-button type="primary" @click="confirmEdit">提交</a-button>
|
|
|
<a-button @click="cancelEdit">取消</a-button>
|
|
|
+ <a-button type="primary" @click="confirmEdit">提交</a-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
- import { ref, reactive, onMounted, watch } from 'vue';
|
|
|
+ import { ref, onMounted, watch } from 'vue';
|
|
|
import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectTag.vue';
|
|
|
import { queryAllDisTeam } from '../gasInspectNonfc.api';
|
|
|
|
|
@@ -38,7 +38,7 @@
|
|
|
},
|
|
|
});
|
|
|
|
|
|
- let formStateEdit = reactive<any>({
|
|
|
+ let formStateEdit = ref<any>({
|
|
|
id: '',
|
|
|
strinstallpos: '',
|
|
|
isSensor: false,
|
|
@@ -63,11 +63,14 @@
|
|
|
}
|
|
|
//编辑提交
|
|
|
let confirmEdit = () => {
|
|
|
- $emit('confirmEdit', formStateEdit);
|
|
|
+ $emit('confirmEdit', {
|
|
|
+ ...formStateEdit.value,
|
|
|
+ isSensor: formStateEdit.value.isSensor ? '1' : '0',
|
|
|
+ });
|
|
|
};
|
|
|
//编辑取消
|
|
|
let cancelEdit = () => {
|
|
|
- formStateEdit = {
|
|
|
+ formStateEdit.value = {
|
|
|
id: '',
|
|
|
strinstallpos: '',
|
|
|
isSensor: false,
|
|
@@ -79,7 +82,10 @@
|
|
|
watch(
|
|
|
() => props.inspectEditData,
|
|
|
(newV) => {
|
|
|
- formStateEdit = Object.assign({}, newV);
|
|
|
+ formStateEdit.value = {
|
|
|
+ ...newV,
|
|
|
+ isSensor: newV.isSensor == '1',
|
|
|
+ };
|
|
|
},
|
|
|
{ immediate: true }
|
|
|
);
|