|
@ -132,7 +132,8 @@ Vue.component('gxb-cy', {
|
|
messInfo: null,
|
|
messInfo: null,
|
|
remind: '',
|
|
remind: '',
|
|
dialogExportLoading: false,
|
|
dialogExportLoading: false,
|
|
dialogLoading: false
|
|
|
|
|
|
dialogLoading: false,
|
|
|
|
service: {}
|
|
}
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
@ -513,7 +514,32 @@ Vue.component('gxb-cy', {
|
|
this.size = val
|
|
this.size = val
|
|
this.dialogSearch()
|
|
this.dialogSearch()
|
|
},
|
|
},
|
|
previewForm(row) {},
|
|
|
|
|
|
previewForm(row) {
|
|
|
|
var vm = this
|
|
|
|
var params = {
|
|
|
|
planDetailId: row.planDetailId
|
|
|
|
}
|
|
|
|
rehaAPI.serviceItem(params).then(function (res) {
|
|
|
|
if (res.status == 200) {
|
|
|
|
vm.service = res.data
|
|
|
|
top.layer.open({
|
|
|
|
type: 2,
|
|
|
|
area: ['600px', '700px'],
|
|
|
|
shade: 0.5,
|
|
|
|
title: '记录随访表单',
|
|
|
|
fixed: true, //不固定
|
|
|
|
maxmin: true,
|
|
|
|
closeBtn: 1,
|
|
|
|
// shift: 5,
|
|
|
|
shadeClose: false, //点击遮罩关闭层
|
|
|
|
content: '../../rehabilitation/html/followRecord.html?serviceInfo=' + encodeURIComponent(JSON.stringify(vm.service)) + '&planDetailId=' + row.planDetailId,
|
|
|
|
end: function () {
|
|
|
|
// 未点击确定按钮,点击关闭按钮
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
|
previewMess(row) {
|
|
previewMess(row) {
|
|
this.messageVisible = true
|
|
this.messageVisible = true
|
|
this.messInfo = row.content
|
|
this.messInfo = row.content
|