1
This commit is contained in:
parent
26ee7b9d1b
commit
b1f785cfd9
@ -52,7 +52,8 @@ export default new Vuex.Store({
|
||||
// FILEURL:'http://182.90.224.237:51234/image/',
|
||||
UPLOADURL:'http://192.168.34.221:9111/upload/image/',// 郭圣雄本地
|
||||
FILEURL:'http://192.168.34.221:9111/image/',//郭圣雄本地
|
||||
WORKFLOWURL: 'http://192.168.34.138:88/#/workspace/forms',//坤工作流地址(本地)
|
||||
// WORKFLOWURL: 'http://192.168.34.138:88/#/workspace/forms',//坤工作流地址(本地)
|
||||
WORKFLOWURL: 'http://192.168.34.126:88/#/workspace/forms',//罗峰工作流地址(本地)
|
||||
// UPLOADURL:'http://182.90.224.237:51234/upload/image/',// 郭圣雄远程
|
||||
// FILEURL:'http://182.90.224.237:51234/image/',//郭圣雄远程
|
||||
// UPLOADURL:'http://jxj.zhgdyun.com:15551/upload/image',//测试
|
||||
|
||||
@ -195,6 +195,13 @@
|
||||
</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
align="center"
|
||||
prop="qualityRegionName"
|
||||
label="区域"
|
||||
show-overflow-tooltip
|
||||
>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
align="center"
|
||||
prop="startDate"
|
||||
|
||||
@ -141,17 +141,19 @@
|
||||
</el-table>
|
||||
</div> -->
|
||||
</div>
|
||||
<div class="plan_wrap whiteBlock">
|
||||
<div class="plan_wrap whiteBlock" style="position: relative;">
|
||||
<div class="pageTitle">进度记录</div>
|
||||
<div
|
||||
v-if="
|
||||
<!-- v-if="
|
||||
itemForm.dutyUserId &&
|
||||
itemForm.dutyUserId === $store.state.userInfo.userId
|
||||
"
|
||||
" -->
|
||||
<div
|
||||
|
||||
>
|
||||
|
||||
<el-button
|
||||
v-if="itemForm.status === 0"
|
||||
style="top: 16%; position: absolute; left: 94%"
|
||||
style="top: 12px; position: absolute; right: 8px"
|
||||
size="mini"
|
||||
type="primary"
|
||||
plain
|
||||
@ -159,9 +161,10 @@
|
||||
>
|
||||
开始任务
|
||||
</el-button>
|
||||
|
||||
<el-button
|
||||
v-if="itemForm.status === 1 || itemForm.status === 3"
|
||||
style="top: 16%; position: absolute; left: 94%"
|
||||
style="top: 12px; position: absolute; right: 8px"
|
||||
size="mini"
|
||||
type="primary"
|
||||
plain
|
||||
@ -169,9 +172,10 @@
|
||||
>
|
||||
上报进度
|
||||
</el-button>
|
||||
|
||||
<el-button
|
||||
v-if="itemForm.status === 2"
|
||||
style="top: 16%; position: absolute; left: 93.5%"
|
||||
style="top: 12px; position: absolute; right: 8px"
|
||||
size="mini"
|
||||
type="info"
|
||||
plain
|
||||
|
||||
@ -500,6 +500,7 @@ export default {
|
||||
// 雷达图
|
||||
radarCharts(el) {
|
||||
let ageChart = echarts.init(el);
|
||||
|
||||
const data = [
|
||||
this.examineInfo2.investigateNum,
|
||||
this.examineInfo2.notCloseNum,
|
||||
@ -507,7 +508,8 @@ export default {
|
||||
this.examineInfo2.rectificationNum,
|
||||
this.examineInfo2.reviewNum,
|
||||
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 = {
|
||||
legend: {
|
||||
icon: 'roundRect',
|
||||
|
||||
@ -2634,6 +2634,7 @@ export default {
|
||||
},
|
||||
//导出
|
||||
exportData() {
|
||||
|
||||
if (this.COMPANY == "zjwj") {
|
||||
window.location.href =
|
||||
this.$http.defaults.baseURL +
|
||||
@ -2654,9 +2655,10 @@ export default {
|
||||
"&pageSize=" +
|
||||
this.pageSize;
|
||||
} else {
|
||||
// xmgl/download/exporExcelQualityInspectionRecord
|
||||
window.location.href =
|
||||
this.$http.defaults.baseURL +
|
||||
"xmgl/download/exporExcelQualityInspectionRecord?projectSn=" +
|
||||
"xmgl/download/exportExcelXzSecurityQualityInspectionRecord?projectSn=" +
|
||||
this.$store.state.projectSn +
|
||||
"&recordType=" +
|
||||
this.formInline.recordType +
|
||||
|
||||
@ -507,7 +507,8 @@ export default {
|
||||
this.examineInfo2.rectificationNum,
|
||||
this.examineInfo2.reviewNum,
|
||||
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 = {
|
||||
legend: {
|
||||
icon: 'roundRect',
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user