Browse Source

0307

master
领悟 4 months ago
parent
commit
59de2fe61a
  1. 5
      src/views/thrombolysis/components/throm-before3.vue
  2. 4
      src/views/thrombolysis/components/throm-interfere-informed.vue

5
src/views/thrombolysis/components/throm-before3.vue

@ -8,7 +8,7 @@
<div class="image-container" v-else-if="activeTabKey == 'ct'">
<template v-if="fileList && fileList.length">
<div class="image-box" v-for="(img, index) in fileList">
<img :src="'http://116.204.114.73:20007'+ img" :alt="'ct'+index" />
<img :src="imgUrl+ img" :alt="'ct'+index" />
</div>
</template>
@ -33,7 +33,7 @@
mapState
} from 'vuex';
import {
apiUrl
apiUrl, imgUrl
} from '@/config/setting.js';
import emptyImage from '@/assets/images/slice/empty.png'
import ThromInterfereImageDcm from './throm-interfere-image-dcm.vue'
@ -47,6 +47,7 @@
data() {
return {
apiUrl,
imgUrl,
emptyImage,
activeTabKey: 'tab1',
previewVisible: false,

4
src/views/thrombolysis/components/throm-interfere-informed.vue

@ -276,7 +276,7 @@
created() {
// console.log('book', this.book)
this.queryVideo()
this.content = this.book.find((item) => item.type === 0)?.content || '';
this.content = this.book.find((item) => item.type === 1)?.content || '';
// console.log(this.content);
},
mounted() {
@ -397,7 +397,7 @@
if (!firstAidId) return this.$message.error('缺少急救');
let res = await queryConsentResult({
firstAidId,
type: 0,
type: 1,
});
const {
code,

Loading…
Cancel
Save