|
|
|
@ -60,7 +60,7 @@
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="14" >
|
|
|
|
|
<el-col :span="12" >
|
|
|
|
|
<el-form-item label="状态:">
|
|
|
|
|
<el-select v-model="queryParam.zt" placeholder="状态" clearable>
|
|
|
|
|
<el-option
|
|
|
|
@ -79,10 +79,11 @@
|
|
|
|
|
<el-button type="info" @click="plClick">批量</el-button>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="4" >
|
|
|
|
|
<el-col :span="6" >
|
|
|
|
|
<el-form-item style="float: right" >
|
|
|
|
|
<el-button type="success" @click="saveclick">反馈</el-button>
|
|
|
|
|
<el-button type="success" @click="xdClick">接收</el-button>
|
|
|
|
|
<el-button type="success" @click="checkTz">检查</el-button>
|
|
|
|
|
<el-button type="success" @click="saveclick">反馈</el-button>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
@ -125,12 +126,12 @@
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {
|
|
|
|
|
getTzjhPgd,
|
|
|
|
|
getTzjhPgd,
|
|
|
|
|
saveTzjhPgdFk,
|
|
|
|
|
saveTzjhPgdXd,
|
|
|
|
|
saveTzjhPgdXdBack,
|
|
|
|
|
|
|
|
|
|
getPgdBase
|
|
|
|
|
getPgdBase, checkTzReq
|
|
|
|
|
} from '@/api/jhzxgl/pgd'
|
|
|
|
|
import { mapGetters } from 'vuex'
|
|
|
|
|
import XEUtils from 'xe-utils'
|
|
|
|
@ -293,6 +294,18 @@ export default {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
checkTz(){
|
|
|
|
|
const data=this.$refs.xGrid.getCheckboxRecords();
|
|
|
|
|
if (data.length===0){
|
|
|
|
|
this.$message.warning('请先选择带检查的数据数据')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
const checkData=data.filter(item=>item.zt==='01')
|
|
|
|
|
checkTzReq(checkData).then(res=>{
|
|
|
|
|
this.$message.success('检查完成')
|
|
|
|
|
this.initList()
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
cellClickEvent({row}) {
|
|
|
|
|
this.queryParam.dcch = row.cbbm
|
|
|
|
|
this.$refs.xDown4.hidePanel()
|
|
|
|
@ -311,9 +324,6 @@ export default {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
activeRowMethod({ row, rowIndex }){
|
|
|
|
|
if(row.zt==="01"){
|
|
|
|
|
return true
|
|
|
|
|