Browse Source

修复已办原始记录查询不到数据的bug

master
李磊 3 years ago
parent
commit
49a2df4837
  1. 2
      src/views/bggl/8000/jj/azjj.vue
  2. 14
      src/views/bggl/components/original_db_list.vue
  3. 2
      src/views/bggl/yiban_list.vue
  4. 2
      src/views/ysjl/components/original_yb_list.vue

2
src/views/bggl/8000/jj/azjj.vue

@ -753,7 +753,7 @@ export default {
} }
let url = '' let url = ''
this.ysjl.bglx = 1 this.ysjl.bglx = 1
this.ysjl.cjState = 'bggl' this.ysjl.cjState = 'jybg'
this.ysjl.zfState = '0' this.ysjl.zfState = '0'
this.ysjl.jianyanxiangmu = 'azjj' this.ysjl.jianyanxiangmu = 'azjj'
this.ysjl.jlprintState = 0 this.ysjl.jlprintState = 0

14
src/views/bggl/components/original_db_list.vue

@ -620,13 +620,13 @@ export default {
}, },
delReport() { delReport() {
// //
this.ysjlId = ''
if (this.multipleSelection.length === 0) { if (this.multipleSelection.length === 0) {
this.$message('请在列表选择要删除的数据。') this.$message('请在列表选择要删除的数据。')
return false return false
} }
let linkname = '' let linkname = ''
let revertRenwuByYsjlIds = '' let revertRenwuByYsjlIds = ''
const ids = []
for (let i = 0; i < this.multipleSelection.length; i++) { for (let i = 0; i < this.multipleSelection.length; i++) {
if (i === 0 && this.multipleSelection[i].flowstatus === 1) { if (i === 0 && this.multipleSelection[i].flowstatus === 1) {
linkname = this.multipleSelection[i].flowstatus linkname = this.multipleSelection[i].flowstatus
@ -638,10 +638,7 @@ export default {
if (this.multipleSelection[i].shebeileibiedaima === '2100' && this.multipleSelection[i].jianyanleibie === 'DJ') { if (this.multipleSelection[i].shebeileibiedaima === '2100' && this.multipleSelection[i].jianyanleibie === 'DJ') {
revertRenwuByYsjlIds = this.multipleSelection[i].id + ',' + revertRenwuByYsjlIds revertRenwuByYsjlIds = this.multipleSelection[i].id + ',' + revertRenwuByYsjlIds
} }
this.ysjlId = this.multipleSelection[i].id + ',' + this.ysjlId ids.push(this.multipleSelection[i].id)
if (i + 1 === this.multipleSelection.length) {
this.ysjlId = this.ysjlId.substring(0, this.ysjlId.length - 1)
}
} }
this.$confirm('确定删除当前选中报告?', '提示', { this.$confirm('确定删除当前选中报告?', '提示', {
confirmButtonText: '确定', confirmButtonText: '确定',
@ -650,9 +647,12 @@ export default {
}).then(() => { }).then(() => {
this.api({ this.api({
url: '/ysjl/delReport', url: '/ysjl/delReport',
method: 'post', method: 'delete',
params: { params: {
ids: this.ysjlId ids: ids
},
paramsSerializer: function(params) {
return require('qs').stringify(params, { indices: false })
} }
}).then(() => { }).then(() => {
this.$message({ this.$message({

2
src/views/bggl/yiban_list.vue

@ -144,7 +144,7 @@ export default {
}, },
methods: { methods: {
getList() { getList() {
this.listQuery.cjState = 'bggl' this.listQuery.cjState = 'jybg'
this.api({ this.api({
url: '/ysjl/getListDoneJybg', url: '/ysjl/getListDoneJybg',
method: 'get', method: 'get',

2
src/views/ysjl/components/original_yb_list.vue

@ -143,7 +143,7 @@ export default {
}, },
methods: { methods: {
getList() { getList() {
this.listQuery.cjState = 'bggl' this.listQuery.cjState = 'jybg'
this.api({ this.api({
url: '/ysjl/getListDoneYsjl', url: '/ysjl/getListDoneYsjl',
method: 'get', method: 'get',

Loading…
Cancel
Save