281 lines
9.8 KiB
JavaScript
281 lines
9.8 KiB
JavaScript
"use strict";
|
|
const common_vendor = require("../../common/vendor.js");
|
|
const api_api = require("../../api/api.js");
|
|
const utils_navTo = require("../../utils/navTo.js");
|
|
const common_assets = require("../../common/assets.js");
|
|
if (!Array) {
|
|
const _easycom_up_radio2 = common_vendor.resolveComponent("up-radio");
|
|
const _easycom_up_radio_group2 = common_vendor.resolveComponent("up-radio-group");
|
|
const _easycom_up_dropdown_item2 = common_vendor.resolveComponent("up-dropdown-item");
|
|
const _easycom_up_dropdown2 = common_vendor.resolveComponent("up-dropdown");
|
|
const _easycom_up__image2 = common_vendor.resolveComponent("up--image");
|
|
const _easycom_z_paging2 = common_vendor.resolveComponent("z-paging");
|
|
(_easycom_up_radio2 + _easycom_up_radio_group2 + _easycom_up_dropdown_item2 + _easycom_up_dropdown2 + _easycom_up__image2 + _easycom_z_paging2)();
|
|
}
|
|
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";
|
|
const _easycom_up_dropdown_item = () => "../../node-modules/uview-plus/components/u-dropdown-item/u-dropdown-item.js";
|
|
const _easycom_up_dropdown = () => "../../node-modules/uview-plus/components/u-dropdown/u-dropdown.js";
|
|
const _easycom_up__image = () => "../../node-modules/uview-plus/components/u--image/u--image.js";
|
|
const _easycom_z_paging = () => "../../uni_modules/z-paging/components/z-paging/z-paging.js";
|
|
if (!Math) {
|
|
(navBarSearch + _easycom_up_radio + _easycom_up_radio_group + _easycom_up_dropdown_item + _easycom_up_dropdown + _easycom_up__image + _easycom_z_paging)();
|
|
}
|
|
const navBarSearch = () => "../../components/navBarSearch/navBarSearch.js";
|
|
const _sfc_main = {
|
|
__name: "searchList",
|
|
setup(__props) {
|
|
const paging = common_vendor.ref(null);
|
|
const uDropdownRef = common_vendor.ref(null);
|
|
const dataList = common_vendor.ref([]);
|
|
const total = common_vendor.ref(0);
|
|
common_vendor.ref("");
|
|
const keyWord = common_vendor.ref("");
|
|
common_vendor.ref(true);
|
|
const type = common_vendor.ref("doctor");
|
|
const navName = common_vendor.ref("医生临床病例库");
|
|
const orderFilter = common_vendor.ref("1");
|
|
const dropTitle = common_vendor.ref("更新时间");
|
|
const option = common_vendor.ref([
|
|
{
|
|
label: "更新时间",
|
|
value: "1"
|
|
},
|
|
{
|
|
label: "医生名称",
|
|
value: "2"
|
|
},
|
|
{
|
|
label: "病例数",
|
|
value: "3"
|
|
}
|
|
]);
|
|
const order = common_vendor.reactive({
|
|
push_date: "desc"
|
|
});
|
|
common_vendor.onLoad((options) => {
|
|
if (options.type == "hospital") {
|
|
type.value = "hospital";
|
|
option.value[1].label = "医院名称";
|
|
}
|
|
common_vendor.index.__f__("log", "at pages/searchList/searchList.vue:142", type.value);
|
|
keyWord.value = options.name;
|
|
if (options.name) {
|
|
navName.value = options.name + "临床病例库";
|
|
}
|
|
if ((options.name = "医生") && !options.id) {
|
|
keyWord.value = "";
|
|
}
|
|
if (options.order == "new") {
|
|
order.push_date = "asc";
|
|
}
|
|
if (options.order == "read") {
|
|
order.read_num = "desc";
|
|
}
|
|
});
|
|
common_vendor.onShow(() => {
|
|
var _a;
|
|
(_a = paging.value) == null ? void 0 : _a.refresh();
|
|
});
|
|
const change = (e) => {
|
|
if (e == 1) {
|
|
order.push_date = "desc";
|
|
if (type.value == "hospital") {
|
|
order.hospital_name = "";
|
|
} else {
|
|
order.doctor_name = "";
|
|
}
|
|
order.article_num = "";
|
|
dropTitle.value = "更新时间";
|
|
} else if (e == 2) {
|
|
order.push_date = "";
|
|
order.article_num = "";
|
|
if (type.value == "hospital") {
|
|
order.hospital_name = "asc";
|
|
dropTitle.value = "医院名称";
|
|
} else {
|
|
order.doctor_name = "asc";
|
|
dropTitle.value = "医生名称";
|
|
}
|
|
} else if (e == 3) {
|
|
order.push_date = "";
|
|
if (type.value == "hospital") {
|
|
order.hospital_name = "";
|
|
} else {
|
|
order.doctor_name = "";
|
|
}
|
|
order.article_num = "desc";
|
|
dropTitle.value = "病例数";
|
|
}
|
|
orderFilter.value = e;
|
|
uDropdownRef.value.close();
|
|
paging.value.reload();
|
|
};
|
|
const formatdate = (date) => {
|
|
if (!date)
|
|
return common_vendor.dayjs().format("YYYY-MM-DD");
|
|
return common_vendor.dayjs(date).format("YYYY-MM-DD");
|
|
};
|
|
const searchHospital = async (params) => {
|
|
let searchForm = {
|
|
hospital_name: keyWord.value
|
|
};
|
|
if (!order.push_date) {
|
|
delete order.push_date;
|
|
}
|
|
if (!order.article_num) {
|
|
delete order.article_num;
|
|
}
|
|
if (!order.hospital_name) {
|
|
delete order.hospital_name;
|
|
}
|
|
if (order.push_date || order.article_num || order.hospital_name) {
|
|
searchForm.order = order;
|
|
}
|
|
api_api.api.searchHospital({
|
|
...searchForm,
|
|
...params
|
|
}).then((res) => {
|
|
paging.value.complete(res.data.data.data);
|
|
total.value = res.data.data.total;
|
|
}).catch((err) => {
|
|
paging.value.complete(false);
|
|
});
|
|
};
|
|
const searchDoctor = async (params) => {
|
|
let searchForm = {
|
|
doctor_name: keyWord.value
|
|
};
|
|
if (!order.push_date) {
|
|
delete order.push_date;
|
|
}
|
|
if (!order.article_num) {
|
|
delete order.article_num;
|
|
}
|
|
if (!order.doctor_name) {
|
|
delete order.doctor_name;
|
|
}
|
|
if (order.push_date || order.article_num || order.doctor_name) {
|
|
searchForm.order = order;
|
|
}
|
|
api_api.api.searchDoctor({
|
|
...searchForm,
|
|
...params
|
|
}).then((res) => {
|
|
paging.value.complete(res.data.data.data);
|
|
total.value = res.data.data.total;
|
|
}).catch((err) => {
|
|
paging.value.complete(false);
|
|
});
|
|
};
|
|
const queryList = (pageNo, pageSize) => {
|
|
const params = {
|
|
page: pageNo,
|
|
page_size: pageSize
|
|
};
|
|
type.value == "hospital" ? searchHospital(params) : searchDoctor(params);
|
|
};
|
|
const goDetail = (id, name) => {
|
|
let url = "";
|
|
if (type.value == "doctor") {
|
|
url = `/pages/search/search?doctor_id=${id}&doctor_name=${name}`;
|
|
} else {
|
|
url = `/pages/search/search?hospital_id=${id}&hospital_name=${name}`;
|
|
}
|
|
utils_navTo.navTo({
|
|
url
|
|
});
|
|
};
|
|
const changeWord = (value) => {
|
|
common_vendor.index.__f__("log", "at pages/searchList/searchList.vue:331", value);
|
|
if (type.value == "hospital") {
|
|
navName.value = "医院临床病例库";
|
|
order.hospital_name = "";
|
|
} else {
|
|
navName.value = "医生临床病例库";
|
|
order.doctor_name = "";
|
|
}
|
|
keyWord.value = value;
|
|
dataList.value = [];
|
|
order.push_date = "desc";
|
|
order.article_num = "";
|
|
paging.value.reload();
|
|
};
|
|
return (_ctx, _cache) => {
|
|
return {
|
|
a: common_vendor.o(changeWord),
|
|
b: common_vendor.p({
|
|
searchWord: keyWord.value,
|
|
navName: navName.value,
|
|
type: type.value
|
|
}),
|
|
c: common_vendor.f(option.value, (item, k0, i0) => {
|
|
return {
|
|
a: "5d2f7987-5-" + i0 + ",5d2f7987-4",
|
|
b: common_vendor.p({
|
|
activeColor: "#3CC7C0",
|
|
label: item.label,
|
|
name: item.value
|
|
}),
|
|
c: item.value,
|
|
d: common_vendor.n(orderFilter.value == item.value ? "active" : "")
|
|
};
|
|
}),
|
|
d: common_vendor.o(change),
|
|
e: common_vendor.o(($event) => orderFilter.value = $event),
|
|
f: common_vendor.p({
|
|
iconPlacement: "right",
|
|
placement: "column",
|
|
modelValue: orderFilter.value
|
|
}),
|
|
g: common_vendor.p({
|
|
title: dropTitle.value
|
|
}),
|
|
h: common_vendor.sr(uDropdownRef, "5d2f7987-2,5d2f7987-0", {
|
|
"k": "uDropdownRef"
|
|
}),
|
|
i: common_vendor.f(dataList.value, (item, index, i0) => {
|
|
return common_vendor.e(type.value == "hospital" ? {
|
|
a: common_vendor.t(item.basic_hospital.hospital_name)
|
|
} : {
|
|
b: common_vendor.t(item.case_clinical_doctor.doctor_name),
|
|
c: common_vendor.t(item.case_clinical_doctor.hospital_name)
|
|
}, {
|
|
d: common_vendor.f(item.author, (tag, k1, i1) => {
|
|
return {
|
|
a: common_vendor.t(tag.doctor_name),
|
|
b: tag.author_id
|
|
};
|
|
}),
|
|
e: common_vendor.t(item.video_num + item.article_num),
|
|
f: "5d2f7987-6-" + i0 + ",5d2f7987-0",
|
|
g: common_vendor.t(formatdate(item.last_push_date)),
|
|
h: index,
|
|
i: common_vendor.o(($event) => type.value == "hospital" ? goDetail(item.basic_hospital.hospital_id, item.basic_hospital.hospital_name) : goDetail(item.case_clinical_doctor.doctor_id, item.case_clinical_doctor.doctor_name), index)
|
|
});
|
|
}),
|
|
j: type.value == "hospital",
|
|
k: common_vendor.p({
|
|
src: common_vendor.unref(common_assets.arrowrightImg),
|
|
width: "32rpx",
|
|
height: "32rpx"
|
|
}),
|
|
l: common_vendor.sr(paging, "5d2f7987-0", {
|
|
"k": "paging"
|
|
}),
|
|
m: common_vendor.o(queryList),
|
|
n: common_vendor.o(($event) => dataList.value = $event),
|
|
o: common_vendor.p({
|
|
["inside-more"]: true,
|
|
["loading-more-no-more-text"]: "咱也是有底线的!",
|
|
["auto-show-back-to-top"]: true,
|
|
modelValue: dataList.value
|
|
})
|
|
};
|
|
};
|
|
}
|
|
};
|
|
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-5d2f7987"]]);
|
|
wx.createPage(MiniProgramPage);
|
|
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/searchList/searchList.js.map
|