Browse Source

peter

master
pengqiang 1 year ago
parent
commit
5d7e93ef18
  1. 2
      src/components/360View/afterPart/index-copy.vue
  2. 2
      src/components/360View/afterPart/index.vue
  3. 2
      src/components/360View/forePart/index-copy.vue
  4. 2
      src/components/360View/forePart/index.vue
  5. 2
      src/components/360View/knowledge/electronInfo.vue
  6. 2
      src/components/360View/medicalRecord/outPatientRecord/afterForm.vue
  7. 4
      src/components/360View/medicalRecord/outPatientRecord/foreForm.vue
  8. 2
      src/components/360View/medicalRecord/outPatientRecord/leftFormList.vue
  9. 2
      src/components/files/index.vue
  10. 2
      src/components/patient-search/index.vue
  11. 2
      src/page-subspecialty/views/modules/optometryManagement/seeDoctor/historyRecord.vue
  12. 2
      src/page-subspecialty/views/modules/scientificManagement/sys/project-add-or-update.vue
  13. 2
      src/page-subspecialty/views/modules/scientificManagement/sys/project-review.vue

2
src/components/360View/afterPart/index-copy.vue

@ -610,7 +610,7 @@ export default {
})
},
queryTree(type) {
const baseUrl = window.SITE_CONFIG['apiURL'] + '/treetag/findTree'
const baseUrl = process.env.VUE_APP_LOGIN_URL + '/treetag/findTree'
return new Promise((resolve, reject) => {
axios.defaults.headers.common['token'] = window.sessionStorage.getItem('xa-token') || ''
axios.get(baseUrl, {

2
src/components/360View/afterPart/index.vue

@ -606,7 +606,7 @@ export default {
})
},
queryTree(type) {
const baseUrl = window.SITE_CONFIG['apiURL'] + '/treetag/findTree'
const baseUrl = process.env.VUE_APP_LOGIN_URL + '/treetag/findTree'
return new Promise((resolve, reject) => {
axios.defaults.headers.common['token'] = window.sessionStorage.getItem('xa-token') || ''
axios.get(baseUrl, {

2
src/components/360View/forePart/index-copy.vue

@ -992,7 +992,7 @@ export default {
},
//
queryTree(type) {
const baseUrl = window.SITE_CONFIG['apiURL'] + '/treetag/findTree'
const baseUrl = process.env.VUE_APP_LOGIN_URL + '/treetag/findTree'
return new Promise((resolve, reject) => {
axios.defaults.headers.common['token'] = window.sessionStorage.getItem('xa-token') || ''
axios.get(baseUrl, {

2
src/components/360View/forePart/index.vue

@ -809,7 +809,7 @@ export default {
},
//
queryTree(type) {
const baseUrl = window.SITE_CONFIG['apiURL'] + '/treetag/findTree'
const baseUrl = process.env.VUE_APP_LOGIN_URL + '/treetag/findTree'
return new Promise((resolve, reject) => {
axios.defaults.headers.common['token'] = window.sessionStorage.getItem('xa-token') || ''
axios.get(baseUrl, {

2
src/components/360View/knowledge/electronInfo.vue

@ -85,7 +85,7 @@ export default {
name: 'ElectronInfo',
data() {
return {
uploadUrl: window.SITE_CONFIG['apiURL'] + '/bd/knowledgeTree/uploadFiles',
uploadUrl: process.env.VUE_APP_LOGIN_URL + '/bd/knowledgeTree/uploadFiles',
uploadData: {
treeId: ''
},

2
src/components/360View/medicalRecord/outPatientRecord/afterForm.vue

@ -205,7 +205,7 @@ export default {
methods: {
//
queryTree(type) {
const baseUrl = window.SITE_CONFIG['apiURL'] + '/treetag/findTree'
const baseUrl = process.env.VUE_APP_LOGIN_URL + '/treetag/findTree'
return new Promise((resolve, reject) => {
axios.defaults.headers.common['token'] = window.sessionStorage.getItem('xa-token') || ''
axios.get(baseUrl, {

4
src/components/360View/medicalRecord/outPatientRecord/foreForm.vue

@ -567,7 +567,9 @@ export default {
},
//
queryTree(type) {
const baseUrl = window.SITE_CONFIG['apiURL'] + '/treetag/findTree'
console.log(process.env.VUE_APP_LOGIN_URL)
// const baseUrl = process.env.VUE_APP_LOGIN_URL + '/treetag/findTree'
const baseUrl = process.env.VUE_APP_LOGIN_URL + '/treetag/findTree'
return new Promise((resolve, reject) => {
axios.defaults.headers.common['token'] = window.sessionStorage.getItem('xa-token') || ''
axios.get(baseUrl, {

2
src/components/360View/medicalRecord/outPatientRecord/leftFormList.vue

@ -14,7 +14,7 @@
<img v-if="!formList.length" src="@/assets/img/nodata.png" alt="" class="nodata">
</div>
<div class="content-left-bottom">
<div class="commonForm-text ">
<div class="commonForm-text">
<span>常用表单</span>
<span class="line" />
<el-checkbox v-model="defaultChecked">默认新建今日</el-checkbox>

2
src/components/files/index.vue

@ -32,7 +32,7 @@ export default {
return val.substring(0, val.lastIndexOf('-'))
},
f_url(val) {
return `${window.SITE_CONFIG['apiURL']}/upload/${val}`
return `${process.env.VUE_APP_LOGIN_URL}/upload/${val}`
}
},
props: {

2
src/components/patient-search/index.vue

@ -103,7 +103,7 @@ export default {
},
data() {
return {
uploadUrl: window.SITE_CONFIG['apiURL'] + '/patient/data/searchByExcel',
uploadUrl: process.env.VUE_APP_LOGIN_URL + '/patient/data/searchByExcel',
headers: {
token: window.sessionStorage.getItem('xa-token')
},

2
src/page-subspecialty/views/modules/optometryManagement/seeDoctor/historyRecord.vue

@ -49,7 +49,7 @@ export default {
data() {
return {
// uploadUrl: 'http://10.152.66.167:8383/huimu-admin/history/archive',
uploadUrl: window.SITE_CONFIG['apiURL'] + '/history/archive',
uploadUrl: process.env.VUE_APP_LOGIN_URL + '/history/archive',
uploadData: {
patientId: this.patientId
},

2
src/page-subspecialty/views/modules/scientificManagement/sys/project-add-or-update.vue

@ -195,7 +195,7 @@ export default {
],
projectType: [
{ required: true, message: '请选择性质', trigger: 'change' }
]
],
// drugApprovalNumber: [{ required: true, validator: validateUploadFile, trigger: 'blur' }]
}
}

2
src/page-subspecialty/views/modules/scientificManagement/sys/project-review.vue

@ -207,7 +207,7 @@ export default {
}[val]
}
// url(val) {
// return `${window.SITE_CONFIG['apiURL']}/upload/downLoad?relateId=${val}&token=${Cookies.get('token')}`
// return `${process.env.VUE_APP_LOGIN_URL}/upload/downLoad?relateId=${val}&token=${Cookies.get('token')}`
// }
},
components: { fileShow, kpiSelect },

Loading…
Cancel
Save