flx: 提交水平倾斜字段
This commit is contained in:
parent
902b2fc767
commit
0e509c3630
@ -678,7 +678,7 @@ const getWorkTicketPage = () => {
|
|||||||
console.log("进来了", Number(res.result.total));
|
console.log("进来了", Number(res.result.total));
|
||||||
workTicketInfo.total = Number(res.result.total);
|
workTicketInfo.total = Number(res.result.total);
|
||||||
if (workTicketList.value.length > 0) {
|
if (workTicketList.value.length > 0) {
|
||||||
onViewDetail(workTicketList.value[0]);
|
onViewDetail(workTicketList.value[0], true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -791,7 +791,7 @@ const isJSON = (str) => {
|
|||||||
const timeInterval = ref(null);
|
const timeInterval = ref(null);
|
||||||
// 查看详情
|
// 查看详情
|
||||||
const onViewDetail = (row) => {
|
const onViewDetail = (row) => {
|
||||||
if (row.id == workTicketDetail.value.id) return;
|
if (row.id == workTicketDetail.value.id && flag != true) return;
|
||||||
workTicketDetail.value = row;
|
workTicketDetail.value = row;
|
||||||
getWorkTicketQueryById();
|
getWorkTicketQueryById();
|
||||||
getWorkTicketHistoryList();
|
getWorkTicketHistoryList();
|
||||||
@ -1836,14 +1836,14 @@ const downloadFileBtn = (url, name) => {
|
|||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
align-content: flex-start;
|
align-content: flex-start;
|
||||||
> div {
|
> div {
|
||||||
width: 32% !important;
|
width: 32.4% !important;
|
||||||
height: 300px;
|
height: 350px;
|
||||||
background: url("~@/assets/images/companyBigScreen/terminalOperation/cardImg.png")
|
background: url("~@/assets/images/companyBigScreen/terminalOperation/cardImg.png")
|
||||||
no-repeat;
|
no-repeat;
|
||||||
background-size: 100% 100%;
|
background-size: 100% 100%;
|
||||||
margin: 0 !important;
|
margin: 0 !important;
|
||||||
.hls-video {
|
.hls-video {
|
||||||
height: 260px !important;
|
height: 310px !important;
|
||||||
}
|
}
|
||||||
:deep(.sub-wnd) {
|
:deep(.sub-wnd) {
|
||||||
width: 100% !important;
|
width: 100% !important;
|
||||||
|
|||||||
@ -232,9 +232,7 @@
|
|||||||
<el-input v-model="addEditForm.companyName" placeholder="请输入"></el-input>
|
<el-input v-model="addEditForm.companyName" placeholder="请输入"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item
|
<el-form-item
|
||||||
:label="
|
label="企业所在省市"
|
||||||
$t('message.companyDiagram.dialog_ProjectPop_up.provincesCode')
|
|
||||||
"
|
|
||||||
prop="provincesCode"
|
prop="provincesCode"
|
||||||
>
|
>
|
||||||
<el-cascader
|
<el-cascader
|
||||||
|
|||||||
@ -430,7 +430,9 @@ export default {
|
|||||||
openDialogDetail(item) {
|
openDialogDetail(item) {
|
||||||
this.isDetail = true
|
this.isDetail = true
|
||||||
this.addEditForm = JSON.parse(JSON.stringify(item))
|
this.addEditForm = JSON.parse(JSON.stringify(item))
|
||||||
this.addEditForm.deductScore = item.aiDeductRule.deductScore
|
this.addEditForm.deductScore = item.aiDeductRule
|
||||||
|
? item.aiDeductRule.deductScore
|
||||||
|
: 0;
|
||||||
this.getPersonDetail(item.id)
|
this.getPersonDetail(item.id)
|
||||||
this.recordShow = true
|
this.recordShow = true
|
||||||
console.log('打开处置弹窗', item)
|
console.log('打开处置弹窗', item)
|
||||||
|
|||||||
@ -329,6 +329,17 @@
|
|||||||
<span v-else>{{ row.foundationSettlement }}</span>
|
<span v-else>{{ row.foundationSettlement }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
<!-- 水平倾斜 -->
|
||||||
|
<el-table-column align="center" prop="horizontalTilt" label="水平倾斜(°)">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<el-input
|
||||||
|
v-if="row.isRealTimeFlag"
|
||||||
|
v-model="row.horizontalTilt"
|
||||||
|
placeholder="请输入"
|
||||||
|
></el-input>
|
||||||
|
<span v-else>{{ row.horizontalTilt }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
<!-- 测量时间 -->
|
<!-- 测量时间 -->
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="collectTime"
|
prop="collectTime"
|
||||||
@ -841,6 +852,7 @@ export default {
|
|||||||
formworkSettlement: "",
|
formworkSettlement: "",
|
||||||
poleTilt: "",
|
poleTilt: "",
|
||||||
foundationSettlement: "",
|
foundationSettlement: "",
|
||||||
|
horizontalTilt: "",
|
||||||
collectTime: "",
|
collectTime: "",
|
||||||
isRealTimeFlag: true,
|
isRealTimeFlag: true,
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user