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

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

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

Loading…
Cancel
Save