Browse Source

提交其他原始记录检验结果

master
xiaobai 3 years ago
parent
commit
59e7928869
  1. 2
      src/views/ysjl/3000/common/index.vue
  2. 28
      src/views/ysjl/4000/dj/common/index.vue
  3. 30
      src/views/ysjl/4000/jj/common/index.vue

2
src/views/ysjl/3000/common/index.vue

@ -1221,7 +1221,7 @@ export default {
}) })
}) })
if (operation === 'add') { if (operation === 'add') {
this.ysjl.jilubianhao = this.jlbh1 + this.jlbh4 + this.jlbh2 + '-' + this.jlbh3 this.ysjl.jilubianhao = this.jlbh1 + this.jlbh4 + this.jlbh2 + '-' + this.jlbh3
this.save(operation, 'post', tableData, fubiao) this.save(operation, 'post', tableData, fubiao)
} else if (operation === 'build') { } else if (operation === 'build') {
this.ysjl.baogaobianhao = this.ysjl.jilubianhao this.ysjl.baogaobianhao = this.ysjl.jilubianhao

28
src/views/ysjl/4000/dj/common/index.vue

@ -926,12 +926,10 @@ export default {
created() { created() {
if (this.state === 'create') { if (this.state === 'create') {
this.initYsjl() this.initYsjl()
this.getJyxm(1)
// //
this.getMaxBh() this.getMaxBh()
} else { } else {
this.getYsjl(this.$route.query.id) this.getYsjl(this.$route.query.id)
this.getJyxm(1)
} }
this.getDepartment() this.getDepartment()
}, },
@ -1008,6 +1006,7 @@ export default {
} }
}).then((data) => { }).then((data) => {
this.ysjl = data.ysjl this.ysjl = data.ysjl
this.getJyxm(1)
this.departmentId = this.ysjl.departmentId this.departmentId = this.ysjl.departmentId
this.param = this.param =
data.param !== null && data.param !== undefined ? data.param : {} data.param !== null && data.param !== undefined ? data.param : {}
@ -1036,6 +1035,7 @@ export default {
} }
}).then((data) => { }).then((data) => {
this.ysjl = data this.ysjl = data
this.getJyxm(1)
this.departmentId = this.ysjl.departmentId this.departmentId = this.ysjl.departmentId
if ( if (
this.ysjl.jianyanrenyuan !== null && this.ysjl.jianyanrenyuan !== null &&
@ -1072,10 +1072,15 @@ export default {
getJyxm(sort) { getJyxm(sort) {
if (this.$route.query.state === 'update') { if (this.$route.query.state === 'update') {
this.jyxmService this.jyxmService
.getJdCyJyxm(this.ysjlId, this.$route.query.templateId, sort) .getJdCyJyxm(this.ysjlId, this.$route.query.templateId, sort, 0)
.then((data) => { .then((data) => {
this.sybjSData = data this.bgfyData = data
this.tableJs.getData(this.cols, undefined, this.sybjSData) this.tableJs.getData(this.cols, this.rows, this.bgfyData)
})
this.jyxmService
.getJdCyJyxm(this.ysjlId, this.ysjl.jybgTemplateId, sort, 1)
.then((data) => {
this.jybgData = data
}) })
} else { } else {
this.jyxmService this.jyxmService
@ -1084,9 +1089,16 @@ export default {
data.forEach((row) => { data.forEach((row) => {
row.dicJyxmId = row.id row.dicJyxmId = row.id
}) })
this.bgfyData = data
this.sybjSData = data this.tableJs.getData(this.cols, this.rows, this.bgfyData)
this.tableJs.getData(this.cols, undefined, this.sybjSData) })
this.jyxmService
.getCyJyxm(this.ysjl.jybgTemplateId, sort)
.then((data) => {
data.forEach((row) => {
row.dicJyxmId = row.id
})
this.jybgData = data
}) })
} }
}, },

30
src/views/ysjl/4000/jj/common/index.vue

@ -1011,12 +1011,10 @@ export default {
created() { created() {
if (this.state === 'create') { if (this.state === 'create') {
this.initYsjl() this.initYsjl()
this.getJyxm(1)
// //
this.getMaxBh() this.getMaxBh()
} else { } else {
this.getYsjl(this.$route.query.id) this.getYsjl(this.$route.query.id)
this.getJyxm(1)
} }
this.getDepartment() this.getDepartment()
}, },
@ -1094,6 +1092,7 @@ export default {
}).then((data) => { }).then((data) => {
this.ysjl = data.ysjl this.ysjl = data.ysjl
this.departmentId = this.ysjl.departmentId this.departmentId = this.ysjl.departmentId
this.getJyxm(1)
this.param = this.param =
data.param !== null && data.param !== undefined ? data.param : {} data.param !== null && data.param !== undefined ? data.param : {}
this.ysjl.jianyanjieshuriqi = this.formatter.dateFormat('YYYY-MM-dd') this.ysjl.jianyanjieshuriqi = this.formatter.dateFormat('YYYY-MM-dd')
@ -1116,7 +1115,7 @@ export default {
) )
this.param.shangcijianyanriqi = this.common.checkDateFormat( this.param.shangcijianyanriqi = this.common.checkDateFormat(
this.param.shangcijianyanriqi this.param.shangcijianyanriqi
) )
}) })
}, },
getYsjl(id) { getYsjl(id) {
@ -1129,6 +1128,7 @@ export default {
}).then((data) => { }).then((data) => {
this.ysjl = data this.ysjl = data
this.departmentId = this.ysjl.departmentId this.departmentId = this.ysjl.departmentId
this.getJyxm(1)
if ( if (
this.ysjl.jianyanrenyuan !== null && this.ysjl.jianyanrenyuan !== null &&
this.ysjl.jianyanrenyuan.length > 0 this.ysjl.jianyanrenyuan.length > 0
@ -1165,10 +1165,15 @@ export default {
getJyxm(sort) { getJyxm(sort) {
if (this.$route.query.state === 'update') { if (this.$route.query.state === 'update') {
this.jyxmService this.jyxmService
.getJdCyJyxm(this.ysjlId, this.$route.query.templateId, sort) .getJdCyJyxm(this.ysjlId, this.$route.query.templateId, sort, 0)
.then((data) => {
this.bgfyData = data
this.tableJs.getData(this.cols, this.rows, this.bgfyData)
})
this.jyxmService
.getJdCyJyxm(this.ysjlId, this.ysjl.jybgTemplateId, sort, 1)
.then((data) => { .then((data) => {
this.sybjSData = data this.jybgData = data
this.tableJs.getData(this.cols, undefined, this.sybjSData)
}) })
} else { } else {
this.jyxmService this.jyxmService
@ -1177,9 +1182,16 @@ export default {
data.forEach((row) => { data.forEach((row) => {
row.dicJyxmId = row.id row.dicJyxmId = row.id
}) })
this.bgfyData = data
this.sybjSData = data this.tableJs.getData(this.cols, this.rows, this.bgfyData)
this.tableJs.getData(this.cols, undefined, this.sybjSData) })
this.jyxmService
.getCyJyxm(this.ysjl.jybgTemplateId, sort)
.then((data) => {
data.forEach((row) => {
row.dicJyxmId = row.id
})
this.jybgData = data
}) })
} }
}, },

Loading…
Cancel
Save