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/',
|
// FILEURL:'http://182.90.224.237:51234/image/',
|
||||||
UPLOADURL:'http://192.168.34.221:9111/upload/image/',// 郭圣雄本地
|
UPLOADURL:'http://192.168.34.221:9111/upload/image/',// 郭圣雄本地
|
||||||
FILEURL:'http://192.168.34.221:9111/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/',// 郭圣雄远程
|
// UPLOADURL:'http://182.90.224.237:51234/upload/image/',// 郭圣雄远程
|
||||||
// FILEURL:'http://182.90.224.237:51234/image/',//郭圣雄远程
|
// FILEURL:'http://182.90.224.237:51234/image/',//郭圣雄远程
|
||||||
// UPLOADURL:'http://jxj.zhgdyun.com:15551/upload/image',//测试
|
// UPLOADURL:'http://jxj.zhgdyun.com:15551/upload/image',//测试
|
||||||
|
|||||||
@ -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
|
<!-- v-if="
|
||||||
v-if="
|
|
||||||
itemForm.dutyUserId &&
|
itemForm.dutyUserId &&
|
||||||
itemForm.dutyUserId === $store.state.userInfo.userId
|
itemForm.dutyUserId === $store.state.userInfo.userId
|
||||||
"
|
" -->
|
||||||
|
<div
|
||||||
|
|
||||||
>
|
>
|
||||||
|
|
||||||
<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',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user