@@ -122,7 +122,7 @@
@click="ghgsr(scope.row)" v-hasPermi="['business:studyFormFill:ghgsr']">{{
$t('page.business.study.studyFormFill.ghgsr') }}
- {{
$t('page.business.study.studyFormFill.sy') }}
@@ -151,6 +151,8 @@
+
+
@@ -172,6 +174,7 @@ import Bj from "./tbbd/Bj";
import Xq from "./tbbd/Xq";
import Sy from "./tbbd/Sy";
import Fz from "./tbbd/Fz";
+import Fh from "./tbbd/Fh";
import Qrfz from "./tbbd/Qrfz";
import Jq from "./tbbd/Jq";
import Ghgsr from "./tbbd/Ghgsr";
@@ -207,10 +210,11 @@ export default {
deep: true
}
},
- components: {Ghgsr, Fz, Bj, Xq, Qrfz,Sy, Jq, Gc, SelectDeptUser, SelectDeptUserDialog },
+ components: { Ghgsr, Fh, Fz, Bj, Xq, Qrfz, Sy, Jq, Gc, SelectDeptUser, SelectDeptUserDialog },
data() {
return {
leader: null,
+ showFh: false,
showAudit: false,
showEdit: false,
showDetail: false,
@@ -234,7 +238,7 @@ export default {
loading: false,
total: 0,
list: [],
- currentRow:null
+ currentRow: null
}
},
created() { },
@@ -244,7 +248,7 @@ export default {
this.$refs.selectDeptUserDialog.show(null, null)
},
ghgsrChange(val) {
- this.$refs.Ghgsr.show({id:this.currentRow.id ,userId:val.id,userMc:val.name})
+ this.$refs.Ghgsr.show({ id: this.currentRow.id, userId: val.id, userMc: val.name })
},
jq(row) {
this.$refs.Jq.show(row)
@@ -318,6 +322,11 @@ export default {
this.$emit('showDetail', this.showAudit)
this.search()
},
+ fhClose() {
+ this.showFh = false
+ this.$emit('showDetail', this.showFh)
+ this.search()
+ },
detail(row) {
this.showDetail = true
this.$emit('showDetail', this.showDetail)
@@ -328,6 +337,11 @@ export default {
this.$emit('showDetail', this.showAudit)
this.$refs.Sy.show(row)
},
+ fh(row) {
+ this.showFh = true
+ this.$emit('showDetail', this.showFh)
+ this.$refs.Fh.show(row)
+ },
}
}