Compare commits

..

No commits in common. "fba21030ea58c2e209abaff1d6a02dc23cb3fe8c" and "aef3c8e924ea7b53d50421bc684940c97718bb2f" have entirely different histories.

2 changed files with 18 additions and 92 deletions

View File

@ -59,7 +59,7 @@
clearable clearable
/> />
</el-form-item> </el-form-item>
<el-form-item label="是否可以连接互联网: " v-hasPermi="['system:hospital:connectInternet']"> <el-form-item label="是否可以连接互联网: ">
<el-switch <el-switch
v-model="hospital.IsCanConnectInternet" v-model="hospital.IsCanConnectInternet"
active-color="#13ce66" active-color="#13ce66"

View File

@ -252,28 +252,6 @@
sortable="custom" sortable="custom"
show-overflow-tooltip show-overflow-tooltip
/> />
<!-- 打包状态 -->
<el-table-column
prop="PackState"
:label="$t('trials:hirVisit:table:PackState')"
show-overflow-tooltip
sortable="custom"
>
<template slot-scope="scope">
<el-tag
:type="
Number(scope.row.PackState) === 0
? 'danger'
: Number(scope.row.PackState) === 1
? 'warning'
: 'success'
"
>{{
$fd("PackState", Number(scope.row.PackState) || 0)
}}</el-tag
>
</template>
</el-table-column>
<!-- 申请状态 --> <!-- 申请状态 -->
<!-- <el-table-column <!-- <el-table-column
v-if="!hasPermi(['role:air'])" v-if="!hasPermi(['role:air'])"
@ -305,7 +283,7 @@
<!--操作--> <!--操作-->
<el-table-column <el-table-column
:label="$t('common:action:action')" :label="$t('common:action:action')"
min-width="140" min-width="100"
fixed="right" fixed="right"
v-if=" v-if="
hasPermi([ hasPermi([
@ -334,23 +312,22 @@
icon="el-icon-collection" icon="el-icon-collection"
@click="openApplyReReading(scope.row)" @click="openApplyReReading(scope.row)"
/> />
<!--评估报告--> <!-- 下载报告 -->
<el-button <!-- <el-button
circle v-hasPermi="['trials:readTask:report']"
v-hasPermi="['trials:readTask:report']" circle
icon="el-icon-document" :title="$t('trials:reading:button:uploadReport')"
:title="$t('trials:trials-panel:hirVisit:EvaluationReport')" icon="el-icon-collection"
@click="handleCommand('showReport', scope.row)" @click="handleReadImage(scope.row)"
:disabled="scope.row.ReadingTaskState !== 2" /> -->
/> <!-- 审核记录 -->
<!--下载影像--> <!-- <el-button
<el-button v-hasPermi="['trials:readTask:auditRecord']"
circle circle
v-hasPermi="['trials:readTask:report']" :title="$t('trials:auditRecord:table:auditRecords')"
icon="el-icon-download" icon="el-icon-collection"
:title="$t('trials:reading:button:uploadImages')" @click="handleReadImage(scope.row)"
@click="handleCommand('downloadImage', scope.row)" /> -->
/>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -654,8 +631,6 @@ import BaseContainer from "@/components/BaseContainer";
import Pagination from "@/components/Pagination"; import Pagination from "@/components/Pagination";
import ChatForm from "./components/ChatForm"; import ChatForm from "./components/ChatForm";
import { getToken } from "@/utils/auth"; import { getToken } from "@/utils/auth";
import { showReadReport } from "@/api/export";
import { downloadImage } from "@/utils/uploadZip.js";
const searchDataDefault = () => { const searchDataDefault = () => {
return { return {
SubjectCode: "", SubjectCode: "",
@ -719,7 +694,6 @@ export default {
TrialReadingCriterionId: "0", TrialReadingCriterionId: "0",
openWindow: null, openWindow: null,
auditRecordVisible: false, auditRecordVisible: false,
reportFlag: {},
}; };
}, },
watch: { watch: {
@ -739,54 +713,6 @@ export default {
} }
}, },
methods: { methods: {
//
handleCommand(command, item) {
this[command](item);
},
//
async showReport(item) {
if (this.reportFlag[item.Id]) return;
let data = {
VisitTaskId: item.Id,
};
try {
if (!this.reportFlag.hasOwnProperty(item.Id)) {
this.$set(this.reportFlag, item.Id, true);
}
if (!this.reportFlag[item.Id]) {
this.reportFlag[item.Id] = true;
}
let res = await showReadReport(data);
if (res.IsSuccess) {
let a = document.createElement("a");
let href = this.OSSclientConfig.basePath + res.Result;
let fileName =
res.Result.split("/")[res.Result.split("/").length - 1];
a.download = fileName;
a.href = href;
a.click();
URL.revokeObjectURL(href);
this.$nextTick(() => {
a = null;
href = null;
});
}
this.reportFlag[item.Id] = false;
} catch (err) {
this.reportFlag[item.Id] = false;
console.log(err);
}
},
//
async downloadImage(item) {
let res = await downloadImage(
this.$route.query.trialId,
item.SourceSubjectVisitId
);
if (res) {
item.PackState = res;
}
},
getTrialCriterionList() { getTrialCriterionList() {
getTrialCriterionList(this.trialId) getTrialCriterionList(this.trialId)
.then((res) => { .then((res) => {