187 lines
6.4 KiB
JavaScript
187 lines
6.4 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_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_dropdown_item2 + _easycom_up_dropdown2 + _easycom_up__image2 + _easycom_z_paging2)();
|
|
}
|
|
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_dropdown_item + _easycom_up_dropdown + _easycom_up__image + _easycom_z_paging)();
|
|
}
|
|
const navBarSearch = () => "../../components/navBarSearch/navBarSearch.js";
|
|
const _sfc_main = {
|
|
__name: "sickList",
|
|
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 options = common_vendor.ref([
|
|
{
|
|
label: "正序",
|
|
value: "asc"
|
|
},
|
|
{
|
|
label: "倒序",
|
|
value: "desc"
|
|
}
|
|
]);
|
|
const order = common_vendor.reactive({
|
|
article_num: "",
|
|
push_date: ""
|
|
});
|
|
common_vendor.onLoad((options2) => {
|
|
if (options2.type == "hospital") {
|
|
type.value = "hospital";
|
|
}
|
|
keyWord.value = options2.name;
|
|
if (options2.name) {
|
|
navName.value = options2.name + "临床病例库";
|
|
}
|
|
if ((options2.name = "医生") && !options2.id) {
|
|
keyWord.value = "";
|
|
}
|
|
if (options2.order == "new") {
|
|
order.push_date = "asc";
|
|
}
|
|
if (options2.order == "read") {
|
|
order.article_num = "desc";
|
|
}
|
|
});
|
|
common_vendor.onShow(() => {
|
|
var _a;
|
|
(_a = paging.value) == null ? void 0 : _a.refresh();
|
|
});
|
|
const changeDate = (e) => {
|
|
common_vendor.index.__f__("log", "at pages/sickList/sickList.vue:139", e);
|
|
order.article_num = "";
|
|
paging.value.reload();
|
|
};
|
|
const changeRead = (e) => {
|
|
common_vendor.index.__f__("log", "at pages/sickList/sickList.vue:144", e);
|
|
order.push_date = "";
|
|
paging.value.reload();
|
|
};
|
|
const formatdate = (date) => {
|
|
return common_vendor.dayjs(date).format("YYYY-MM-DD");
|
|
};
|
|
const searchList = async (params) => {
|
|
let searchForm = {
|
|
label_name: keyWord.value
|
|
};
|
|
if (!order.article_num) {
|
|
delete order.article_num;
|
|
}
|
|
if (!order.push_date) {
|
|
delete order.push_date;
|
|
}
|
|
if (order.article_num || order.push_date) {
|
|
searchForm.order = order;
|
|
}
|
|
api_api.api.getSearchLabel({
|
|
...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
|
|
};
|
|
searchList(params);
|
|
};
|
|
const goDetail = (id, name) => {
|
|
let url = `/pages/search/search?case_id=${id}&case_name=${name}`;
|
|
utils_navTo.navTo({
|
|
url
|
|
});
|
|
};
|
|
const changeWord = (value) => {
|
|
common_vendor.index.__f__("log", "at pages/sickList/sickList.vue:194", value);
|
|
if (value) {
|
|
navName.value = value + "临床病例库";
|
|
keyWord.value = value;
|
|
dataList.value = [];
|
|
order.article_num = "";
|
|
order.push_date = "";
|
|
paging.value.reload();
|
|
}
|
|
};
|
|
return (_ctx, _cache) => {
|
|
return {
|
|
a: common_vendor.o(changeWord),
|
|
b: common_vendor.p({
|
|
searchWord: keyWord.value,
|
|
navName: navName.value,
|
|
type: "case"
|
|
}),
|
|
c: common_vendor.o(changeDate),
|
|
d: common_vendor.o(($event) => order.push_date = $event),
|
|
e: common_vendor.p({
|
|
title: "发布时间",
|
|
options: options.value,
|
|
modelValue: order.push_date
|
|
}),
|
|
f: common_vendor.o(changeRead),
|
|
g: common_vendor.o(($event) => order.article_num = $event),
|
|
h: common_vendor.p({
|
|
title: "文章数量",
|
|
options: options.value,
|
|
modelValue: order.article_num
|
|
}),
|
|
i: common_vendor.sr(uDropdownRef, "55f9e2cf-2,55f9e2cf-0", {
|
|
"k": "uDropdownRef"
|
|
}),
|
|
j: common_vendor.f(dataList.value, (item, index, i0) => {
|
|
return {
|
|
a: common_vendor.t(item.label_name),
|
|
b: common_vendor.t(item.video_num + item.article_num),
|
|
c: "55f9e2cf-5-" + i0 + ",55f9e2cf-0",
|
|
d: common_vendor.t(formatdate(item.last_push_date)),
|
|
e: index,
|
|
f: common_vendor.o(($event) => goDetail(item.label_iden, item.label_name), index)
|
|
};
|
|
}),
|
|
k: common_vendor.p({
|
|
src: common_vendor.unref(common_assets.arrowrightImg),
|
|
width: "32rpx",
|
|
height: "32rpx"
|
|
}),
|
|
l: common_vendor.sr(paging, "55f9e2cf-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-55f9e2cf"]]);
|
|
wx.createPage(MiniProgramPage);
|
|
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/sickList/sickList.js.map
|