1111
This commit is contained in:
-247
@@ -1,247 +0,0 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../../common/vendor.js");
|
||||
const api_api = require("../../api/api.js");
|
||||
if (!Array) {
|
||||
const _easycom_up_tabs2 = common_vendor.resolveComponent("up-tabs");
|
||||
const _easycom_up_icon2 = common_vendor.resolveComponent("up-icon");
|
||||
const _easycom_z_paging2 = common_vendor.resolveComponent("z-paging");
|
||||
const _easycom_up_popup2 = common_vendor.resolveComponent("up-popup");
|
||||
const _easycom_up_overlay2 = common_vendor.resolveComponent("up-overlay");
|
||||
(_easycom_up_tabs2 + _easycom_up_icon2 + _easycom_z_paging2 + _easycom_up_popup2 + _easycom_up_overlay2)();
|
||||
}
|
||||
const _easycom_up_tabs = () => "../../node-modules/uview-plus/components/u-tabs/u-tabs.js";
|
||||
const _easycom_up_icon = () => "../../node-modules/uview-plus/components/u-icon/u-icon.js";
|
||||
const _easycom_z_paging = () => "../../uni_modules/z-paging/components/z-paging/z-paging.js";
|
||||
const _easycom_up_popup = () => "../../node-modules/uview-plus/components/u-popup/u-popup.js";
|
||||
const _easycom_up_overlay = () => "../../node-modules/uview-plus/components/u-overlay/u-overlay.js";
|
||||
if (!Math) {
|
||||
(backLogoNav + _easycom_up_tabs + _easycom_up_icon + _easycom_z_paging + _easycom_up_popup + _easycom_up_overlay)();
|
||||
}
|
||||
const backLogoNav = () => "../../components/backLogoNav/backLogoNav.js";
|
||||
const _sfc_main = {
|
||||
__name: "myJoin",
|
||||
setup(__props) {
|
||||
const paging = common_vendor.ref(null);
|
||||
common_vendor.ref(null);
|
||||
const dataList = common_vendor.ref([]);
|
||||
const total = common_vendor.ref(0);
|
||||
const delId = common_vendor.ref("");
|
||||
const keyWord = common_vendor.ref("");
|
||||
common_vendor.ref(true);
|
||||
const navName = common_vendor.ref("肝胆相照临床病例库");
|
||||
const showDeal = common_vendor.ref(false);
|
||||
const showModal = common_vendor.ref(false);
|
||||
const tab = common_vendor.ref(0);
|
||||
const closeDeal = () => {
|
||||
showDeal.value = false;
|
||||
};
|
||||
const alertPop = () => {
|
||||
showModal.value = true;
|
||||
showDeal.value = false;
|
||||
};
|
||||
const confirmDel = () => {
|
||||
if (tab.value == 0) {
|
||||
delExchangeComment(delId.value);
|
||||
} else if (tab.value == 1) {
|
||||
delArticleComment(delId.value);
|
||||
} else if (tab.value == 2) {
|
||||
delVideoComment(delId.value);
|
||||
}
|
||||
showModal.value = false;
|
||||
};
|
||||
const openDeal = () => {
|
||||
showDeal.value = true;
|
||||
};
|
||||
const isDel = (id) => {
|
||||
delId.value = id;
|
||||
showDeal.value = true;
|
||||
};
|
||||
common_vendor.ref([
|
||||
{
|
||||
label: "正序",
|
||||
value: "asc"
|
||||
},
|
||||
{
|
||||
label: "倒序",
|
||||
value: "desc"
|
||||
}
|
||||
]);
|
||||
const tabList = common_vendor.ref([
|
||||
{
|
||||
name: "病例交流"
|
||||
},
|
||||
{
|
||||
name: "文章病例库"
|
||||
},
|
||||
{
|
||||
name: "视频病例库"
|
||||
}
|
||||
]);
|
||||
const delArticleComment = (id) => {
|
||||
api_api.api.delArticleComment(id).then((res) => {
|
||||
common_vendor.index.showToast({
|
||||
icon: "none",
|
||||
title: "删除成功"
|
||||
});
|
||||
paging.value.refresh();
|
||||
});
|
||||
};
|
||||
const delVideoComment = (id) => {
|
||||
api_api.api.delVideoComment(id).then((res) => {
|
||||
common_vendor.index.showToast({
|
||||
icon: "none",
|
||||
title: "删除成功"
|
||||
});
|
||||
paging.value.refresh();
|
||||
});
|
||||
};
|
||||
const delExchangeComment = (id) => {
|
||||
api_api.api.delExchangeComment(id).then((res) => {
|
||||
common_vendor.index.showToast({
|
||||
icon: "none",
|
||||
title: "删除成功"
|
||||
});
|
||||
paging.value.refresh();
|
||||
});
|
||||
};
|
||||
const switchTab = (item) => {
|
||||
tab.value = item.index;
|
||||
paging.value.reload();
|
||||
};
|
||||
common_vendor.onLoad((options) => {
|
||||
});
|
||||
common_vendor.onShow(() => {
|
||||
var _a;
|
||||
(_a = paging.value) == null ? void 0 : _a.refresh();
|
||||
});
|
||||
const formatdate = (date) => {
|
||||
return common_vendor.dayjs(date).format("YYYY-MM-DD");
|
||||
};
|
||||
const getExchangeCommentUser = async (params) => {
|
||||
api_api.api.getExchangeCommentUser({
|
||||
...params
|
||||
}).then((res) => {
|
||||
paging.value.complete(res.data.data.data);
|
||||
total.value = res.data.data.total;
|
||||
}).catch((err) => {
|
||||
paging.value.complete(false);
|
||||
});
|
||||
};
|
||||
const getArticleCommentUser = async (params) => {
|
||||
api_api.api.getArticleCommentUser({
|
||||
...params
|
||||
}).then((res) => {
|
||||
paging.value.complete(res.data.data.data);
|
||||
total.value = res.data.data.total;
|
||||
}).catch((err) => {
|
||||
paging.value.complete(false);
|
||||
});
|
||||
};
|
||||
const getVideoCommentUser = async (params) => {
|
||||
api_api.api.getVideoCommentUser({
|
||||
...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
|
||||
};
|
||||
if (tab.value == 0) {
|
||||
getExchangeCommentUser(params);
|
||||
} else if (tab.value == 1) {
|
||||
getArticleCommentUser(params);
|
||||
} else {
|
||||
getVideoCommentUser(params);
|
||||
}
|
||||
};
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.p({
|
||||
searchWord: keyWord.value,
|
||||
navName: navName.value
|
||||
}),
|
||||
b: common_vendor.o(switchTab),
|
||||
c: common_vendor.p({
|
||||
activeStyle: {
|
||||
color: "#3CC7C0"
|
||||
},
|
||||
inactiveStyle: {
|
||||
color: "#4B5563"
|
||||
},
|
||||
lineColor: "#3CC7C0",
|
||||
lineWidth: "155rpx",
|
||||
lineHeight: "2",
|
||||
list: tabList.value
|
||||
}),
|
||||
d: common_vendor.f(dataList.value, (item, index, i0) => {
|
||||
return common_vendor.e({
|
||||
a: common_vendor.t(item.content),
|
||||
b: "235c92a6-3-" + i0 + ",235c92a6-0",
|
||||
c: common_vendor.t(formatdate(item.created_at)),
|
||||
d: common_vendor.o(($event) => isDel(item.comment_id), index)
|
||||
}, tab.value == 0 ? {
|
||||
e: common_vendor.t(item.author_name),
|
||||
f: common_vendor.t(item.author_hospital_name)
|
||||
} : {}, tab.value == 0 ? {
|
||||
g: common_vendor.t(item.exchange_title)
|
||||
} : tab.value == 1 ? {
|
||||
h: common_vendor.t(item.article_title)
|
||||
} : tab.value == 2 ? {
|
||||
i: common_vendor.t(item.video_title)
|
||||
} : {}, {
|
||||
j: index
|
||||
});
|
||||
}),
|
||||
e: common_vendor.p({
|
||||
name: "clock",
|
||||
color: "#6B7280",
|
||||
size: "28rpx"
|
||||
}),
|
||||
f: tab.value == 0,
|
||||
g: tab.value == 0,
|
||||
h: tab.value == 1,
|
||||
i: tab.value == 2,
|
||||
j: common_vendor.sr(paging, "235c92a6-0", {
|
||||
"k": "paging"
|
||||
}),
|
||||
k: common_vendor.o(queryList),
|
||||
l: common_vendor.o(($event) => dataList.value = $event),
|
||||
m: common_vendor.p({
|
||||
["inside-more"]: true,
|
||||
["loading-more-no-more-text"]: "咱也是有底线的!",
|
||||
["auto-show-back-to-top"]: true,
|
||||
modelValue: dataList.value
|
||||
}),
|
||||
n: common_vendor.o(alertPop),
|
||||
o: common_vendor.o(closeDeal),
|
||||
p: common_vendor.o(closeDeal),
|
||||
q: common_vendor.o(openDeal),
|
||||
r: common_vendor.p({
|
||||
zIndex: 10,
|
||||
overlayStyle: {
|
||||
zIndex: 9
|
||||
},
|
||||
closeOnClickOverlay: false,
|
||||
show: showDeal.value,
|
||||
round: 10,
|
||||
mode: "bottom"
|
||||
}),
|
||||
s: common_vendor.o(($event) => showModal.value = false),
|
||||
t: common_vendor.o(confirmDel),
|
||||
v: common_vendor.p({
|
||||
show: showModal.value,
|
||||
["mask-click-able"]: true
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-235c92a6"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/myJoin/myJoin.js.map
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"navigationBarTitleText": "肝胆相照临床病例库",
|
||||
"navigationStyle": "custom",
|
||||
"usingComponents": {
|
||||
"up-tabs": "../../node-modules/uview-plus/components/u-tabs/u-tabs",
|
||||
"up-icon": "../../node-modules/uview-plus/components/u-icon/u-icon",
|
||||
"z-paging": "../../uni_modules/z-paging/components/z-paging/z-paging",
|
||||
"up-popup": "../../node-modules/uview-plus/components/u-popup/u-popup",
|
||||
"up-overlay": "../../node-modules/uview-plus/components/u-overlay/u-overlay",
|
||||
"back-logo-nav": "../../components/backLogoNav/backLogoNav"
|
||||
}
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
<view class="u-page data-v-235c92a6"><z-paging wx:if="{{m}}" class="r data-v-235c92a6" u-s="{{['top','d']}}" u-r="paging" bindquery="{{k}}" u-i="235c92a6-0" bind:__l="__l" bindupdateModelValue="{{l}}" u-p="{{m}}"><view slot="top"><back-logo-nav wx:if="{{a}}" class="data-v-235c92a6" u-i="235c92a6-1,235c92a6-0" bind:__l="__l" u-p="{{a}}"></back-logo-nav><view class="tabcon data-v-235c92a6"><up-tabs wx:if="{{c}}" class="data-v-235c92a6" bindclick="{{b}}" u-i="235c92a6-2,235c92a6-0" bind:__l="__l" u-p="{{c}}"></up-tabs></view></view><view wx:for="{{d}}" wx:for-item="item" wx:key="j" class="item data-v-235c92a6"><view class="title data-v-235c92a6">{{item.a}}</view><view class="deal data-v-235c92a6"><view class="time data-v-235c92a6"><up-icon wx:if="{{e}}" class="data-v-235c92a6" u-i="{{item.b}}" bind:__l="__l" u-p="{{e}}"></up-icon><view class="num data-v-235c92a6">{{item.c}}</view></view><view class="dot data-v-235c92a6" bindtap="{{item.d}}">...</view></view><view class="casecontent data-v-235c92a6"><view wx:if="{{f}}" class="author data-v-235c92a6">{{item.e}}({{item.f}})</view><view wx:if="{{g}}" class="content data-v-235c92a6">{{item.g}}</view><view wx:elif="{{h}}" class="content data-v-235c92a6">{{item.h}}</view><view wx:elif="{{i}}" class="content data-v-235c92a6">{{item.i}}</view></view></view></z-paging></view><up-popup wx:if="{{r}}" class="data-v-235c92a6" u-s="{{['d']}}" bindclose="{{p}}" bindopen="{{q}}" u-i="235c92a6-4" bind:__l="__l" u-p="{{r}}"><view class="dealbox data-v-235c92a6"><view class="dealcell data-v-235c92a6" bindtap="{{n}}">删除</view><view class="bar data-v-235c92a6"></view><view class="dealcell data-v-235c92a6" bindtap="{{o}}">取消</view></view></up-popup><up-overlay wx:if="{{v}}" class="data-v-235c92a6" u-s="{{['d']}}" u-i="235c92a6-5" bind:__l="__l" u-p="{{v}}"><view class="zanboxpop data-v-235c92a6"><view class="zanwraper data-v-235c92a6"><view class="title data-v-235c92a6">提示</view><view class="content data-v-235c92a6"> 是否删除该评论? </view><view class="btnbox data-v-235c92a6"><view class="cancle data-v-235c92a6" bindtap="{{s}}">取消</view><view class="ok data-v-235c92a6" bindtap="{{t}}">确定</view></view></view></view></up-overlay>
|
||||
@@ -1,315 +0,0 @@
|
||||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.zanboxpop.data-v-235c92a6 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 100%;
|
||||
}
|
||||
.zanboxpop .zanwraper.data-v-235c92a6 {
|
||||
width: 630rpx;
|
||||
margin: 0 auto;
|
||||
padding-bottom: 50rpx;
|
||||
background: #f5f6f9;
|
||||
border-radius: 16rpx;
|
||||
}
|
||||
.zanboxpop .zanwraper .title.data-v-235c92a6 {
|
||||
margin-top: 48rpx;
|
||||
text-align: center;
|
||||
font-weight: 500;
|
||||
font-size: 36rpx;
|
||||
color: rgba(0, 0, 0, 0.85);
|
||||
}
|
||||
.zanboxpop .zanwraper .content.data-v-235c92a6 {
|
||||
padding: 30rpx 0;
|
||||
background: #f5f6f9;
|
||||
text-align: center;
|
||||
}
|
||||
.zanboxpop .zanwraper .count.data-v-235c92a6 {
|
||||
margin-top: 24rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
justify-content: center;
|
||||
font-weight: 400;
|
||||
font-size: 28rpx;
|
||||
color: rgba(0, 0, 0, 0.65);
|
||||
}
|
||||
.zanboxpop .zanwraper .count .num.data-v-235c92a6 {
|
||||
color: #ff0000;
|
||||
font-size: 32rpx;
|
||||
}
|
||||
.zanboxpop .zanwraper .count .earn.data-v-235c92a6 {
|
||||
font-size: 32rpx;
|
||||
color: #3cc7c0;
|
||||
}
|
||||
.zanboxpop .zanwraper .countbox.data-v-235c92a6 {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
margin: 30rpx 0px 40rpx;
|
||||
padding: 0 40rpx;
|
||||
justify-content: center;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.zanboxpop .zanwraper .countbox .minus.data-v-235c92a6 {
|
||||
flex-shrink: 0;
|
||||
margin-left: 10rp;
|
||||
width: 90rpx;
|
||||
height: 90rpx;
|
||||
font-size: 60rpx;
|
||||
color: #333;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
background: #ffffff;
|
||||
border-radius: 12rpx;
|
||||
border: 2rpx solid #e9e9e9;
|
||||
}
|
||||
.zanboxpop .zanwraper .countbox .add.data-v-235c92a6 {
|
||||
flex-shrink: 0;
|
||||
width: 90rpx;
|
||||
margin-left: 10rpx;
|
||||
height: 90rpx;
|
||||
font-size: 60rpx;
|
||||
color: #333;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
color: #fff;
|
||||
background: #3cc7c0;
|
||||
border-radius: 12rpx;
|
||||
border: 2rpx solid #3cc7c0;
|
||||
}
|
||||
.zanboxpop .zanwraper .countbox.data-v-235c92a6 .u-input__content__field-wrapper__field {
|
||||
height: 60rpx;
|
||||
font-size: 34rpx !important;
|
||||
text-align: center !important;
|
||||
}
|
||||
.zanboxpop .zanwraper .countbox.data-v-235c92a6 .u-input {
|
||||
background: #f2f2f2;
|
||||
width: 200rpx !important;
|
||||
flex: none;
|
||||
}
|
||||
.zanboxpop .zanwraper .countbox.data-v-235c92a6 .u-input--radius {
|
||||
border-radius: 24rrpx;
|
||||
}
|
||||
.zanboxpop .zanwraper .btnbox.data-v-235c92a6 {
|
||||
margin: 0px 40rpx 0px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.zanboxpop .zanwraper .btnbox .cancle.data-v-235c92a6 {
|
||||
color: rgba(0, 0, 0, 0.3);
|
||||
width: 256rpx;
|
||||
height: 88rpx;
|
||||
background: #f5f6f9;
|
||||
border-radius: 25px;
|
||||
border: 2rpx solid rgba(0, 0, 0, 0.15);
|
||||
font-weight: 500;
|
||||
font-size: 32rpx;
|
||||
color: rgba(0, 0, 0, 0.85);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
.zanboxpop .zanwraper .btnbox .ok.data-v-235c92a6 {
|
||||
color: #fff;
|
||||
width: 256rpx;
|
||||
height: 88rpx;
|
||||
background: #3cc7c0;
|
||||
border-radius: 25px;
|
||||
border: 2rpx solid #3cc7c0;
|
||||
font-weight: 500;
|
||||
font-size: 32rpx;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
.bar.data-v-235c92a6 {
|
||||
width: 100%;
|
||||
background: #f9fafb;
|
||||
height: 20rpx;
|
||||
}
|
||||
.dealbox .dealcell.data-v-235c92a6 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 112rpx;
|
||||
font-size: 32rpx;
|
||||
color: rgba(0, 0, 0, 0.9);
|
||||
border-bottom: 2rpx solid #efefef;
|
||||
}
|
||||
.tabcon.data-v-235c92a6 {
|
||||
margin: -20rpx 20rpx 0;
|
||||
}
|
||||
.databox.data-v-235c92a6 {
|
||||
height: 162rpx;
|
||||
background: #ffffff;
|
||||
display: flex;
|
||||
margin-bottom: 20rpx;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.databox .cell.data-v-235c92a6 {
|
||||
flex: 1;
|
||||
padding: 35rpx 0;
|
||||
text-align: center;
|
||||
}
|
||||
.databox .cell .num.data-v-235c92a6 {
|
||||
font-size: 38rpx;
|
||||
color: #3cc7c0;
|
||||
}
|
||||
.databox .cell .name.data-v-235c92a6 {
|
||||
margin-top: 18rpx;
|
||||
font-size: 28rpx;
|
||||
color: #4b5563;
|
||||
}
|
||||
.filterbox.data-v-235c92a6 {
|
||||
display: flex;
|
||||
height: 128rpx;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
}
|
||||
.filterbox .type.data-v-235c92a6 {
|
||||
position: absolute;
|
||||
left: 30rpx;
|
||||
top: 24rpx;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
background: #f3f4f6;
|
||||
border-radius: 15rpx;
|
||||
height: 74rpx;
|
||||
padding: 0 25rpx;
|
||||
z-index: 2;
|
||||
}
|
||||
.u-page.data-v-235c92a6 .u-flex {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
overflow: hidden;
|
||||
}
|
||||
.u-page.data-v-235c92a6 .u-dropdown__menu {
|
||||
background: #fff;
|
||||
z-index: 1;
|
||||
margin-left: 180rpx;
|
||||
}
|
||||
.u-page.data-v-235c92a6 .u-dropdown__menu__item {
|
||||
height: 74rpx;
|
||||
padding: 0 20rpx;
|
||||
background: #f3f4f6;
|
||||
border-radius: 15rpx;
|
||||
flex: none;
|
||||
margin-left: 60rpx;
|
||||
}
|
||||
.u-page .casecontent.data-v-235c92a6 {
|
||||
margin-top: 16rpx;
|
||||
padding: 24rpx 30rpx;
|
||||
border-radius: 16rpx;
|
||||
border: 2rpx solid #E5E7EB;
|
||||
}
|
||||
.u-page .casecontent .author.data-v-235c92a6 {
|
||||
font-size: 26rpx;
|
||||
color: #666666;
|
||||
}
|
||||
.u-page .casecontent .content.data-v-235c92a6 {
|
||||
margin-top: 10rpx;
|
||||
font-size: 30rpx;
|
||||
color: #333333;
|
||||
line-height: 46rpx;
|
||||
}
|
||||
.u-page .deal.data-v-235c92a6 {
|
||||
margin-top: 20rpx;
|
||||
display: flex;
|
||||
color: #6b7280;
|
||||
font-size: 24rpx;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.u-page .deal .left.data-v-235c92a6 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.u-page .deal .recored.data-v-235c92a6 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: 31rpx;
|
||||
color: #3cc7c0;
|
||||
}
|
||||
.u-page .deal .collect.data-v-235c92a6 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.u-page .deal .eyebox.data-v-235c92a6 {
|
||||
width: 160rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.u-page .deal .dot.data-v-235c92a6 {
|
||||
font-size: 34rpx;
|
||||
}
|
||||
.u-page .deal .time.data-v-235c92a6 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.u-page .deal .num.data-v-235c92a6 {
|
||||
margin-left: 8rpx;
|
||||
}
|
||||
.u-page .item.data-v-235c92a6 {
|
||||
border-bottom: 1rpx solid #f3f4f6;
|
||||
padding: 30rpx;
|
||||
}
|
||||
.u-page .item .title.data-v-235c92a6 {
|
||||
font-size: 30rpx;
|
||||
color: #111827;
|
||||
line-height: 46rpx;
|
||||
}
|
||||
.u-page .tagsbox.data-v-235c92a6 {
|
||||
margin-top: 20rpx;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.u-page .tagsbox .tag.data-v-235c92a6 {
|
||||
padding: 0 10rpx;
|
||||
margin-right: 16rpx;
|
||||
height: 46rpx;
|
||||
line-height: 46rpx;
|
||||
text-align: center;
|
||||
background: rgba(60, 199, 192, 0.1);
|
||||
border-radius: 8rpx;
|
||||
font-weight: 400;
|
||||
font-size: 24rpx;
|
||||
color: #3cc7c0;
|
||||
}
|
||||
.detail.data-v-235c92a6 {
|
||||
background: #f9f9f9;
|
||||
padding: 12rpx 30rpx;
|
||||
}
|
||||
.detail .desc.data-v-235c92a6 {
|
||||
font-size: 26rpx;
|
||||
color: #4b5563;
|
||||
line-height: 40rpx;
|
||||
}
|
||||
.detail .red.data-v-235c92a6 {
|
||||
color: #ff0000;
|
||||
}
|
||||
Reference in New Issue
Block a user