|
|
@ -95,13 +95,18 @@ |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :lg="8" :md="12" :span="12" :xl="6" :xs="24"> |
|
|
|
<el-form-item label="与主站后台联调情况" prop="joint"> |
|
|
|
<el-input v-model="data.joint"></el-input> |
|
|
|
<el-form-item label="协议版本" prop="protocolVersion"> |
|
|
|
<el-input v-model="data.protocolVersion"></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
|
|
|
|
<el-row :gutter="20"> |
|
|
|
<el-col :lg="8" :md="12" :span="12" :xl="6" :xs="24"> |
|
|
|
<el-form-item label="与主站后台联调情况" prop="joint"> |
|
|
|
<el-input v-model="data.joint" type="textarea"></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :lg="8" :md="12" :span="12" :xl="6" :xs="24"> |
|
|
|
<el-form-item label="维修记录" prop="operationRecord"> |
|
|
|
<el-input v-model="data.operationRecord" type="textarea"></el-input> |
|
|
@ -124,8 +129,8 @@ |
|
|
|
</template> |
|
|
|
|
|
|
|
<script setup> |
|
|
|
import { reactive, ref, defineEmits } from 'vue'; |
|
|
|
import { ElMessageBox, ElMessage } from 'element-plus'; |
|
|
|
import { defineEmits, reactive, ref } from 'vue'; |
|
|
|
import { ElMessage, ElMessageBox } from 'element-plus'; |
|
|
|
import { useStore } from 'vuex'; |
|
|
|
import { createDevice } from 'apis'; |
|
|
|
|
|
|
@ -147,6 +152,7 @@ const data = reactive({ |
|
|
|
probNo: '', // 探头编号 |
|
|
|
simple: '', // 试样 |
|
|
|
sim1: '', // sim卡1 |
|
|
|
protocolVersion: '', // 协议版本 |
|
|
|
joint: '', // 主站后台联调情况 |
|
|
|
operationRecord: '', // 维修记录 |
|
|
|
remark: '', // 备注 |
|
|
|