Browse Source

睑板腺按摩表单bug修复

360view
bianyaqi 2 years ago
parent
commit
3056c8fefd
  1. 4
      public/index.html
  2. 4
      src/components/360View/index.vue
  3. 4
      src/components/360View/special/index.vue
  4. 13
      src/page-subspecialty/views/modules/formList/reportForm.vue

4
public/index.html

@ -53,8 +53,8 @@
<!-- 生产环境 -->
<% if (process.env.VUE_APP_NODE_ENV === 'prod') { %>
<script>
window.SITE_CONFIG['apiURL'] = 'http://47.110.224.240:8036/xiangan-crf';
// window.SITE_CONFIG['apiURL'] = 'http://10.80.5.32:8031/xiangan-crf';
// window.SITE_CONFIG['apiURL'] = 'http://47.110.224.240:8036/xiangan-crf';
window.SITE_CONFIG['apiURL'] = 'http://10.80.5.32:8031/xiangan-crf';
</script>
<% } %>
</head>

4
src/components/360View/index.vue

@ -408,8 +408,8 @@ export default {
// 360
handlePacs() {
// const baseUrl = 'http://z1.huimucloud.com:8085'
// const baseUrl = 'http://10.80.5.32:8026'
const baseUrl = 'http://192.168.0.85:8001'
const baseUrl = 'http://10.80.5.32:8026'
// const baseUrl = 'http://192.168.0.85:8001'
const href = `${baseUrl}/EXAMINE_Report/InterFace?PatID=${this.patientId}&DoctorID=${this.employeeId}&PatIdKey=&ExamNo=`
window.open(href, '_blank')
// const { href } = this.$router.resolve({

4
src/components/360View/special/index.vue

@ -213,8 +213,8 @@ export default {
// }
// })
// const baseUrl = 'http://z1.huimucloud.com:8085'
// const baseUrl = 'http://10.80.5.32:8026'
const baseUrl = 'http://192.168.0.85:8001'
const baseUrl = 'http://10.80.5.32:8026'
// const baseUrl = 'http://192.168.0.85:8001'
const href = `${baseUrl}/EXAMINE_Report/InterFace?PatID=${this.patientId}&DoctorID=${this.employeeId}&PatIdKey=&ExamNo=`
window.open(href, '_blank')
},

13
src/page-subspecialty/views/modules/formList/reportForm.vue

@ -89,6 +89,7 @@ export default {
data() {
return {
origin: {},
originForm: {},
confirmData: {
fmwOd: '',
fmwOs: '',
@ -154,7 +155,7 @@ export default {
}
},
created() {
this.origin = JSON.parse(JSON.stringify(this.formData))
this.originForm = JSON.parse(JSON.stringify(this.formData))
this.getReportInfo()
},
methods: {
@ -215,18 +216,20 @@ export default {
}
this.$http.get('/mzbl/getMzblBgInfo', { params }).then(data => {
const res = data.data.data
this.setData(res)
})
},
setData(res) {
this.confirmData = res
this.handleResValue(res.fmwOd, this.formData.form.OD)
this.handleResValue(res.fmwOs, this.formData.form.OS)
this.confirmData.remark = res.remark
this.confirmData.operator = res.operator
this.confirmData.operateDate = res.operateDate
if (!res.jzNumber) {
this.formData = JSON.parse(JSON.stringify(this.originForm))
this.confirmData.patientName = this.patientDetail.patientName
const userData = JSON.parse(window.sessionStorage.getItem('qg-userData'))
this.confirmData.operator = userData.signImgBase
this.confirmData.operateDate = this.$moment().format('YYYY-MM-DD')
}
})
},
// id
async queryProject() {

Loading…
Cancel
Save