fix: 解决冲突
This commit is contained in:
commit
3b4b6bea8e
@ -195,6 +195,13 @@
|
|||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
align="center"
|
||||||
|
prop="qualityRegionName"
|
||||||
|
label="区域"
|
||||||
|
show-overflow-tooltip
|
||||||
|
>
|
||||||
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
align="center"
|
align="center"
|
||||||
prop="startDate"
|
prop="startDate"
|
||||||
|
|||||||
@ -141,17 +141,19 @@
|
|||||||
</el-table>
|
</el-table>
|
||||||
</div> -->
|
</div> -->
|
||||||
</div>
|
</div>
|
||||||
<div class="plan_wrap whiteBlock">
|
<div class="plan_wrap whiteBlock" style="position: relative;">
|
||||||
<div class="pageTitle">进度记录</div>
|
<div class="pageTitle">进度记录</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
v-if="
|
v-if="
|
||||||
itemForm.dutyUserId &&
|
itemForm.dutyUserId &&
|
||||||
itemForm.dutyUserId === $store.state.userInfo.userId
|
itemForm.dutyUserId === $store.state.userInfo.userId
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
|
|
||||||
<el-button
|
<el-button
|
||||||
v-if="itemForm.status === 0"
|
v-if="itemForm.status === 0"
|
||||||
style="top: 16%; position: absolute; left: 94%"
|
style="top: 12px; position: absolute; right: 8px"
|
||||||
size="mini"
|
size="mini"
|
||||||
type="primary"
|
type="primary"
|
||||||
plain
|
plain
|
||||||
@ -159,9 +161,10 @@
|
|||||||
>
|
>
|
||||||
开始任务
|
开始任务
|
||||||
</el-button>
|
</el-button>
|
||||||
|
|
||||||
<el-button
|
<el-button
|
||||||
v-if="itemForm.status === 1 || itemForm.status === 3"
|
v-if="itemForm.status === 1 || itemForm.status === 3"
|
||||||
style="top: 16%; position: absolute; left: 94%"
|
style="top: 12px; position: absolute; right: 8px"
|
||||||
size="mini"
|
size="mini"
|
||||||
type="primary"
|
type="primary"
|
||||||
plain
|
plain
|
||||||
@ -169,9 +172,10 @@
|
|||||||
>
|
>
|
||||||
上报进度
|
上报进度
|
||||||
</el-button>
|
</el-button>
|
||||||
|
|
||||||
<el-button
|
<el-button
|
||||||
v-if="itemForm.status === 2"
|
v-if="itemForm.status === 2"
|
||||||
style="top: 16%; position: absolute; left: 93.5%"
|
style="top: 12px; position: absolute; right: 8px"
|
||||||
size="mini"
|
size="mini"
|
||||||
type="info"
|
type="info"
|
||||||
plain
|
plain
|
||||||
|
|||||||
@ -500,6 +500,7 @@ export default {
|
|||||||
// 雷达图
|
// 雷达图
|
||||||
radarCharts(el) {
|
radarCharts(el) {
|
||||||
let ageChart = echarts.init(el);
|
let ageChart = echarts.init(el);
|
||||||
|
|
||||||
const data = [
|
const data = [
|
||||||
this.examineInfo2.investigateNum,
|
this.examineInfo2.investigateNum,
|
||||||
this.examineInfo2.notCloseNum,
|
this.examineInfo2.notCloseNum,
|
||||||
@ -507,7 +508,8 @@ export default {
|
|||||||
this.examineInfo2.rectificationNum,
|
this.examineInfo2.rectificationNum,
|
||||||
this.examineInfo2.reviewNum,
|
this.examineInfo2.reviewNum,
|
||||||
this.examineInfo2.verificationNum];
|
this.examineInfo2.verificationNum];
|
||||||
const maxCount = data.sort((a,b) => b - a)[0];
|
const maxCount = data.map(item => item).sort((a,b) => b - a)[0];
|
||||||
|
// console.log('~~~~~~~~~~~~~',this.examineInfo2,data);
|
||||||
let option = {
|
let option = {
|
||||||
legend: {
|
legend: {
|
||||||
icon: 'roundRect',
|
icon: 'roundRect',
|
||||||
|
|||||||
@ -2634,6 +2634,7 @@ export default {
|
|||||||
},
|
},
|
||||||
//导出
|
//导出
|
||||||
exportData() {
|
exportData() {
|
||||||
|
|
||||||
if (this.COMPANY == "zjwj") {
|
if (this.COMPANY == "zjwj") {
|
||||||
window.location.href =
|
window.location.href =
|
||||||
this.$http.defaults.baseURL +
|
this.$http.defaults.baseURL +
|
||||||
@ -2654,9 +2655,10 @@ export default {
|
|||||||
"&pageSize=" +
|
"&pageSize=" +
|
||||||
this.pageSize;
|
this.pageSize;
|
||||||
} else {
|
} else {
|
||||||
|
// xmgl/download/exporExcelQualityInspectionRecord
|
||||||
window.location.href =
|
window.location.href =
|
||||||
this.$http.defaults.baseURL +
|
this.$http.defaults.baseURL +
|
||||||
"xmgl/download/exporExcelQualityInspectionRecord?projectSn=" +
|
"xmgl/download/exportExcelXzSecurityQualityInspectionRecord?projectSn=" +
|
||||||
this.$store.state.projectSn +
|
this.$store.state.projectSn +
|
||||||
"&recordType=" +
|
"&recordType=" +
|
||||||
this.formInline.recordType +
|
this.formInline.recordType +
|
||||||
|
|||||||
@ -507,7 +507,8 @@ export default {
|
|||||||
this.examineInfo2.rectificationNum,
|
this.examineInfo2.rectificationNum,
|
||||||
this.examineInfo2.reviewNum,
|
this.examineInfo2.reviewNum,
|
||||||
this.examineInfo2.verificationNum];
|
this.examineInfo2.verificationNum];
|
||||||
const maxCount = data.sort((a,b) => b - a)[0];
|
const maxCount = data.map(item => item).sort((a,b) => b - a)[0];
|
||||||
|
// console.log('~~~~~~~~~~~~~',this.examineInfo2,data);
|
||||||
let option = {
|
let option = {
|
||||||
legend: {
|
legend: {
|
||||||
icon: 'roundRect',
|
icon: 'roundRect',
|
||||||
|
|||||||
@ -246,7 +246,7 @@
|
|||||||
{{ workDetail.safetyWorkTicketCode }}
|
{{ workDetail.safetyWorkTicketCode }}
|
||||||
</el-form-item> -->
|
</el-form-item> -->
|
||||||
<el-form-item label="实际作业开始时间:" :label-width="formLabelWidthDetail">
|
<el-form-item label="实际作业开始时间:" :label-width="formLabelWidthDetail">
|
||||||
<el-date-picker v-model="workDetail.actualJobBeginTime" type="date"
|
<el-date-picker v-model="workDetail.actualJobBeginTime" type="datetimerange"
|
||||||
value-format="yyyy-MM-dd HH:mm:ss" :disabled="isDisabledDetail">
|
value-format="yyyy-MM-dd HH:mm:ss" :disabled="isDisabledDetail">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|||||||
@ -368,7 +368,7 @@
|
|||||||
{{ workDetail.certificateNo }}
|
{{ workDetail.certificateNo }}
|
||||||
</el-form-item> -->
|
</el-form-item> -->
|
||||||
<el-form-item label="动火作业实施时间:" :label-width="formLabelWidthDetail">
|
<el-form-item label="动火作业实施时间:" :label-width="formLabelWidthDetail">
|
||||||
<el-date-picker v-model="workDetail.hotWorkExecutionTime" type="daterange"
|
<el-date-picker v-model="workDetail.hotWorkExecutionTime" type="datetimerange"
|
||||||
value-format="yyyy-MM-dd HH:mm:ss" :disabled="isDisabledDetail" range-separator="至"
|
value-format="yyyy-MM-dd HH:mm:ss" :disabled="isDisabledDetail" range-separator="至"
|
||||||
start-placeholder="开始日期" end-placeholder="结束日期">
|
start-placeholder="开始日期" end-placeholder="结束日期">
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user