first commit
This commit is contained in:
273
unpackage/dist/dev/mp-weixin/pages/editchecklist/editchecklist.js
vendored
Normal file
273
unpackage/dist/dev/mp-weixin/pages/editchecklist/editchecklist.js
vendored
Normal file
@@ -0,0 +1,273 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../../common/vendor.js");
|
||||
if (!Array) {
|
||||
const _easycom_up_input2 = common_vendor.resolveComponent("up-input");
|
||||
const _easycom_up_select2 = common_vendor.resolveComponent("up-select");
|
||||
const _easycom_up_textarea2 = common_vendor.resolveComponent("up-textarea");
|
||||
const _easycom_up_switch2 = common_vendor.resolveComponent("up-switch");
|
||||
const _easycom_up_calendar2 = common_vendor.resolveComponent("up-calendar");
|
||||
const _easycom_u_popup2 = common_vendor.resolveComponent("u-popup");
|
||||
(_easycom_up_input2 + _easycom_up_select2 + _easycom_up_textarea2 + _easycom_up_switch2 + _easycom_up_calendar2 + _easycom_u_popup2)();
|
||||
}
|
||||
const _easycom_up_input = () => "../../uni_modules/uview-plus/components/u-input/u-input.js";
|
||||
const _easycom_up_select = () => "../../uni_modules/uview-plus/components/u-select/u-select.js";
|
||||
const _easycom_up_textarea = () => "../../uni_modules/uview-plus/components/u-textarea/u-textarea.js";
|
||||
const _easycom_up_switch = () => "../../uni_modules/uview-plus/components/u-switch/u-switch.js";
|
||||
const _easycom_up_calendar = () => "../../uni_modules/uview-plus/components/u-calendar/u-calendar.js";
|
||||
const _easycom_u_popup = () => "../../uni_modules/uview-plus/components/u-popup/u-popup.js";
|
||||
if (!Math) {
|
||||
(_easycom_up_input + _easycom_up_select + _easycom_up_textarea + _easycom_up_switch + _easycom_up_calendar + _easycom_u_popup)();
|
||||
}
|
||||
const _sfc_main = {
|
||||
__name: "editchecklist",
|
||||
setup(__props) {
|
||||
const cateId = common_vendor.ref("");
|
||||
const cateList = common_vendor.ref([
|
||||
{
|
||||
id: "1",
|
||||
name: "湘西自治州和谐网络科技有限公司"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "湘西自治州和谐云大数据科技有限公司"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "湘西网络有限公司"
|
||||
}
|
||||
]);
|
||||
const selectItem = (item) => {
|
||||
console.log(item);
|
||||
};
|
||||
const value = common_vendor.ref(false);
|
||||
const show = common_vendor.ref(false);
|
||||
const mode = common_vendor.ref("single");
|
||||
const confirm = (e) => {
|
||||
console.log(e);
|
||||
};
|
||||
const showAddPopup = common_vendor.ref(false);
|
||||
const checkForm = common_vendor.reactive({
|
||||
projectName: "",
|
||||
checkContent: "",
|
||||
law: "",
|
||||
image: ""
|
||||
});
|
||||
const showLawPopup = common_vendor.ref(false);
|
||||
const lawKeyword = common_vendor.ref("");
|
||||
const selectedLaw = common_vendor.ref("");
|
||||
const lawList = common_vendor.ref([
|
||||
"中华人民共和国安全生产法 第三十二条",
|
||||
'建设项目安全设施"三同时"监督管理办法 第二十条',
|
||||
"中华人民共和国职业病防治法 第十七条",
|
||||
"中华人民共和国职业病防治法 第十八条",
|
||||
"中华人民共和国消防法(2021版)第十一条",
|
||||
"建设工程消防监督管理规定 第二十条"
|
||||
]);
|
||||
const filteredLawList = common_vendor.computed(() => {
|
||||
if (!lawKeyword.value)
|
||||
return lawList.value;
|
||||
return lawList.value.filter((item) => item.includes(lawKeyword.value));
|
||||
});
|
||||
const loadMoreLaw = () => {
|
||||
common_vendor.index.showToast({ title: "加载更多...", icon: "none" });
|
||||
};
|
||||
const confirmLaw = () => {
|
||||
if (selectedLaw.value) {
|
||||
checkForm.law = selectedLaw.value;
|
||||
}
|
||||
showLawPopup.value = false;
|
||||
};
|
||||
const showLibraryPopup = common_vendor.ref(false);
|
||||
const libraryKeyword = common_vendor.ref("");
|
||||
const selectedLibraries = common_vendor.ref([]);
|
||||
const libraryList = common_vendor.ref([
|
||||
{ id: 1, name: '安全生产隐患"常见病"检查诊断表(个性部分)公路养护工程', count: 18 },
|
||||
{ id: 2, name: '安全生产隐患"常见病"检查诊断表(个性部分)出租汽车企业', count: 12 },
|
||||
{ id: 3, name: '安全生产隐患"常见病"检查诊断表(个性部分)城镇燃气', count: 12 }
|
||||
]);
|
||||
const filteredLibraryList = common_vendor.computed(() => {
|
||||
if (!libraryKeyword.value)
|
||||
return libraryList.value;
|
||||
return libraryList.value.filter((item) => item.name.includes(libraryKeyword.value));
|
||||
});
|
||||
const toggleLibrarySelect = (item) => {
|
||||
const index = selectedLibraries.value.indexOf(item.id);
|
||||
if (index > -1) {
|
||||
selectedLibraries.value.splice(index, 1);
|
||||
} else {
|
||||
selectedLibraries.value.push(item.id);
|
||||
}
|
||||
};
|
||||
const addSelectedLibrary = () => {
|
||||
if (selectedLibraries.value.length === 0) {
|
||||
common_vendor.index.showToast({ title: "请选择检查库", icon: "none" });
|
||||
return;
|
||||
}
|
||||
console.log("添加检查库:", selectedLibraries.value);
|
||||
common_vendor.index.showToast({ title: "添加成功", icon: "success" });
|
||||
showLibraryPopup.value = false;
|
||||
selectedLibraries.value = [];
|
||||
};
|
||||
const chooseImage = () => {
|
||||
common_vendor.index.chooseImage({
|
||||
count: 1,
|
||||
sizeType: ["compressed"],
|
||||
sourceType: ["album", "camera"],
|
||||
success: (res) => {
|
||||
checkForm.image = res.tempFilePaths[0];
|
||||
}
|
||||
});
|
||||
};
|
||||
const handleAddCheck = () => {
|
||||
if (!checkForm.projectName) {
|
||||
common_vendor.index.showToast({ title: "请输入项目名称", icon: "none" });
|
||||
return;
|
||||
}
|
||||
if (!checkForm.checkContent) {
|
||||
common_vendor.index.showToast({ title: "请输入检查内容", icon: "none" });
|
||||
return;
|
||||
}
|
||||
console.log("提交检查项:", checkForm);
|
||||
common_vendor.index.showToast({ title: "添加成功", icon: "success" });
|
||||
showAddPopup.value = false;
|
||||
checkForm.projectName = "";
|
||||
checkForm.checkContent = "";
|
||||
checkForm.law = "";
|
||||
checkForm.image = "";
|
||||
};
|
||||
return (_ctx, _cache) => {
|
||||
return common_vendor.e({
|
||||
a: common_vendor.p({
|
||||
placeholder: "请输入检查表名称",
|
||||
border: "surround"
|
||||
}),
|
||||
b: common_vendor.o(selectItem),
|
||||
c: common_vendor.o(($event) => cateId.value = $event),
|
||||
d: common_vendor.p({
|
||||
placeholder: "请选择分派单位",
|
||||
label: "湘西自治州和谐网络科技有限公司",
|
||||
options: cateList.value,
|
||||
current: cateId.value
|
||||
}),
|
||||
e: common_vendor.o(($event) => _ctx.value1 = $event),
|
||||
f: common_vendor.p({
|
||||
placeholder: "请输入内容",
|
||||
modelValue: _ctx.value1
|
||||
}),
|
||||
g: common_vendor.o(selectItem),
|
||||
h: common_vendor.o(($event) => cateId.value = $event),
|
||||
i: common_vendor.p({
|
||||
placeholder: "请选择分派单位",
|
||||
label: "全员",
|
||||
options: cateList.value,
|
||||
current: cateId.value
|
||||
}),
|
||||
j: common_vendor.o(selectItem),
|
||||
k: common_vendor.o(($event) => cateId.value = $event),
|
||||
l: common_vendor.p({
|
||||
placeholder: "请选择分派单位",
|
||||
label: "选择部门",
|
||||
options: cateList.value,
|
||||
current: cateId.value
|
||||
}),
|
||||
m: common_vendor.o(selectItem),
|
||||
n: common_vendor.o(($event) => cateId.value = $event),
|
||||
o: common_vendor.p({
|
||||
placeholder: "请选择分派单位",
|
||||
label: "每天一次",
|
||||
options: cateList.value,
|
||||
current: cateId.value
|
||||
}),
|
||||
p: common_vendor.o(_ctx.change),
|
||||
q: common_vendor.o(($event) => value.value = $event),
|
||||
r: common_vendor.p({
|
||||
activeColor: "#07C160 ",
|
||||
modelValue: value.value
|
||||
}),
|
||||
s: common_vendor.o(_ctx.change),
|
||||
t: common_vendor.o(($event) => value.value = $event),
|
||||
v: common_vendor.p({
|
||||
activeColor: "#07C160 ",
|
||||
modelValue: value.value
|
||||
}),
|
||||
w: common_vendor.o(($event) => show.value = true),
|
||||
x: common_vendor.o(confirm),
|
||||
y: common_vendor.p({
|
||||
show: show.value,
|
||||
mode: mode.value
|
||||
}),
|
||||
z: common_vendor.o(($event) => show.value = true),
|
||||
A: common_vendor.o(confirm),
|
||||
B: common_vendor.p({
|
||||
show: show.value,
|
||||
mode: mode.value
|
||||
}),
|
||||
C: common_vendor.o(($event) => showAddPopup.value = true),
|
||||
D: common_vendor.o(($event) => showLibraryPopup.value = true),
|
||||
E: common_vendor.o(($event) => showAddPopup.value = false),
|
||||
F: checkForm.projectName,
|
||||
G: common_vendor.o(($event) => checkForm.projectName = $event.detail.value),
|
||||
H: checkForm.checkContent,
|
||||
I: common_vendor.o(($event) => checkForm.checkContent = $event.detail.value),
|
||||
J: common_vendor.t(checkForm.law || "选择法规"),
|
||||
K: common_vendor.o(($event) => showLawPopup.value = true),
|
||||
L: !checkForm.image
|
||||
}, !checkForm.image ? {} : {
|
||||
M: checkForm.image
|
||||
}, {
|
||||
N: common_vendor.o(chooseImage),
|
||||
O: common_vendor.o(($event) => showAddPopup.value = false),
|
||||
P: common_vendor.o(handleAddCheck),
|
||||
Q: common_vendor.o(($event) => showAddPopup.value = false),
|
||||
R: common_vendor.p({
|
||||
show: showAddPopup.value,
|
||||
mode: "center",
|
||||
round: "20"
|
||||
}),
|
||||
S: common_vendor.o(($event) => showLawPopup.value = false),
|
||||
T: lawKeyword.value,
|
||||
U: common_vendor.o(($event) => lawKeyword.value = $event.detail.value),
|
||||
V: common_vendor.f(filteredLawList.value, (item, index, i0) => {
|
||||
return {
|
||||
a: common_vendor.t(item),
|
||||
b: selectedLaw.value === item ? 1 : "",
|
||||
c: index,
|
||||
d: common_vendor.o(($event) => selectedLaw.value = item, index)
|
||||
};
|
||||
}),
|
||||
W: common_vendor.o(loadMoreLaw),
|
||||
X: common_vendor.o(($event) => showLawPopup.value = false),
|
||||
Y: common_vendor.o(confirmLaw),
|
||||
Z: common_vendor.o(($event) => showLawPopup.value = false),
|
||||
aa: common_vendor.p({
|
||||
show: showLawPopup.value,
|
||||
mode: "center",
|
||||
round: "20"
|
||||
}),
|
||||
ab: common_vendor.o(($event) => showLibraryPopup.value = false),
|
||||
ac: libraryKeyword.value,
|
||||
ad: common_vendor.o(($event) => libraryKeyword.value = $event.detail.value),
|
||||
ae: common_vendor.f(filteredLibraryList.value, (item, index, i0) => {
|
||||
return common_vendor.e({
|
||||
a: selectedLibraries.value.includes(item.id)
|
||||
}, selectedLibraries.value.includes(item.id) ? {} : {}, {
|
||||
b: selectedLibraries.value.includes(item.id) ? 1 : "",
|
||||
c: common_vendor.t(item.name),
|
||||
d: common_vendor.t(item.count),
|
||||
e: index,
|
||||
f: common_vendor.o(($event) => toggleLibrarySelect(item), index)
|
||||
});
|
||||
}),
|
||||
af: common_vendor.o(addSelectedLibrary),
|
||||
ag: common_vendor.o(($event) => showLibraryPopup.value = false),
|
||||
ah: common_vendor.p({
|
||||
show: showLibraryPopup.value,
|
||||
mode: "center",
|
||||
round: "20"
|
||||
})
|
||||
});
|
||||
};
|
||||
}
|
||||
};
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-98282eb3"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
11
unpackage/dist/dev/mp-weixin/pages/editchecklist/editchecklist.json
vendored
Normal file
11
unpackage/dist/dev/mp-weixin/pages/editchecklist/editchecklist.json
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"navigationBarTitleText": "编辑检查表",
|
||||
"usingComponents": {
|
||||
"up-input": "../../uni_modules/uview-plus/components/u-input/u-input",
|
||||
"up-select": "../../uni_modules/uview-plus/components/u-select/u-select",
|
||||
"up-textarea": "../../uni_modules/uview-plus/components/u-textarea/u-textarea",
|
||||
"up-switch": "../../uni_modules/uview-plus/components/u-switch/u-switch",
|
||||
"up-calendar": "../../uni_modules/uview-plus/components/u-calendar/u-calendar",
|
||||
"u-popup": "../../uni_modules/uview-plus/components/u-popup/u-popup"
|
||||
}
|
||||
}
|
||||
1
unpackage/dist/dev/mp-weixin/pages/editchecklist/editchecklist.wxml
vendored
Normal file
1
unpackage/dist/dev/mp-weixin/pages/editchecklist/editchecklist.wxml
vendored
Normal file
File diff suppressed because one or more lines are too long
257
unpackage/dist/dev/mp-weixin/pages/editchecklist/editchecklist.wxss
vendored
Normal file
257
unpackage/dist/dev/mp-weixin/pages/editchecklist/editchecklist.wxss
vendored
Normal file
@@ -0,0 +1,257 @@
|
||||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
/* uni.scss */
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.page.data-v-98282eb3 {
|
||||
min-height: 100vh;
|
||||
background: #EBF2FC;
|
||||
}
|
||||
.btn-right.data-v-98282eb3 {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
.but.data-v-98282eb3 {
|
||||
width: 304rpx;
|
||||
height: 72rpx;
|
||||
border-radius: 6rpx 6rpx 6rpx 6rpx;
|
||||
border: 2rpx solid #108FFF;
|
||||
color: #108FFF;
|
||||
text-align: center;
|
||||
line-height: 72rpx;
|
||||
}
|
||||
.popup-content.data-v-98282eb3 {
|
||||
width: 600rpx;
|
||||
background: #fff;
|
||||
border-radius: 20rpx;
|
||||
padding: 30rpx;
|
||||
}
|
||||
.popup-header.data-v-98282eb3 {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 30rpx;
|
||||
}
|
||||
.popup-title.data-v-98282eb3 {
|
||||
font-size: 34rpx;
|
||||
color: #333;
|
||||
}
|
||||
.popup-close.data-v-98282eb3 {
|
||||
font-size: 48rpx;
|
||||
color: #999;
|
||||
line-height: 1;
|
||||
}
|
||||
.popup-body.data-v-98282eb3 {
|
||||
max-height: 700rpx;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.form-item.data-v-98282eb3 {
|
||||
margin-bottom: 24rpx;
|
||||
}
|
||||
.form-label.data-v-98282eb3 {
|
||||
font-size: 28rpx;
|
||||
color: #333;
|
||||
margin-bottom: 12rpx;
|
||||
}
|
||||
.form-input.data-v-98282eb3 {
|
||||
width: 100%;
|
||||
height: 80rpx;
|
||||
border: 2rpx solid #E5E5E5;
|
||||
border-radius: 12rpx;
|
||||
padding: 0 24rpx;
|
||||
font-size: 28rpx;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.form-btn.data-v-98282eb3 {
|
||||
width: 100%;
|
||||
height: 80rpx;
|
||||
border: 2rpx solid #E5E5E5;
|
||||
border-radius: 12rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
.upload-box.data-v-98282eb3 {
|
||||
width: 160rpx;
|
||||
height: 160rpx;
|
||||
border: 2rpx dashed #ccc;
|
||||
border-radius: 12rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.upload-add.data-v-98282eb3 {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.upload-icon.data-v-98282eb3 {
|
||||
font-size: 48rpx;
|
||||
color: #999;
|
||||
}
|
||||
.upload-text.data-v-98282eb3 {
|
||||
font-size: 24rpx;
|
||||
color: #999;
|
||||
margin-top: 8rpx;
|
||||
}
|
||||
.upload-img.data-v-98282eb3 {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-radius: 12rpx;
|
||||
}
|
||||
.popup-footer.data-v-98282eb3 {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 30rpx;
|
||||
margin-top: 40rpx;
|
||||
}
|
||||
.btn-cancel.data-v-98282eb3 {
|
||||
flex: 1;
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
border: 2rpx solid #E5E5E5;
|
||||
border-radius: 40rpx;
|
||||
background: #fff;
|
||||
color: #333;
|
||||
font-size: 30rpx;
|
||||
}
|
||||
.btn-confirm.data-v-98282eb3 {
|
||||
flex: 1;
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
border-radius: 40rpx;
|
||||
color: #fff;
|
||||
font-size: 30rpx;
|
||||
}
|
||||
.law-popup.data-v-98282eb3 {
|
||||
width: 600rpx;
|
||||
background: #fff;
|
||||
border-radius: 20rpx;
|
||||
padding: 30rpx;
|
||||
max-height: 80vh;
|
||||
}
|
||||
.search-box.data-v-98282eb3 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
background: #F5F5F5;
|
||||
border-radius: 40rpx;
|
||||
padding: 16rpx 24rpx;
|
||||
margin-bottom: 24rpx;
|
||||
}
|
||||
.search-icon.data-v-98282eb3 {
|
||||
font-size: 28rpx;
|
||||
margin-right: 12rpx;
|
||||
}
|
||||
.search-input.data-v-98282eb3 {
|
||||
flex: 1;
|
||||
font-size: 28rpx;
|
||||
background: transparent;
|
||||
}
|
||||
.law-list.data-v-98282eb3 {
|
||||
max-height: 500rpx;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.law-item.data-v-98282eb3 {
|
||||
padding: 24rpx;
|
||||
border: 2rpx solid #E5E5E5;
|
||||
border-radius: 12rpx;
|
||||
margin-bottom: 16rpx;
|
||||
font-size: 28rpx;
|
||||
color: #333;
|
||||
}
|
||||
.law-item-active.data-v-98282eb3 {
|
||||
border-color: #2667E9;
|
||||
background: #F0F6FF;
|
||||
}
|
||||
.load-more.data-v-98282eb3 {
|
||||
text-align: center;
|
||||
padding: 24rpx;
|
||||
border: 2rpx solid #2667E9;
|
||||
border-radius: 40rpx;
|
||||
margin-top: 16rpx;
|
||||
}
|
||||
.law-footer.data-v-98282eb3 {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 30rpx;
|
||||
margin-top: 30rpx;
|
||||
}
|
||||
.library-popup.data-v-98282eb3 {
|
||||
width: 600rpx;
|
||||
background: #fff;
|
||||
border-radius: 20rpx;
|
||||
padding: 30rpx;
|
||||
max-height: 80vh;
|
||||
}
|
||||
.library-list.data-v-98282eb3 {
|
||||
max-height: 500rpx;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.library-item.data-v-98282eb3 {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
padding: 24rpx;
|
||||
border: 2rpx solid #E5E5E5;
|
||||
border-radius: 12rpx;
|
||||
margin-bottom: 16rpx;
|
||||
}
|
||||
.library-checkbox.data-v-98282eb3 {
|
||||
width: 40rpx;
|
||||
height: 40rpx;
|
||||
border: 2rpx solid #ccc;
|
||||
border-radius: 8rpx;
|
||||
margin-right: 20rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-shrink: 0;
|
||||
margin-top: 4rpx;
|
||||
}
|
||||
.library-checkbox-active.data-v-98282eb3 {
|
||||
background: #2667E9;
|
||||
border-color: #2667E9;
|
||||
color: #fff;
|
||||
}
|
||||
.library-info.data-v-98282eb3 {
|
||||
flex: 1;
|
||||
}
|
||||
.library-name.data-v-98282eb3 {
|
||||
font-size: 28rpx;
|
||||
color: #333;
|
||||
line-height: 1.5;
|
||||
}
|
||||
.library-count.data-v-98282eb3 {
|
||||
font-size: 24rpx;
|
||||
margin-top: 8rpx;
|
||||
}
|
||||
.btn-add-library.data-v-98282eb3 {
|
||||
width: 100%;
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
border-radius: 40rpx;
|
||||
color: #fff;
|
||||
font-size: 30rpx;
|
||||
margin-top: 30rpx;
|
||||
}
|
||||
Reference in New Issue
Block a user