Commit db3c9e65 by liangzhen

暂存一下

1 parent 923b989f
NODE_ENV = 'production' NODE_ENV = 'production'
# VUE_APP_BASE_URL = "http://192.168.0.102:80" # VUE_APP_BASE_URL = "http://192.168.0.102:80"
VUE_APP_BASE_URL = "http://192.168.50.1:18000" VUE_APP_BASE_URL = "http://127.0.0.1:80/arch-tools"
...@@ -373,3 +373,11 @@ export function selWtqdFZ(params){ ...@@ -373,3 +373,11 @@ export function selWtqdFZ(params){
export function selFile(params){ export function selFile(params){
return post(`${ARCH_EVALUATION}/evalQuesInfo/selFile`, params) return post(`${ARCH_EVALUATION}/evalQuesInfo/selFile`, params)
} }
//明显查询
export function selWtmx(params){
return post(`${ARCH_EVALUATION}/evalQuesInfo/selWtmx`, params)
}
//保存
export function bcevalQuesInfo(params){
return post(`${ARCH_EVALUATION}/evalQuesInfo/bc`, params)
}
\ No newline at end of file
...@@ -216,68 +216,58 @@ export function trendsRules(type) { ...@@ -216,68 +216,58 @@ export function trendsRules(type) {
// url: "", // url: "",
// children: [ // children: [
// { // {
// name: "评估项目辅助选定", // name: "自查项目辅助选定",
// url: "/mainLayout/auxiliarySelection", // url: "/mainLayout/auxiliarySelection",
// children: [], // children: [],
// }, // },
// { // {
// name: "评估批次确认发布", // name: "自查批次确认发布",
// url: "/mainLayout/confirmRelease", // url: "/mainLayout/confirmRelease",
// children: [], // children: [],
// }, // },
// { // {
// name: "评估材料自动获取", // name: "自查材料自动获取",
// url: "/mainLayout/materialAcquisition", // url: "/mainLayout/materialAcquisition",
// children: [], // children: [],
// }, // },
// // { name: "评估材料自动解析", url: "/mainLayout/materialAnalysis", children: [] },
// { // {
// name: "项目辅助检查", // name: "自查项目辅助检查",
// url: "/mainLayout/auxiliaryInspection", // url: "/mainLayout/auxiliaryInspection",
// children: [], // children: [],
// }, // },
// { // {
// name: "项目评估结果确认更改", // name: "自查结果确认更改",
// url: "/mainLayout/confirmChanges", // url: "/mainLayout/confirmChanges",
// children: [], // children: [],
// }, // },
// { // {
// name: "评估结果辅助查看",
// url: "/mainLayout/assistedViewing",
// children: [],
// },
// { // {
// name: "问题辅助下发", // name: "自查问题辅助下发",
// url: "/mainLayout/assitedDistribution", // url: "/mainLayout/assitedDistribution",
// children: [], // children: [],
// }, // },
// { // {
// name: "问题辅助查询", // name: "自查问题辅助反馈",
// url: "/mainLayout/auxiliaryQuery",
// children: [],
// },
// {
// name: "问题辅助反馈",
// url: "/mainLayout/assistedFeedback", // url: "/mainLayout/assistedFeedback",
// children: [], // children: [],
// }, // },
// { // {
// name: "申诉辅助确认", // name: "自查申诉辅助确认",
// url: "/mainLayout/assistedConfirm", // url: "/mainLayout/assistedConfirm",
// children: [], // children: [],
// }, // },
// { // {
// name: "问题辅助整改", // name: "自查问题辅助整改",
// url: "/mainLayout/assistedRect", // url: "/mainLayout/assistedRect",
// children: [], // children: [],
// }, // },
// { // {
// name: "整改辅助核验", // name: "自查整改辅助核验",
// url: "/mainLayout/correctiveAssistanceVerification", // url: "/mainLayout/correctiveAssistanceVerification",
// children: [], // children: [],
// }, // },
// { // {
// name: "材料同步归档", // name: "自查材料同步归档",
// url: "/mainLayout/attachSynchronousArchiving", // url: "/mainLayout/attachSynchronousArchiving",
// children: [], // children: [],
// }, // },
......
...@@ -239,7 +239,7 @@ export default { ...@@ -239,7 +239,7 @@ export default {
box-sizing: border-box; box-sizing: border-box;
overflow-x: hidden; overflow-x: hidden;
.bottom { .bottom {
width:calc(100% - 246px); width:calc(100% - 270px);
position:fixed; position:fixed;
bottom: -15px; bottom: -15px;
right: 0; right: 0;
......
<template>
<div class="main">
<el-table
@selection-change="handleSelectionChange"
ref="multipleTable"
:data="tableData"
tooltip-effect="dark"
style="width: 100%"
header-cell-class-name="custom-th-background"
class="eltable"
:row-class-name="tableRowClassName"
border
>
<el-table-column label="序号" width="55" type="index">
</el-table-column>
<el-table-column type="selection"> </el-table-column>
<el-table-column label="批次年度" width="auto" prop="batchYear">
</el-table-column>
<el-table-column prop="batchName" label="后评估批次名称" width="auto">
</el-table-column>
<el-table-column
prop="planReviewDate"
label="计划评审日期"
width="auto"
>
</el-table-column>
<el-table-column prop="expertName" label="后评估专家" width="auto">
</el-table-column>
<el-table-column prop="postEvalState" label="批次下发状态" width="auto">
<!-- <el-table-column prop="expertLeader" label="后评估专家组长" width="auto">
</el-table-column>
<el-table-column prop="status" label="后评状态" width="auto">
</el-table-column>
<el-table-column prop="expertName" label="评审专家名单" width="auto"> -->
</el-table-column>
<el-table-column prop="creator" label="创建人" width="auto">
</el-table-column>
<el-table-column prop="createTime" label="创建时间" width="auto">
</el-table-column>
</el-table>
<el-pagination
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
:current-page="currentPage"
:page-sizes="[5, 10, 20, 50]"
:page-size="100"
layout="total, sizes, prev, pager, next, jumper"
:total="tableData.length"
class="elpagination">
</el-pagination>
</div>
</template>
<script>
import { number } from 'echarts';
export default {
data() {
return {
currentPage:1,
pageSize:"5",
}
},
props: {
tableData: {
type: Array,
default:[],
},
total:{
type:Number,
default: "",
},
tbtyps:{
type: String,
default: "",
}
},
methods: {
handleSelectionChange(selection) {
if (Array.isArray(selection) && selection.length > 1) {
this.$refs.multipleTable.toggleRowSelection(selection[0],false);
this.$refs.multipleTable.toggleRowSelection(selection[1],true);
}
console.log( this.$refs.multipleTable.selection,'this.$refs.multipleTable.selection')
this.$emit('sendselection',this.$refs.multipleTable.selection)
},
handleSizeChange(val) {
console.log(`每页 ${val} 条`);
this.$emit('pageSize',this.pageSize)
},
handleCurrentChange(val) {
console.log(`当前页: ${val}`);
this.currentPage=val
this.$emit('currentPage',this.currentPage)
},
tableRowClassName({row, rowIndex}) {
// console.log(rowIndex % 2,'333')
if (rowIndex % 2 == 1) {
return 'warning-row';
}
return ''
}
},
};
</script>
<style lang="scss" scoped>
.main {
font-size: 14px;
width: 100%;
height:70%;
.eltable{
height: 94%;
}
.elpagination{
text-align: right;
margin-right: 100px;
}
}
/deep/ .cell {
text-align: center;
}
/deep/ .el-table__header th {
background-color: #eeeeee;
font-weight: bold;
.cell {
color: #333;
}
}
/deep/ .el-table__body .el-checkbox__input.is-checked .el-checkbox__inner {
background-color: #333; /* 你想要的任何颜色 */
opacity: 0.7;
border-color: #333;
}
/deep/ .el-checkbox .is-checked .el-checkbox__inner {
background-color: #333; /* 你想要的任何颜色 */
opacity: 0.7;
border-color: #333;
}
/deep/ .el-checkbox__input.is-indeterminate .el-checkbox__inner{
background-color: #333; /* 你想要的任何颜色 */
opacity: 0.7;
border-color: #333;
}
/deep/ .el-table .warning-row {
background: #f0ffff;
// color: #2785E6;
}
</style>
\ No newline at end of file
...@@ -150,6 +150,7 @@ export default { ...@@ -150,6 +150,7 @@ export default {
} }
}, },
cancel() { cancel() {
console.log('电击取消')
this.$router.go(-1); this.$router.go(-1);
}, },
//确认更改 //确认更改
......
<template> <template>
<div> <div>
<div id="parentElement" v-show="false">{{id}}</div> <div id="parentElement" v-show="false">{{id}}</div>
<iframe src="http://192.168.50.1:18000/static/" frameborder="0" style="width:100vw;height:100vh;" id="iframe" ></iframe> <iframe src="http:/127.0.0.1:80/static/" frameborder="0" style="width:100vw;height:100vh;" id="iframe" ></iframe>
</div> </div>
</template> </template>
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!