zoujiandong 89336f5621 7.22
2025-07-22 09:40:54 +08:00

976 lines
34 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"use strict";
const common_vendor = require("../../common/vendor.js");
const common_assets = require("../../common/assets.js");
const api_api = require("../../api/api.js");
const uni_modules_svEditor_components_common_utils = require("../../uni_modules/sv-editor/components/common/utils.js");
if (!Array) {
const _easycom_u_icon2 = common_vendor.resolveComponent("u-icon");
const _easycom_up__textarea2 = common_vendor.resolveComponent("up--textarea");
const _easycom_up_icon2 = common_vendor.resolveComponent("up-icon");
const _easycom_up__image2 = common_vendor.resolveComponent("up--image");
const _easycom_up_input2 = common_vendor.resolveComponent("up-input");
const _easycom_up_popup2 = common_vendor.resolveComponent("up-popup");
const _easycom_up_empty2 = common_vendor.resolveComponent("up-empty");
const _easycom_up_overlay2 = common_vendor.resolveComponent("up-overlay");
const _easycom_up_radio2 = common_vendor.resolveComponent("up-radio");
const _easycom_up_radio_group2 = common_vendor.resolveComponent("up-radio-group");
(_easycom_u_icon2 + _easycom_up__textarea2 + _easycom_up_icon2 + _easycom_up__image2 + _easycom_up_input2 + _easycom_up_popup2 + _easycom_up_empty2 + _easycom_up_overlay2 + _easycom_up_radio2 + _easycom_up_radio_group2)();
}
const _easycom_u_icon = () => "../../node-modules/uview-plus/components/u-icon/u-icon.js";
const _easycom_up__textarea = () => "../../node-modules/uview-plus/components/u--textarea/u--textarea.js";
const _easycom_up_icon = () => "../../node-modules/uview-plus/components/u-icon/u-icon.js";
const _easycom_up__image = () => "../../node-modules/uview-plus/components/u--image/u--image.js";
const _easycom_up_input = () => "../../node-modules/uview-plus/components/u-input/u-input.js";
const _easycom_up_popup = () => "../../node-modules/uview-plus/components/u-popup/u-popup.js";
const _easycom_up_empty = () => "../../node-modules/uview-plus/components/u-empty/u-empty.js";
const _easycom_up_overlay = () => "../../node-modules/uview-plus/components/u-overlay/u-overlay.js";
const _easycom_up_radio = () => "../../node-modules/uview-plus/components/u-radio/u-radio.js";
const _easycom_up_radio_group = () => "../../node-modules/uview-plus/components/u-radio-group/u-radio-group.js";
if (!Math) {
(_easycom_u_icon + _easycom_up__textarea + svEditor + _easycom_up_icon + _easycom_up__image + _easycom_up_input + _easycom_up_popup + _easycom_up_empty + _easycom_up_overlay + _easycom_up_radio + _easycom_up_radio_group)();
}
const svEditor = () => "../../uni_modules/sv-editor/components/sv-editor/sv-editor.js";
const _sfc_main = {
__name: "publish",
setup(__props) {
const isLock = common_vendor.ref(false);
const isFlag = common_vendor.ref(false);
const delId = common_vendor.ref("");
const showModal = common_vendor.ref(false);
const delType = common_vendor.ref("delDraft");
const showCase = common_vendor.ref(false);
const caseValue1 = common_vendor.ref("");
const caseValue2 = common_vendor.ref("");
const caseValue3 = common_vendor.ref("");
const level = common_vendor.ref(1);
const isPublish = common_vendor.ref(false);
const exchange_id = common_vendor.ref("");
const labelObj = common_vendor.reactive({
list1: [],
list2: [],
list3: []
});
const bottomHeight = common_vendor.ref(200);
const form = common_vendor.reactive({
exchange_title: "",
exchange_content: "",
exchange_summary: "",
case_exchange_vote: {},
case_exchange_label: []
});
const voteData = common_vendor.reactive({
vote_title: "",
valid_day: 7,
case_exchange_vote_option: [
{
option_value: ""
}
]
});
common_vendor.ref("");
const showVote = common_vendor.ref(false);
const showDraft = common_vendor.ref(false);
const showTitle = common_vendor.ref(false);
const draftList = common_vendor.ref([]);
const imgList = common_vendor.ref([]);
common_vendor.ref([]);
const editorCtx = common_vendor.ref(null);
const editorCtxResult = common_vendor.ref(null);
const isFocusInfo = common_vendor.ref(false);
const isFocusResult = common_vendor.ref(false);
const labelList = common_vendor.ref([]);
const goBack = () => {
common_vendor.index.navigateBack({
delta: 1
});
};
const openDraftList = () => {
getDraftList();
showDraft.value = true;
};
const closeCase = () => {
showCase.value = false;
};
const epaste = (e) => {
common_vendor.index.__f__("log", "at pages/publish/publish.vue:541", e);
};
const addOption = () => {
voteData.case_exchange_vote_option.push({
option_value: ""
});
};
const delOption = (index) => {
voteData.case_exchange_vote_option.splice(index, 1);
};
const changeDay = (type) => {
if (type === "minus") {
if (voteData.valid_day <= 1)
return;
voteData.valid_day--;
} else if (type === "plus") {
voteData.valid_day++;
}
};
const clearVote = () => {
voteData.vote_title = "";
voteData.case_exchange_vote_option = [
{
option_value: ""
}
];
voteData.valid_day = 7;
form.case_exchange_vote.vote_title = "";
form.case_exchange_vote.case_exchange_vote_option = [
{
option_value: ""
}
];
form.case_exchange_vote.valid_day = 7;
};
const saveVote = () => {
if (voteData.vote_title == "") {
common_vendor.index.showToast({
title: "请输入投票标题",
icon: "none"
});
return false;
}
if (voteData.vote_title.length > 20) {
common_vendor.index.showToast({
title: "投票标题不能超过20个字符",
icon: "none"
});
return false;
}
if (voteData.case_exchange_vote_option.length == 0) {
common_vendor.index.showToast({
title: "请添加投票选项",
icon: "none"
});
return false;
}
form.case_exchange_vote = voteData;
showVote.value = false;
};
const fromatDay = (value) => {
var date = /* @__PURE__ */ new Date();
var year = date.getFullYear();
let Y = common_vendor.dayjs().format("YYYY");
if (year == Y) {
return common_vendor.dayjs(value).format("MM-DD");
} else {
return common_vendor.dayjs(value).format("YYYY-MM-DD");
}
};
const fromatImg = (val) => {
if (val) {
return val.replace(/\<img/gi, '<img class="imgstyle"');
} else {
return "";
}
};
const ready = (e) => {
common_vendor.index.__f__("log", "at pages/publish/publish.vue:645", e);
editorCtx.value = e;
let html = "<p>【患者信息】:</p><br/><p>【主诉】:</p><br/><p>【现病史及既往史】:</p><br/><p>【检查】:</p><br/><p>【临床诊断】:</p><br/><p>【治疗经过及结果】:</p><br/><br/>";
editorCtx.value.initHtml(html);
common_vendor.index.hideKeyboard();
common_vendor.index.pageScrollTo({
scrollTop: 0,
selector: "#form"
// })
});
};
const readyResult = (e) => {
editorCtxResult.value = e;
setTimeout(() => {
if (exchange_id.value) {
getExchangeDetail(exchange_id.value);
}
});
};
const clearMuBan = () => {
common_vendor.index.__f__("log", "at pages/publish/publish.vue:671", "清空模板");
editorCtx.value.initHtml("");
};
const focusInfo = () => {
isFocusInfo.value = true;
};
const blurInfo = () => {
isFocusInfo.value = false;
};
const focusResult = () => {
isFocusResult.value = true;
};
const closeVote = () => {
showVote.value = false;
};
const openVote = () => {
showVote.value = true;
};
const closeDraft = () => {
showDraft.value = false;
};
const openDraft = () => {
showDraft.value = true;
};
const closeTitle = () => {
showTitle.value = false;
};
const openTitle = () => {
showTitle.value = true;
};
const alertTitle = () => {
if (isFocusInfo.value) {
showTitle.value = true;
}
};
const pFun = (files) => {
common_vendor.index.showLoading({
title: "正在上传图片...",
mask: true
});
let promiseFun = [];
for (let i = 0; i < files.length; i++) {
promiseFun.push(handleUpload(files[i]));
}
Promise.all(promiseFun).then((res) => {
common_vendor.index.hideLoading();
});
};
const saveDraft = async () => {
if (isLock.value)
return false;
isLock.value = true;
const res = await editorCtx.value.getLastContent();
form.exchange_content = res.html;
const resResult = await editorCtxResult.value.getLastContent();
form.exchange_summary = resResult.html;
if (labelList.value.length > 0) {
form.case_exchange_label = labelList.value;
}
api_api.api.saveDraft(form).then((res2) => {
isLock.value = false;
common_vendor.index.showToast({
title: "保存成功",
icon: "none"
});
getDraftList();
});
};
const getExchangeDetail = (id) => {
api_api.api.getExchangeDetail(id).then((res) => {
common_vendor.index.__f__("log", "at pages/publish/publish.vue:772", res.data.data);
let {
exchange_content,
exchange_title,
exchange_label,
exchange_summary,
exchange_vote
} = res.data.data;
editorCtx.value.initHtml(exchange_content, async (videoUrl) => {
let res2;
const fox = "https://cn.bing.com//th?id=OHR.FlamingosNamibia_ZH-CN3639748956_1920x1080.jpg";
res2 = await editorCtx.value.createCoverThumbnail(fox);
return res2;
});
form.exchange_content = exchange_content;
form.exchange_title = exchange_title;
form.case_exchange_label = exchange_label;
labelList.value = exchange_label;
form.exchange_summary = exchange_summary;
form.case_exchange_vote = exchange_vote;
editorCtxResult.value.initHtml(exchange_summary, async (videoUrl) => {
let res2;
const fox = "https://cn.bing.com//th?id=OHR.FlamingosNamibia_ZH-CN3639748956_1920x1080.jpg";
res2 = await editorCtxResult.value.createCoverThumbnail(fox);
return res2;
});
Object.assign(voteData, exchange_vote);
});
};
const editDraft = (index) => {
let draft = draftList.value[index];
let {
exchange_content,
exchange_title,
exchange_label,
exchange_summary,
exchange_vote
} = draft;
editorCtx.value.initHtml(exchange_content);
form.exchange_content = exchange_content;
form.exchange_title = exchange_title;
form.case_exchange_label = exchange_label;
labelList.value = exchange_label;
form.exchange_summary = exchange_summary;
form.case_exchange_vote = exchange_vote;
editorCtxResult.value.initHtml(exchange_summary);
Object.assign(voteData, exchange_vote);
showDraft.value = false;
};
const willDelDraft = (id) => {
delId.value = id;
delType.value = "delDraft";
showModal.value = true;
};
const confirmDel = () => {
showModal.value = false;
common_vendor.index.__f__("log", "at pages/publish/publish.vue:840", delType.value);
if (delType.value == "delDraft") {
delDraft(delId.value);
} else if (delType.value == "saveDraft") {
saveDraft();
}
};
const cancelDel = () => {
showModal.value = false;
if (delType.value == "saveDraft") {
goBack();
}
};
const delDraft = (id) => {
api_api.api.delDraft(id).then((res) => {
common_vendor.index.showToast({
title: "删除成功",
icon: "none"
});
});
getDraftList();
};
const alertSave = async () => {
if (isPublish.value || exchange_id.value) {
goBack();
} else {
const res = await editorCtx.value.getLastContent();
const initInfo = "<p>【患者信息】:</p><br/><p>【主诉】:</p><br/><p>【现病史及既往史】:</p><br/><p>【检查】:</p><br/><p>【临床诊断】:</p><br/><p>【治疗经过及结果】:</p>";
const resContent = await editorCtxResult.value.getLastContent();
if (form.exchange_title || res.html != initInfo || resContent.text || form.case_exchange_vote && form.case_exchange_vote.vote_title && form.case_exchange_label && form.case_exchange_label.length > 0) {
delType.value = "saveDraft";
showModal.value = true;
} else {
goBack();
}
}
};
const publish = async () => {
const initInfo = "<p>【患者信息】:</p><br/><p>【主诉】:</p><br/><p>【现病史及既往史】:</p><br/><p>【检查】:</p><br/><p>【临床诊断】:</p><br/><p>【治疗经过及结果】:</p>";
if (form.exchange_title == "") {
common_vendor.index.showToast({
title: "请输入标题",
icon: "none"
});
return false;
}
const res = await editorCtx.value.getLastContent();
let html = editorCtx.value.exportHtml(res.html);
if (html == initInfo) {
common_vendor.index.showToast({
title: "请编辑病例信息",
icon: "none"
});
return false;
}
if (!(form.case_exchange_vote && form.case_exchange_vote.vote_title)) {
delete form.case_exchange_vote;
}
if (!form.case_exchange_label || form.case_exchange_label && form.case_exchange_label.length == 0) {
delete form.case_exchange_label;
}
form.case_exchange_label = labelList.value;
if (isLock.value)
return false;
isFlag.value = true;
form.exchange_content = html;
const resContent = await editorCtxResult.value.getLastContent();
let reshtml = editorCtxResult.value.exportHtml(resContent.html);
form.exchange_summary = reshtml == "<p><br></p>" ? "" : reshtml;
api_api.api.addExchange(form).then((res2) => {
common_vendor.index.showToast({
title: "发布成功",
icon: "none",
duration: 2e3
});
isFlag.value = false;
isPublish.value = true;
common_vendor.index.navigateBack();
});
};
const handleUpload = (file) => {
api_api.api.getOss({
scene: 1
}).then((rep) => {
let result = rep.data;
if (result.code == 200) {
let { access_id, dir, policy, signature, host } = result.data;
let time = common_vendor.dayjs().format("YYYYMMDDHHmmss");
let random = generateRandomNumber();
let filename = time + random;
let imgType = "." + getImageFormat(file);
return new Promise((resolve, reject) => {
common_vendor.index.uploadFile({
url: host,
// 仅为示例,非真实的接口地址
filePath: file,
name: "file",
formData: {
OSSAccessKeyId: access_id,
policy,
key: dir + time + random + imgType,
signature
},
success(res) {
if (res.statusCode === 204) {
let url = host + "/" + dir + filename + imgType;
imgList.value.push(url);
uni_modules_svEditor_components_common_utils.addImage([url]);
}
},
fail: (err) => {
common_vendor.index.__f__("log", "at pages/publish/publish.vue:969", err);
}
});
});
}
});
};
const insertWord = (word) => {
uni_modules_svEditor_components_common_utils.addText(word);
showTitle.value = false;
};
const insertAllWord = () => {
let word = [
"患者信息",
"主诉",
"现病史及既往史:",
"检查",
"临床诊断",
"治疗经过及结果"
];
word.forEach((item) => {
uni_modules_svEditor_components_common_utils.addText(item);
});
showTitle.value = false;
};
const generateRandomNumber = () => {
let randomNumber = Math.floor(1e3 + Math.random() * 9e3);
return randomNumber;
};
const getImageFormat = (imageUrl) => {
common_vendor.index.__f__("log", "at pages/publish/publish.vue:999", imageUrl);
const lastDotIndex = imageUrl.lastIndexOf(".");
if (lastDotIndex !== -1) {
return imageUrl.substring(lastDotIndex + 1);
}
return "unknown";
};
const insertImage = (file) => {
if (!(!isFocusInfo.value && !isFocusResult.value)) {
common_vendor.index.chooseImage({
count: 9,
//默认9
sizeType: ["original", "compressed"],
//可以指定是原图还是压缩图,默认二者都有
sourceType: ["album"],
//从相册选择
extension: [".jpg", ".png", ".jpeg"],
success: function(res) {
pFun(res.tempFilePaths);
}
});
}
};
const insertVideo = (file) => {
if (!(!isFocusInfo.value && !isFocusResult.value)) {
common_vendor.index.chooseVideo({
count: 5,
//默认9//可以指定是原图还是压缩图,默认二者都有
sourceType: ["album"],
//从相册选择
extension: [".mp4", ".webm", ".ogg"],
success: function(res) {
common_vendor.index.__f__("log", "at pages/publish/publish.vue:1026", res.tempFilePath);
HandleAddVideo(res.tempFilePath);
}
});
}
};
const HandleAddVideo = async (file) => {
common_vendor.index.showLoading({
title: "正在上传视频...",
mask: true
});
const videos = await uni_modules_svEditor_components_common_utils.addVideo(async (editorCtx2) => {
return new Promise((resolve) => {
api_api.api.getOss({
scene: 2
}).then((rep) => {
let result = rep.data;
if (result.code == 200) {
let { access_id, dir, policy, signature, host } = result.data;
let time = common_vendor.dayjs().format("YYYYMMDDHHmmss");
let random = generateRandomNumber();
let filename = time + random;
let imgType = "." + getImageFormat(file);
return new Promise((res, reject) => {
common_vendor.index.uploadFile({
url: host,
// 仅为示例,非真实的接口地址
filePath: file,
name: "file",
formData: {
OSSAccessKeyId: access_id,
policy,
key: dir + time + random + imgType,
signature
},
async success(res2) {
if (res2.statusCode === 204) {
let url = host + "/" + dir + filename + imgType;
common_vendor.index.__f__("log", "at pages/publish/publish.vue:1068", editorCtx2);
let imgUrl = "https://cn.bing.com//th?id=OHR.FlamingosNamibia_ZH-CN3639748956_1920x1080.jpg";
const fileThumbnail = await editorCtx2.createCoverThumbnail(
imgUrl
);
resolve([
{
videoUrl: url,
videoImg: fileThumbnail
}
]);
}
},
fail: (err) => {
common_vendor.index.__f__("log", "at pages/publish/publish.vue:1083", err);
}
});
});
}
});
});
});
if (videos) {
common_vendor.index.showLoading();
common_vendor.index.showToast({ title: "添加视频成功", icon: "success" });
} else {
common_vendor.index.showToast({ title: "添加视频失败", icon: "error" });
}
};
const getDraftList = () => {
api_api.api.getDraftList().then((res) => {
draftList.value = res.data.data.data;
});
};
const getCaseLabel = (lev, pid = 0) => {
api_api.api.getCaseLabel({
pId: pid
}).then((res) => {
if (lev == 1) {
labelObj.list1 = res.data.data;
} else if (lev == 2) {
labelObj.list2 = res.data.data;
} else if (lev == 3) {
labelObj.list3 = res.data.data;
}
level.value = lev;
});
};
const confirmCase = () => {
if (level.value == 1 && caseValue1.value == "") {
common_vendor.index.showToast({ title: "请选择疾病", icon: "none" });
return false;
}
if (level.value == 2 && caseValue2.value == "") {
common_vendor.index.showToast({ title: "请选择疾病", icon: "none" });
return false;
}
if (level.value == 3 && caseValue3.value == "") {
common_vendor.index.showToast({ title: "请选择疾病", icon: "none" });
return false;
}
showCase.value = false;
if (level.value == 1) {
let label = labelObj.list1.find((item) => item.app_iden == caseValue1.value);
common_vendor.index.__f__("log", "at pages/publish/publish.vue:1133", label);
labelList.value.push({
app_iden: label.app_iden,
label_name: label.label_name
});
}
if (level.value == 2) {
let label = labelObj.list2.find((item) => item.app_iden == caseValue2.value);
labelList.value.push({
app_iden: label.app_iden,
label_name: label.label_name
});
}
if (level.value == 3) {
let label = labelObj.list3.find((item) => item.app_iden == caseValue3.value);
labelList.value.push({
app_iden: label.app_iden,
label_name: label.label_name
});
}
labelList.value = labelList.value.filter((item, index) => labelList.value.findIndex((i) => i.app_iden === item.app_iden) === index);
caseValue1.value = "";
caseValue2.value = "";
caseValue3.value = "";
};
const continueCase = () => {
if (level.value == 1 && caseValue1.value == "") {
common_vendor.index.showToast({ title: "请选择疾病", icon: "none" });
return false;
}
if (level.value == 2 && caseValue2.value == "") {
common_vendor.index.showToast({ title: "请选择疾病", icon: "none" });
return false;
}
if (level.value == 3 && caseValue3.value == "") {
common_vendor.index.showToast({ title: "请选择疾病", icon: "none" });
return false;
}
if (level.value == 1) {
getCaseLabel(2, caseValue1.value);
} else if (level.value == 2) {
getCaseLabel(3, caseValue2.value);
}
};
const delLabel = (index) => {
labelList.value.splice(index, 1);
};
const openLabelPop = () => {
if (labelList.value.length >= 5) {
common_vendor.index.showToast({ title: "最多添加5个标签", icon: "none" });
return false;
}
showCase.value = true;
getCaseLabel(1, 0);
};
common_vendor.onLoad((optoions) => {
if (optoions.exchange_id) {
exchange_id.value = optoions.exchange_id;
}
});
return (_ctx, _cache) => {
return common_vendor.e({
a: common_vendor.p({
name: "arrow-left",
color: "#000",
size: "24"
}),
b: common_vendor.o(alertSave),
c: common_vendor.o(($event) => form.exchange_title = $event),
d: common_vendor.p({
autoHeight: true,
placeholder: "输入标题,可包含患者信息、主诉",
modelValue: form.exchange_title
}),
e: common_vendor.p({
name: "trash",
color: "#6B7280",
size: "18"
}),
f: common_vendor.o(clearMuBan),
g: common_vendor.o(ready),
h: common_vendor.o(focusInfo),
i: common_vendor.o(blurInfo),
j: common_vendor.o(epaste),
k: common_vendor.p({
placeholder: "患者基本情况,检查结果,诊疗图片或视频",
eid: "editor-id",
pasteMode: "origin"
}),
l: common_vendor.o(readyResult),
m: common_vendor.o(focusResult),
n: common_vendor.o(focusResult),
o: common_vendor.p({
placeholder: "分享经验和心得,如:诊断与鉴别诊断易错点,治疗过程难点,病例的相关知识总结及讨论等",
eid: "editorResult"
}),
p: common_vendor.f(labelList.value, (item, index, i0) => {
return {
a: common_vendor.t(item.label_name),
b: "bfce3555-5-" + i0,
c: common_vendor.o(($event) => delLabel(index), item.app_iden),
d: item.app_iden
};
}),
q: common_vendor.p({
name: "close-circle",
color: "#3CC7C0",
size: "20"
}),
r: common_vendor.p({
name: "plus",
color: "#3CC7C0",
size: "16"
}),
s: common_vendor.o(openLabelPop),
t: bottomHeight.value + "rpx",
v: common_vendor.p({
src: common_vendor.unref(common_assets.photoImg),
width: "32rpx",
height: "32rpx"
}),
w: common_vendor.o(insertImage),
x: !isFocusInfo.value && !isFocusResult.value ? 1 : "",
y: common_vendor.p({
src: common_vendor.unref(common_assets.videoImg$1),
width: "32rpx",
height: "32rpx"
}),
z: common_vendor.o(insertVideo),
A: !isFocusInfo.value && !isFocusResult.value ? 1 : "",
B: common_vendor.p({
src: common_vendor.unref(common_assets.addImg),
width: "32rpx",
height: "32rpx"
}),
C: !isFocusInfo.value ? 1 : "",
D: common_vendor.o(alertTitle),
E: common_vendor.o(openDraftList),
F: common_vendor.p({
src: common_vendor.unref(common_assets.voteImg),
width: "47rpx",
height: "47rpx"
}),
G: common_vendor.o(($event) => showVote.value = true),
H: common_vendor.o(publish),
I: bottomHeight.value + "rpx",
J: common_vendor.o(closeVote),
K: common_vendor.o(saveVote),
L: common_vendor.o(($event) => voteData.vote_title = $event),
M: common_vendor.p({
placeholder: "请输入投票标题",
border: "surround",
clearable: true,
modelValue: voteData.vote_title
}),
N: common_vendor.f(voteData.case_exchange_vote_option, (item, index, i0) => {
return {
a: "bfce3555-13-" + i0 + ",bfce3555-11",
b: common_vendor.o(($event) => item.option_value = $event, index),
c: common_vendor.p({
placeholder: "输入选项建议少于16个字",
border: "surround",
clearable: true,
modelValue: item.option_value
}),
d: "bfce3555-14-" + i0 + ",bfce3555-11",
e: common_vendor.o(($event) => delOption(index), index),
f: index
};
}),
O: common_vendor.p({
name: "minus-circle",
color: "red",
size: "28"
}),
P: common_vendor.p({
name: "plus",
color: "#4B5563",
size: "18"
}),
Q: common_vendor.o(addOption),
R: common_vendor.p({
name: "minus",
color: "#4B5563",
size: "30rpx",
bold: true
}),
S: common_vendor.o(($event) => changeDay("minus")),
T: common_vendor.t(voteData.valid_day),
U: common_vendor.p({
name: "plus",
color: "#4B5563",
size: "30rpx",
bold: true
}),
V: common_vendor.o(($event) => changeDay("plus")),
W: common_vendor.o(saveVote),
X: common_vendor.o(clearVote),
Y: common_vendor.o(closeVote),
Z: common_vendor.o(openVote),
aa: common_vendor.p({
round: 10,
show: showVote.value,
mode: "bottom"
}),
ab: common_vendor.p({
name: "close",
color: "#4B5563",
size: "20"
}),
ac: common_vendor.o(closeDraft),
ad: draftList.value.length == 0
}, draftList.value.length == 0 ? {
ae: common_vendor.p({
marginTop: "120rpx",
text: "草稿箱为空",
mode: "list",
icon: common_vendor.unref(common_assets.draftImg)
})
} : {}, {
af: draftList.value.length > 0
}, draftList.value.length > 0 ? {
ag: common_vendor.f(draftList.value, (item, index, i0) => {
return common_vendor.e({
a: common_vendor.t(item.exchange_title ? item.exchange_title : "无标题"),
b: item.exchange_content
}, item.exchange_content ? {
c: fromatImg(item.exchange_content)
} : item.exchange_summary ? common_vendor.e({
e: item.exchange_summary
}, item.exchange_summary ? {
f: fromatImg(item.exchange_summary)
} : {}) : item.exchange_label && item.exchange_label.length > 0 ? common_vendor.e({
h: item.exchange_summary
}, item.exchange_summary ? {} : {}, {
i: common_vendor.f(item.exchange_label, (cell, k1, i1) => {
return {
a: common_vendor.t(cell.label_name),
b: cell.label_name
};
})
}) : item.exchange_vote ? {
k: common_vendor.t(item.exchange_vote.vote_title)
} : {}, {
d: item.exchange_summary,
g: item.exchange_label && item.exchange_label.length > 0,
j: item.exchange_vote,
l: common_vendor.t(fromatDay(item.updated_at)),
m: "bfce3555-21-" + i0 + ",bfce3555-18",
n: common_vendor.o(($event) => willDelDraft(item.draft_id), item.draft_id),
o: "bfce3555-22-" + i0 + ",bfce3555-18",
p: common_vendor.o(($event) => editDraft(index), item.draft_id),
q: item.draft_id
});
}),
ah: common_vendor.p({
name: "trash",
color: "#4B5563",
size: "16"
}),
ai: common_vendor.p({
name: "edit-pen",
color: "#fff",
size: "17"
})
} : {}, {
aj: common_vendor.o(closeDraft),
ak: common_vendor.o(openDraft),
al: common_vendor.p({
round: 10,
zIndex: "9",
show: showDraft.value,
mode: "bottom"
}),
am: common_vendor.p({
name: "close",
color: "#4B5563",
size: "20"
}),
an: common_vendor.o(closeTitle),
ao: common_vendor.o(insertAllWord),
ap: common_vendor.p({
name: "plus-circle",
color: "#3CC7C0",
size: "20"
}),
aq: common_vendor.o(insertAllWord),
ar: common_vendor.o(($event) => insertWord("患者信息")),
as: common_vendor.o(($event) => insertWord("主诉")),
at: common_vendor.o(($event) => insertWord("现病史及既往史")),
av: common_vendor.o(($event) => insertWord("检查")),
aw: common_vendor.o(($event) => insertWord("临床诊断")),
ax: common_vendor.o(($event) => insertWord("治疗经过及结果")),
ay: common_vendor.o(closeTitle),
az: common_vendor.o(openTitle),
aA: common_vendor.p({
round: 10,
zIndex: "9",
show: showTitle.value,
mode: "bottom"
}),
aB: delType.value == "delDraft"
}, delType.value == "delDraft" ? {} : delType.value == "saveDraft" ? {} : {}, {
aC: delType.value == "saveDraft",
aD: common_vendor.o(cancelDel),
aE: common_vendor.o(confirmDel),
aF: common_vendor.p({
show: showModal.value,
["mask-click-able"]: true
}),
aG: common_vendor.o(($event) => showCase.value = false),
aH: common_vendor.o(continueCase),
aI: level.value != 3,
aJ: common_vendor.o(confirmCase),
aK: common_vendor.f(labelObj.list1, (item, k0, i0) => {
return {
a: "bfce3555-29-" + i0 + ",bfce3555-28",
b: common_vendor.p({
activeColor: "#3CC7C0 ",
label: item.label_name,
name: item.app_iden
}),
c: item.app_iden
};
}),
aL: common_vendor.o(($event) => caseValue1.value = $event),
aM: common_vendor.p({
iconPlacement: "right",
placement: "column",
modelValue: caseValue1.value
}),
aN: level.value == 1,
aO: common_vendor.f(labelObj.list2, (item, k0, i0) => {
return {
a: "bfce3555-31-" + i0 + ",bfce3555-30",
b: common_vendor.p({
activeColor: "#3CC7C0 ",
label: item.label_name,
name: item.app_iden
}),
c: item.app_iden
};
}),
aP: common_vendor.o(($event) => caseValue2.value = $event),
aQ: common_vendor.p({
iconPlacement: "right",
placement: "column",
modelValue: caseValue2.value
}),
aR: level.value == 2,
aS: common_vendor.f(labelObj.list3, (item, k0, i0) => {
return {
a: "bfce3555-33-" + i0 + ",bfce3555-32",
b: common_vendor.p({
activeColor: "#3CC7C0 ",
label: item.label_name,
name: item.app_iden
}),
c: item.app_iden
};
}),
aT: common_vendor.o(($event) => caseValue3.value = $event),
aU: common_vendor.p({
iconPlacement: "right",
placement: "column",
modelValue: caseValue3.value
}),
aV: level.value == 3,
aW: common_vendor.o(closeCase),
aX: common_vendor.p({
round: 10,
zIndex: "9",
show: showCase.value,
mode: "bottom"
})
});
};
}
};
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-bfce3555"]]);
wx.createPage(MiniProgramPage);
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/publish/publish.js.map