Commit dfa7a985 by 叶富雄

调整

parent 263dd174
......@@ -204,8 +204,16 @@
{{ scope.row.sfqspdbz ? '签收' : '未签收' }}
</template>
</el-table-column>
<el-table-column
fixed="right"
label="操作"
width="120">
<template slot-scope="scope">
<el-button @click.native.prevent="CKXQ(scope)">查看详情</el-button>
</template>
</el-table-column>
</el-table>
<h1 style="margin: 20px 0;">下级回报列表</h1>
<!-- <h1 style="margin: 20px 0;">下级回报列表</h1>
<el-table
:data="melist"
style="width: 100%">
......@@ -225,7 +233,7 @@
<el-button v-else @click.native.prevent="Seepingjia(scope, tableData)">查看评价</el-button>
</template>
</el-table-column>
</el-table>
</el-table>-->
<h1 style="margin: 20px 0;">本级回报列表</h1>
<el-table
......@@ -366,6 +374,30 @@
</el-drawer>
<el-dialog title="下级回报列表" :visible.sync="CKXQZT" width="80%">
<el-table
:data="CKXQList"
style="width: 100%">
<el-table-column prop="zczlbh" label="工作指令编号"></el-table-column>
<el-table-column prop="hbrdwmc" label="回报单位"></el-table-column>
<el-table-column prop="hbType" label="回报类型"></el-table-column>
<el-table-column prop="hbnr" label="回报内容"></el-table-column>
<el-table-column prop="hbsjDate" label="回报时间"></el-table-column>
<el-table-column
fixed="right"
label="操作"
width="120">
<template slot-scope="scope">
<el-button v-if="scope.row.pjdj=='' ||scope.row.pjdj==null "
@click.native.prevent="pingjia(scope, tableData)">评价
</el-button>
<el-button v-else @click.native.prevent="Seepingjia(scope, tableData)">查看评价</el-button>
</template>
</el-table-column>
</el-table>
</el-dialog>
</div>
......@@ -396,6 +428,8 @@ export default {
},
data() {
return {
CKXQZT: false,
CKXQList: [],
PJSE: true,
loading: true,
PJform: {
......@@ -480,6 +514,16 @@ export default {
};
},
methods: {
CKXQ(row){
this.CKXQZT = true
console.log(row);
getAllHbInfoByFpbh({fpbh: '460000000000202112100031712117 ', zczlbh:row.row.zczlbh}).then(res=>{
if(res.code ===200){
this.CKXQList = res.data.hbDetailList;
console.log(this.CKXQList);
}
})
},
downloadFile(row) {
let loading = this.$loading({
lock: true,
......@@ -679,11 +723,11 @@ export default {
this.info = res.data
}
})
getAllHbInfoByFpbh({fpbh: this.fpbh, zczlbh: this.zczlbh}).then(res => {
/* getAllHbInfoByFpbh({fpbh: this.fpbh, zczlbh: this.zczlbh}).then(res => {
if (res.code === 200) {
this.melist = res.data.hbDetailList
}
});
});*/
let requestFpbh = "";
if (this.fpbh != null && this.fpbh != '') {
requestFpbh = this.fpbh
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment