2025-01-21 18:28:13 +08:00
|
|
|
|
<script lang="ts">
|
|
|
|
|
export default {
|
2025-03-19 09:17:05 +08:00
|
|
|
|
name: "testtask",//试验数据管理
|
2025-01-21 18:28:13 +08:00
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { onMounted, ref } from "vue";
|
|
|
|
|
import { ElMessage, ElMessageBox } from 'element-plus'
|
|
|
|
|
import Page from '@/components/Pagination/page.vue'
|
|
|
|
|
import { tstaskPage, addtsTask, updatetsTask, deleteTsTaskById, deleteTsTaskByIds } from "@/api/testtask";
|
2025-05-23 13:39:29 +08:00
|
|
|
|
import { getDict } from '@/api/dict'
|
2025-01-21 18:28:13 +08:00
|
|
|
|
//定义表格数据
|
|
|
|
|
const tableData: any = ref([]);
|
|
|
|
|
// 查询数据
|
|
|
|
|
const dataduan = ref([])
|
|
|
|
|
const queryParams: any = ref({
|
|
|
|
|
current: 1,
|
|
|
|
|
size: 20,
|
|
|
|
|
taskName: '',
|
|
|
|
|
taskPlace: '',
|
|
|
|
|
taskPerson: '',
|
|
|
|
|
carrierType: '',
|
|
|
|
|
deviceCode: '',
|
|
|
|
|
startDate: '',
|
|
|
|
|
endDate: ''
|
|
|
|
|
});
|
|
|
|
|
const total = ref(0);
|
|
|
|
|
//转化时间格式
|
|
|
|
|
function zhuandata(dateString: any) {
|
|
|
|
|
// 创建Date对象
|
|
|
|
|
const date = new Date(dateString);
|
|
|
|
|
// 获取年、月、日
|
|
|
|
|
const year = date.getFullYear();
|
|
|
|
|
const month = String(date.getMonth() + 1).padStart(2, '0'); // 月份从0开始,需要加1
|
|
|
|
|
const day = String(date.getDate()).padStart(2, '0');
|
|
|
|
|
// 格式化为YYYY-MM-DD
|
|
|
|
|
return `${year}-${month}-${day}`;
|
|
|
|
|
}
|
|
|
|
|
// 表格加载
|
|
|
|
|
const loading = ref(false)
|
|
|
|
|
//获取表格数据
|
|
|
|
|
function getdata() {
|
|
|
|
|
loading.value = true
|
2025-05-23 13:39:29 +08:00
|
|
|
|
if (dataduan.value && dataduan.value.length > 0) {
|
2025-01-21 18:28:13 +08:00
|
|
|
|
const dataArr = []
|
|
|
|
|
dataduan.value.forEach((item: any) => {
|
|
|
|
|
dataArr.push(zhuandata(item))
|
|
|
|
|
})
|
|
|
|
|
queryParams.value.startDate = dataArr[0]
|
|
|
|
|
queryParams.value.endDate = dataArr[1]
|
2025-05-23 13:39:29 +08:00
|
|
|
|
} else {
|
2025-01-21 18:28:13 +08:00
|
|
|
|
queryParams.value.startDate = ''
|
|
|
|
|
queryParams.value.endDate = ''
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tstaskPage(queryParams.value).then((res: any) => {
|
|
|
|
|
loading.value = false
|
|
|
|
|
tableData.value = res.data.records
|
|
|
|
|
queryParams.value.current = res.data.current
|
|
|
|
|
queryParams.value.size = res.data.size
|
|
|
|
|
total.value = res.data.total
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
//弹框命名
|
|
|
|
|
const title = ref("")
|
|
|
|
|
//控制弹框显隐
|
|
|
|
|
const frame = ref(false)
|
|
|
|
|
//新增项目弹框
|
|
|
|
|
function addproject() {
|
|
|
|
|
frame.value = true
|
2025-03-19 09:17:05 +08:00
|
|
|
|
title.value = "新增试验任务"
|
2025-01-21 18:28:13 +08:00
|
|
|
|
projectForme.value = {
|
|
|
|
|
taskName: "",//任务名称
|
|
|
|
|
taskDate: "",//任务开始时间
|
|
|
|
|
taskPlace: "",//任务地点
|
|
|
|
|
taskPerson: "",//任务人员
|
|
|
|
|
carrierType: "",// 载体类型
|
|
|
|
|
carrierName: "",//载体名称
|
|
|
|
|
deviceName: "",//设备名称
|
|
|
|
|
taskCode: "",//任务编号
|
2025-05-23 13:39:29 +08:00
|
|
|
|
deviceCode: "",//设备编号
|
|
|
|
|
taskType: "",
|
2025-05-24 11:11:36 +08:00
|
|
|
|
testDescribe: "",// 试验描述
|
2025-05-23 13:39:29 +08:00
|
|
|
|
sensorDescribe: "",// 传感器描述
|
2025-01-21 18:28:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//修改项目弹框
|
|
|
|
|
function editproject(row: any) {
|
|
|
|
|
projectForme.value = JSON.parse(JSON.stringify(row))
|
2025-05-23 13:39:29 +08:00
|
|
|
|
projectForme.value.taskDate = [projectForme.value.taskStartdate, projectForme.value.taskEnddate]
|
2025-01-21 18:28:13 +08:00
|
|
|
|
title.value = "修改试验任务"
|
|
|
|
|
frame.value = true
|
|
|
|
|
}
|
|
|
|
|
//删除项目弹框
|
|
|
|
|
function delproject(row: any) {
|
|
|
|
|
ElMessageBox.confirm(
|
2025-04-24 09:27:30 +08:00
|
|
|
|
'您确定要删除该项目及其中的节点和文件吗?',
|
2025-01-21 18:28:13 +08:00
|
|
|
|
'警告',
|
|
|
|
|
{
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning',
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
.then(() => {
|
2025-04-24 09:27:30 +08:00
|
|
|
|
loading.value = true
|
2025-01-21 18:28:13 +08:00
|
|
|
|
deleteTsTaskById({ id: row.id }).then((res: any) => {
|
|
|
|
|
if (res.code == 0) {
|
|
|
|
|
getdata()
|
|
|
|
|
ElMessage({
|
|
|
|
|
type: 'success',
|
|
|
|
|
message: '删除成功',
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
//表格多选
|
|
|
|
|
const tableIdarr = ref([])
|
|
|
|
|
function handleSelectionChange(val: any) {
|
|
|
|
|
tableIdarr.value = val
|
|
|
|
|
}
|
|
|
|
|
//多选删除
|
|
|
|
|
function delprojectArr() {
|
|
|
|
|
const ids = []
|
|
|
|
|
tableIdarr.value.forEach((item: any) => {
|
|
|
|
|
ids.push(item.id)
|
|
|
|
|
})
|
|
|
|
|
ElMessageBox.confirm(
|
2025-05-23 13:39:29 +08:00
|
|
|
|
'您确定要删除这些项目及其中的节点和文件吗?',
|
2025-01-21 18:28:13 +08:00
|
|
|
|
'警告',
|
|
|
|
|
{
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning',
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
.then(() => {
|
2025-04-24 09:27:30 +08:00
|
|
|
|
loading.value = true
|
2025-01-21 18:28:13 +08:00
|
|
|
|
deleteTsTaskByIds({ ids: ids.join(',') }).then((res: any) => {
|
|
|
|
|
if (res.code == 0) {
|
|
|
|
|
ElMessage({
|
|
|
|
|
type: 'success',
|
|
|
|
|
message: '删除成功',
|
|
|
|
|
})
|
|
|
|
|
getdata()
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
//弹框关闭
|
|
|
|
|
function handleClose(formEl: any) {
|
|
|
|
|
// if (!formEl) return
|
|
|
|
|
// formEl.resetFields()
|
|
|
|
|
frame.value = false
|
|
|
|
|
}
|
|
|
|
|
//表单数据
|
|
|
|
|
const ruleFormRef = ref()
|
|
|
|
|
const projectForme: any = ref({
|
|
|
|
|
taskName: "",//任务名称
|
|
|
|
|
taskDate: "",//任务开始时间
|
|
|
|
|
taskPlace: "",//任务地点
|
|
|
|
|
taskPerson: "",//任务人员
|
|
|
|
|
carrierType: "",// 载体类型
|
|
|
|
|
carrierName: "",//载体名称
|
|
|
|
|
deviceName: "",//设备名称
|
|
|
|
|
taskCode: "",//任务编号
|
|
|
|
|
deviceCode: ""//设备编号
|
2025-05-23 13:39:29 +08:00
|
|
|
|
, taskType: "",
|
2025-05-24 11:11:36 +08:00
|
|
|
|
testDescribe: "",// 试验描述
|
2025-05-23 13:39:29 +08:00
|
|
|
|
sensorDescribe: "",// 传感器描述
|
2025-01-21 18:28:13 +08:00
|
|
|
|
})
|
|
|
|
|
//表单确定
|
|
|
|
|
async function submitForm(formEl: any) {
|
|
|
|
|
if (!formEl) return
|
|
|
|
|
await formEl.validate((valid: any, fields: any) => {
|
|
|
|
|
if (valid) {
|
2025-05-23 13:39:29 +08:00
|
|
|
|
if (projectForme.value.taskDate.length > 0) {
|
|
|
|
|
projectForme.value.taskStartdate = projectForme.value.taskDate[0]
|
|
|
|
|
projectForme.value.taskEnddate = projectForme.value.taskDate[1]
|
|
|
|
|
} else {
|
|
|
|
|
projectForme.value.taskStartdate = ''
|
|
|
|
|
projectForme.value.taskEnddate = ''
|
|
|
|
|
}
|
2025-01-21 18:28:13 +08:00
|
|
|
|
if (projectForme.value.id) {
|
|
|
|
|
updatetsTask(projectForme.value).then((res: any) => {
|
|
|
|
|
if (res.code == 0) {
|
|
|
|
|
getdata()
|
|
|
|
|
ElMessage.success("修改成功")
|
|
|
|
|
frame.value = false
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
addtsTask(projectForme.value).then((res: any) => {
|
|
|
|
|
if (res.code == 0) {
|
|
|
|
|
getdata()
|
|
|
|
|
ElMessage.success("添加成功")
|
|
|
|
|
frame.value = false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
//用户弹窗规则定义
|
|
|
|
|
const moderules = ref({
|
2025-05-23 13:39:29 +08:00
|
|
|
|
taskType: [{ required: true, message: "请选择任务类型", trigger: "change" }],
|
|
|
|
|
taskDate: [{ required: true, message: "请选择任务时间", trigger: "change" }],
|
|
|
|
|
taskPlace: [{ required: true, message: "请输入任务地点", trigger: "blur" }],
|
2025-01-21 18:28:13 +08:00
|
|
|
|
});
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
getdata()
|
2025-05-23 13:39:29 +08:00
|
|
|
|
getDictOne()
|
2025-01-21 18:28:13 +08:00
|
|
|
|
});
|
2025-05-23 13:39:29 +08:00
|
|
|
|
//获取字典项目类型
|
|
|
|
|
const dictType = ref([])
|
|
|
|
|
function getDictOne() {
|
|
|
|
|
getDict({ dictcode: 'taskType' }).then((res: any) => {
|
|
|
|
|
dictType.value = res.data
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
//项目类型转换
|
|
|
|
|
function typeName(arr: any, itemCode: any) {
|
|
|
|
|
let nameone: any
|
|
|
|
|
arr.forEach((item: any) => {
|
|
|
|
|
if (item.itemcode == itemCode) {
|
|
|
|
|
nameone = item.dictname
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
return nameone
|
|
|
|
|
}
|
2025-05-24 11:11:36 +08:00
|
|
|
|
const logqing= ref(false)
|
|
|
|
|
const logTxt = ref('')
|
|
|
|
|
function Loglist(row:any,title1:any){
|
|
|
|
|
title.value = title1
|
|
|
|
|
logqing.value = true
|
|
|
|
|
logTxt.value = row
|
|
|
|
|
}
|
|
|
|
|
function handleClose1(){
|
|
|
|
|
logqing.value = false
|
|
|
|
|
}
|
2025-01-21 18:28:13 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<div>
|
|
|
|
|
<div class="record-box">
|
|
|
|
|
<div class="sou_title">
|
|
|
|
|
<div class="sou_title_left">
|
2025-05-24 11:11:36 +08:00
|
|
|
|
<el-input style="margin-right: 10px ;width:80px;margin-bottom: 10px;" v-model="queryParams.taskCode"
|
|
|
|
|
clearable @change="getdata()" placeholder="任务编号"></el-input>
|
|
|
|
|
<el-input style="margin-right: 10px ;width:180px;margin-bottom: 10px;"
|
|
|
|
|
v-model="queryParams.taskName" clearable @change="getdata()" placeholder="任务名称"></el-input>
|
|
|
|
|
<el-select style="margin-right: 10px ;width:180px;margin-bottom: 10px;"
|
|
|
|
|
v-model="queryParams.taskType" clearable placeholder="任务类型" @change="getdata()">
|
2025-05-23 13:39:29 +08:00
|
|
|
|
<el-option v-for="item in dictType" :key="item.itemcode" :label="item.dictname"
|
|
|
|
|
:value="item.itemcode" />
|
|
|
|
|
</el-select>
|
2025-05-24 11:11:36 +08:00
|
|
|
|
<el-input style="margin-right: 10px ;width:180px;margin-bottom: 10px;"
|
|
|
|
|
v-model="queryParams.taskPlace" clearable @change="getdata()" placeholder="任务地点"></el-input>
|
|
|
|
|
<el-input style="margin-right: 10px ;width:180px;margin-bottom: 10px;"
|
|
|
|
|
v-model="queryParams.taskPerson" clearable @change="getdata()" placeholder="任务人员"></el-input>
|
2025-01-21 18:28:13 +08:00
|
|
|
|
<el-date-picker v-model="dataduan" type="daterange" range-separator="至" @change="getdata()"
|
2025-05-24 11:11:36 +08:00
|
|
|
|
style="margin-right: 10px ;margin-bottom: 10px;" start-placeholder="开始时间"
|
|
|
|
|
end-placeholder="结束时间" />
|
2025-05-23 13:39:29 +08:00
|
|
|
|
<el-input style="margin-right: 10px ;width:180px;" v-model="queryParams.carrierName" clearable
|
|
|
|
|
@change="getdata()" placeholder="载机名称"></el-input>
|
|
|
|
|
<el-input style="margin-right: 10px ;width:180px;" v-model="queryParams.deviceCode" clearable
|
|
|
|
|
@change="getdata()" placeholder="设备代号_编号"></el-input>
|
|
|
|
|
<el-input style="margin-right: 10px ;width:380px;" v-model="queryParams.testDescribe" clearable
|
|
|
|
|
@change="getdata()" placeholder="试验描述"></el-input>
|
|
|
|
|
<el-input style="margin-right: 10px ;width:380px;" v-model="queryParams.sensorDescribe" clearable
|
|
|
|
|
@change="getdata()" placeholder="传感器描述"></el-input>
|
2025-05-24 11:11:36 +08:00
|
|
|
|
|
2025-01-21 18:28:13 +08:00
|
|
|
|
<el-button type="primary" @click="getdata()">搜索</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<el-button type="primary" @click="addproject()">新增</el-button>
|
|
|
|
|
<el-button type="primary" @click="delprojectArr()" :disabled="tableIdarr.length == 0">删除</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="tableData" @selection-change="handleSelectionChange"
|
|
|
|
|
:header-cell-style="{ background: 'rgb(250 250 250)', height: '50px' }"
|
2025-05-23 13:39:29 +08:00
|
|
|
|
style="width: 100%; height: calc(64vh);margin-bottom: 20px;" border>
|
2025-01-21 18:28:13 +08:00
|
|
|
|
<el-table-column type="selection" width="40" />
|
|
|
|
|
<el-table-column prop="taskCode" label="任务编号" width="90"></el-table-column>
|
2025-05-23 13:39:29 +08:00
|
|
|
|
<el-table-column prop="taskName" label="任务名称" width="600"></el-table-column>
|
|
|
|
|
<el-table-column prop="taskType" label="任务类型" width="120">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<span>{{ typeName(dictType, scope.row.taskType) }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="taskDate" label="任务时间" width="320" align="center">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<span>{{ scope.row.taskStartdate && scope.row.taskEnddate ? scope.row.taskStartdate + '-' +
|
|
|
|
|
scope.row.taskEnddate : '' }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="taskPlace" label="任务地点" width="180"></el-table-column>
|
2025-05-24 11:11:36 +08:00
|
|
|
|
<el-table-column prop="taskPerson" label="任务人员" width="280"></el-table-column>
|
2025-05-23 13:39:29 +08:00
|
|
|
|
<el-table-column prop="carrierName" label="载机名称" width="180"></el-table-column>
|
|
|
|
|
<el-table-column prop="deviceCode" label="设备代号_编号" width="180"></el-table-column>
|
2025-05-24 11:11:36 +08:00
|
|
|
|
<el-table-column prop="testDescribe" label="试验描述" width="320">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<!-- <span>{{ scope.row.testDescribe }}</span> -->
|
|
|
|
|
<div class="ellipsis">
|
|
|
|
|
<span class="single-line-ellipsis">{{ scope.row.testDescribe }}</span>
|
|
|
|
|
<img src="@/assets/MenuIcon/xqing.png" alt="" title="详情" @click="Loglist(scope.row.testDescribe,'试验描述详情')" style="cursor: pointer;" >
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="sensorDescribe" label="传感器描述" width="320">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<!-- <span>{{ scope.row.testDescribe }}</span> -->
|
|
|
|
|
<div class="ellipsis">
|
|
|
|
|
<span class="single-line-ellipsis">{{ scope.row.sensorDescribe }}</span>
|
|
|
|
|
<img src="@/assets/MenuIcon/xqing.png" alt="" title="详情" @click="Loglist(scope.row.sensorDescribe,'传感器描述详情')" style="cursor: pointer;" >
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
2025-01-21 18:28:13 +08:00
|
|
|
|
<el-table-column fixed="right" label="操作" width="80" align="center">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<span
|
|
|
|
|
style="display: flex;display: -webkit-flex;justify-content: space-around;-webkit-justify-content: space-around; ">
|
|
|
|
|
<img src="@/assets/MenuIcon/lbcz_xg.png" alt="" title="修改" @click="editproject(scope.row)"
|
|
|
|
|
style="cursor: pointer;">
|
|
|
|
|
<img src="@/assets/MenuIcon/lbcz_sc.png" alt="" title="删除" @click="delproject(scope.row)"
|
|
|
|
|
style="cursor: pointer;">
|
|
|
|
|
</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
<Page :total="total" v-model:size="queryParams.size" v-model:current="queryParams.current"
|
|
|
|
|
@pagination="getdata()">
|
|
|
|
|
</Page>
|
|
|
|
|
</div>
|
2025-05-24 11:11:36 +08:00
|
|
|
|
<el-dialog :title="title" v-model="frame" width="60%" :before-close="handleClose" top="30px" draggable
|
|
|
|
|
:close-on-click-modal="false" destroy-on-close>
|
2025-05-23 13:39:29 +08:00
|
|
|
|
<el-form ref="ruleFormRef" style="max-width:100%" :model="projectForme" :rules="moderules"
|
2025-01-21 18:28:13 +08:00
|
|
|
|
label-width="auto" class="demo-ruleForm" status-icon>
|
2025-05-24 11:11:36 +08:00
|
|
|
|
<div style="width: 100%;display: flex;justify-content: space-between;align-items: center;">
|
|
|
|
|
<el-form-item label="任务编号" style="width: 50%;" >
|
|
|
|
|
<el-input v-model="projectForme.taskCode" maxlength="40" show-word-limit disabled style="width: 100%;" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="任务名称" style="width: 50%;margin-left: 15px;">
|
|
|
|
|
<el-input v-model="projectForme.taskName" show-word-limit disabled />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</div>
|
|
|
|
|
<div style="width: 100%;display: flex;justify-content: space-between;align-items: center;">
|
|
|
|
|
<el-form-item label="任务类型" prop="taskType" style="width: 50%;">
|
|
|
|
|
<el-select v-model="projectForme.taskType" clearable placeholder=" " @change="getdata()">
|
|
|
|
|
<el-option v-for="item in dictType" :key="item.itemcode" :label="item.dictname"
|
|
|
|
|
:value="item.itemcode" />
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="任务时间" prop="taskDate" style="width: 50%;margin-left: 15px;">
|
|
|
|
|
<el-date-picker v-model="projectForme.taskDate" type="daterange" range-separator="-"
|
|
|
|
|
start-placeholder="开始时间" end-placeholder="结束时间" format="YYYY-MM-DD"
|
|
|
|
|
value-format="YYYY-MM-DD" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</div>
|
|
|
|
|
<div style="width: 100%;display: flex;justify-content: space-between;align-items: center;">
|
|
|
|
|
<el-form-item label="任务地点" prop="taskPlace" style="width: 50%;">
|
|
|
|
|
<el-input v-model="projectForme.taskPlace" maxlength="500" show-word-limit />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="任务人员" style="width: 50%;margin-left: 15px;">
|
|
|
|
|
<el-input v-model="projectForme.taskPerson" maxlength="500" show-word-limit />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</div>
|
|
|
|
|
<div style="width: 100%;display: flex;justify-content: space-between;align-items: center;">
|
|
|
|
|
<el-form-item label="载机名称" style="width: 50%;">
|
|
|
|
|
<el-input v-model="projectForme.carrierName" maxlength="40" show-word-limit />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="设备代号_编号" style="width: 50%;margin-left: 15px;">
|
|
|
|
|
<el-input v-model="projectForme.deviceCode" maxlength="40" show-word-limit />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</div>
|
2025-05-23 13:39:29 +08:00
|
|
|
|
<!-- <el-form-item label="载体类型">
|
2025-03-26 09:54:02 +08:00
|
|
|
|
<el-input v-model="projectForme.carrierType" maxlength="200" show-word-limit />
|
2025-05-23 13:39:29 +08:00
|
|
|
|
</el-form-item> -->
|
2025-05-24 11:11:36 +08:00
|
|
|
|
|
|
|
|
|
<el-form-item label="试验描述">
|
|
|
|
|
<el-input v-model="projectForme.testDescribe" :rows="12" type="textarea" show-word-limit />
|
2025-01-21 18:28:13 +08:00
|
|
|
|
</el-form-item>
|
2025-05-23 13:39:29 +08:00
|
|
|
|
<el-form-item label="传感器描述">
|
2025-05-24 11:11:36 +08:00
|
|
|
|
<el-input v-model="projectForme.sensorDescribe" :rows="12" type="textarea" show-word-limit />
|
2025-05-23 13:39:29 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- <el-form-item label="设备名称">
|
|
|
|
|
<el-input v-model="projectForme.deviceName" maxlength="40" show-word-limit />
|
|
|
|
|
</el-form-item> -->
|
2025-01-21 18:28:13 +08:00
|
|
|
|
<el-form-item>
|
|
|
|
|
<div style="width: 100%;display: flex;justify-content: end;">
|
|
|
|
|
<el-button type="primary" @click="submitForm(ruleFormRef)">确定</el-button>
|
|
|
|
|
<el-button @click="handleClose(ruleFormRef)">取消</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
</el-dialog>
|
2025-05-24 11:11:36 +08:00
|
|
|
|
<el-dialog :title="title" v-model="logqing" width="60%" :before-close="handleClose1" top="30px" draggable
|
|
|
|
|
:close-on-click-modal="false" destroy-on-close>
|
|
|
|
|
<div class="texlog">
|
|
|
|
|
<el-scrollbar height="80vh">
|
|
|
|
|
{{ logTxt }}
|
|
|
|
|
</el-scrollbar>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
2025-01-21 18:28:13 +08:00
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2025-05-24 11:11:36 +08:00
|
|
|
|
.texlog{
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
}
|
|
|
|
|
.ellipsis{
|
|
|
|
|
display: flex;
|
|
|
|
|
width: 100%;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
.single-line-ellipsis {
|
|
|
|
|
width: 270px;
|
|
|
|
|
/* 限制容器宽度 */
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
/* 禁止文本换行 */
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
/* 隐藏超出范围的内容 */
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
/* 使用省略号 */
|
|
|
|
|
}
|
2025-01-21 18:28:13 +08:00
|
|
|
|
.record-box {
|
|
|
|
|
padding: 20px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: calc(100vh - 130px);
|
|
|
|
|
overflow: auto;
|
|
|
|
|
background-color: rgba(255, 255, 255, 1);
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
|
|
.sou_title {
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
|
|
.sou_title_left {
|
|
|
|
|
width: 80%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2025-05-23 13:39:29 +08:00
|
|
|
|
// justify-content: space-between;
|
|
|
|
|
flex-wrap: wrap;
|
2025-01-21 18:28:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|