This commit is contained in:
周源 2022-01-07 17:19:57 +08:00
parent c3c3f46073
commit 6f69fd6ab2
227 changed files with 118 additions and 78 deletions

View File

@ -161,27 +161,67 @@ public class ApiAuthController extends ApiBaseController {
@ApiImplicitParams(value = { @ApiImplicitParams(value = {
@ApiImplicitParam(name = "login", value = "用户名"), @ApiImplicitParam(name = "login", value = "用户名"),
@ApiImplicitParam(name = "pwd", value = "密码"), @ApiImplicitParam(name = "pwd", value = "密码"),
@ApiImplicitParam(name = "phone", value = "手机号"),
@ApiImplicitParam(name = "code", value = "验证码"),
@ApiImplicitParam(name = "type", value = "phone / name"),
}) })
@DynamicResponseParameters(properties = { @DynamicResponseParameters(properties = {
@DynamicParameter(name = "type", value = "身份 admin县级人大工作人员 street乡镇负责人 contact联络站负责人 rddb各级人大代表 voter选民用户") @DynamicParameter(name = "type", value = "身份 admin县级人大工作人员 street乡镇负责人 contact联络站负责人 rddb各级人大代表 voter选民用户")
}) })
public void auth(String login, String pwd) { public void auth(String login, String pwd,String phone,String code,String type) {
if(StrUtil.isBlank(type)) type="name";
login=CodecUtils.encrypt(login); login=CodecUtils.encrypt(login);
Ret ret = userService.login(login, pwd); if("name".equals(type)){
if (ret.isFail()) { User user = userService.getOne((Wrapper) (new QueryWrapper()).eq("login_name", login));
render(Ret.fail(ret.get("msg").toString())); Ret ret = userService.login(login, pwd);
if (ret.isFail()) {
render(Ret.fail(ret.get("msg").toString()));
}
login(user);
Kv authInfo = TokenUtil.createAuthInfo(user);
//身份 admin县级人大工作人员 street乡镇负责人 contact联络站负责人 rddb各级人大代表 voter选民用户
authInfo.set("type", user.getAccountType());
render(Ret.ok().data(authInfo));
}else{
if (redisTemplate.hasKey(phone)) {
String redisCode = (String) redisTemplate.opsForValue().get(phone);
phone=CodecUtils.encrypt(phone);
User user = userService.getOne((Wrapper) (new QueryWrapper()).eq("login_name", phone));
if (code.equals(redisCode)) {
login(user);
Kv authInfo = TokenUtil.createAuthInfo(user);
//身份 admin县级人大工作人员 street乡镇负责人 contact联络站负责人 rddb各级人大代表 voter选民用户
authInfo.set("type", user.getAccountType());
render(Ret.ok().data(authInfo));
}
}
render(Ret.fail("验证码已失效"));
} }
User user = userService.getOne((Wrapper) (new QueryWrapper()).eq("login_name", login)); }
login(user);
Kv authInfo = TokenUtil.createAuthInfo(user); @PostMapping("sendCode/login")
//身份 admin县级人大工作人员 street乡镇负责人 contact联络站负责人 rddb各级人大代表 voter选民用户 @ResponseBody
authInfo.set("type", user.getAccountType()); @ApiOperation(value = "发送登录验证码")
render(Ret.ok().data(authInfo)); @ApiImplicitParam(name = "phone", value = "手机号", required = true)
public void sendPhoneCode(String phone) {
String secretPhone=CodecUtils.encrypt(phone);
//作为loginName的手机号不能重复
User repeatUser = checkPhoneRepeat(secretPhone);
if (repeatUser == null) render(Ret.fail("账号未注册"));
//存储验证码
String code = RandomUtil.randomNumbers(6);
redisTemplate.opsForValue().set(phone, code, 10 * 60, TimeUnit.SECONDS);
SmsUtil.sendMsg(phone, code);
render(Ret.ok());
} }
@PostMapping("sendCode") @PostMapping("sendCode")
@ResponseBody @ResponseBody
@ApiOperation(value = "发送验证码") @ApiOperation(value = "发送注册验证码")
@ApiImplicitParam(name = "phone", value = "手机号", required = true) @ApiImplicitParam(name = "phone", value = "手机号", required = true)
public void sendCode(String phone) { public void sendCode(String phone) {
//一分钟可重发 //一分钟可重发

0
src/main/resources/views/dist/css/app.da088d76.css vendored Normal file → Executable file
View File

View File

@ -1 +0,0 @@
.van-loading--vertical[data-v-0e6e51f5]{height:100% min-height 2.5rem;justify-content:center}

View File

@ -0,0 +1 @@
.unreview[data-v-c7fd9ee2]{color:#409eff!important}.passed[data-v-c7fd9ee2],.unreview[data-v-c7fd9ee2]{margin-left:.26667rem!important;flex-shrink:0!important;font-size:.34667rem!important}.passed[data-v-c7fd9ee2]{color:#67c23a!important}.rejected[data-v-c7fd9ee2]{margin-left:.26667rem!important;flex-shrink:0!important;font-size:.34667rem!important;color:#f56c6c!important}.addUpload[data-v-c7fd9ee2]{position:fixed;bottom:1.6rem;right:.13333rem;width:1.6rem;height:1.6rem}.single[data-v-c7fd9ee2]{box-sizing:border-box;padding:.42667rem .32rem;background:#fff;margin-bottom:.32rem}.single[data-v-c7fd9ee2]:last-of-type{margin-bottom:0}.imgBox[data-v-c7fd9ee2]{width:.66667rem;height:.66667rem;flex-shrink:0;margin-left:.53333rem}.commonClass[data-v-c7fd9ee2]{font-size:.32rem;font-weight:400;color:#999;padding-bottom:.16rem}.enclosureBox[data-v-c7fd9ee2]{padding:.42667rem;background:#f8f8f8;border-radius:.10667rem;margin:.32rem 0}.singleEnclosure[data-v-c7fd9ee2]{display:flex;align-items:center;justify-content:space-between;margin-bottom:.21333rem}.enclosureBox .enclosureTitle[data-v-c7fd9ee2]{font-size:.4rem;font-weight:600;color:#333;flex:1}.single h5[data-v-c7fd9ee2]{font-size:.42667rem;letter-spacing:.02667rem;color:#333;margin-bottom:.32rem}.msgContent[data-v-c7fd9ee2]{font-size:.32rem;font-weight:400;color:#999;letter-spacing:.02667rem;line-height:.42667rem}

0
src/main/resources/views/dist/css/chunk-02395d19.626939b6.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-042d963c.373dd783.css vendored Normal file → Executable file
View File

View File

@ -0,0 +1 @@
.elderBtn[data-v-75773a44]{width:100%!important}.login-box[data-v-75773a44]{background-color:#fff}.login-wrapper[data-v-75773a44]{padding:2.13333rem .85333rem 0 .85333rem;z-index:50}.login-wrapper .title[data-v-75773a44]{font-size:.64rem;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;color:#000;position:relative}.login-wrapper .title span[data-v-75773a44]{position:absolute;right:0;bottom:0;font-size:.42667rem;font-family:PingFang SC,PingFang SC-Regular;font-weight:400;color:#d03a29}.login-wrapper .title span.tabButton[data-v-75773a44]{right:1.86667rem}.login-wrapper .account[data-v-75773a44]{padding-top:1.06667rem;margin-bottom:.85333rem}.login-wrapper .password[data-v-75773a44]{margin-bottom:1.06667rem}.login-wrapper .account .line[data-v-75773a44],.login-wrapper .password .line[data-v-75773a44]{height:.02667rem;background:#efefef}.login-wrapper .account p[data-v-75773a44],.login-wrapper .password p[data-v-75773a44]{font-size:.42667rem;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;text-align:left;color:#000;padding-bottom:.34667rem}.login-wrapper .account .loginconter[data-v-75773a44],.login-wrapper .password .loginconter[data-v-75773a44]{display:flex;align-items:center;margin-bottom:.10667rem}.login-wrapper .account .loginconter .van-cell[data-v-75773a44],.login-wrapper .password .loginconter .van-cell[data-v-75773a44]{padding:0}.login-wrapper .account .loginconter .van-cell[data-v-75773a44]:after,.login-wrapper .password .loginconter .van-cell[data-v-75773a44]:after{display:none}.login-wrapper .account .loginconter input[data-v-75773a44],.login-wrapper .password .loginconter input[data-v-75773a44]{width:100%;outline:none;border:none;font-size:.37333rem;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;text-align:left;color:#333}.login-wrapper .account .loginconter img[data-v-75773a44],.login-wrapper .password .loginconter img[data-v-75773a44]{width:.32rem;height:.32rem}.login-wrapper .account .loginconter[data-v-75773a44] .van-button--normal,.login-wrapper .password .loginconter[data-v-75773a44] .van-button--normal{padding:0;height:auto}.login-wrapper .account .loginconter[data-v-75773a44] .van-button--default,.login-wrapper .password .loginconter[data-v-75773a44] .van-button--default{border:.02667rem solid #fff}.login-wrapper .account .loginconter[data-v-75773a44] .van-button__content,.login-wrapper .password .loginconter[data-v-75773a44] .van-button__content{width:1.86667rem;font-size:.37333rem;font-family:PingFang SC,PingFang SC-Regular;font-weight:400;color:#000}.login-wrapper .remember[data-v-75773a44]{margin-bottom:1.06667rem;display:flex;justify-content:space-between;align-items:center}.login-wrapper .remember .label[data-v-75773a44]{font-size:.42667rem;color:#000;font-weight:700}.login-wrapper .btn[data-v-75773a44]{width:8.53333rem;height:1.06667rem;background:#d03a29;border-radius:.53333rem;box-shadow:0 .08rem .16rem 0 rgba(208,58,41,.2);line-height:1.06667rem;font-size:.37333rem;text-align:center;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;color:#fff;letter-spacing:.02667rem}.login-box[data-v-75773a44]{position:relative;display:flex;flex-direction:column;height:100%}.footerbg[data-v-75773a44]{width:100%;z-index:30;position:absolute;bottom:0}.footerbg img[data-v-75773a44]{display:block;width:100%}

0
src/main/resources/views/dist/css/chunk-0da3b1e4.a1574e37.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-1145a2ad.a8b1aeac.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-1396bae7.476fc288.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-14addab8.c852f4ed.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-152bf35d.7107509e.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-15b47c20.6caf7a2c.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-1657bec4.f6d8ce13.css vendored Normal file → Executable file
View File

View File

@ -1 +0,0 @@
.item[data-v-e14902a8]{box-sizing:border-box;padding:.42667rem .32rem;background:#fff;margin-bottom:.32rem}.uploadContent[data-v-e14902a8]{font-size:.37333rem;font-weight:700;margin-bottom:.32rem}.messageBox[data-v-e14902a8]{padding:0!important}[data-v-e14902a8] .messageBox .van-cell__value{background-color:#f8f8f8;padding:.32rem}.uplooadImg[data-v-e14902a8]{display:flex;align-items:center;justify-content:space-between;margin-bottom:.32rem;font-size:.37333rem;font-weight:700}.enclosureArr[data-v-e14902a8]{display:flex;flex-wrap:wrap}.enclosureArr .single[data-v-e14902a8]{position:relative;width:2.13333rem;height:2.13333rem;margin-right:.21333rem}.redDel[data-v-e14902a8]{position:absolute;top:0;right:0}.btn[data-v-e14902a8]{position:fixed;bottom:0;width:100%;margin-bottom:0!important}

0
src/main/resources/views/dist/css/chunk-19009b1e.74625ca0.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-1bde3c62.9cd55c2e.css vendored Normal file → Executable file
View File

View File

@ -1 +0,0 @@
.elderBtn[data-v-0799d476]{width:100%!important}.login-box[data-v-0799d476]{background-color:#fff}.login-wrapper[data-v-0799d476]{padding:2.13333rem .85333rem 0 .85333rem;z-index:50}.login-wrapper .title[data-v-0799d476]{font-size:.64rem;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;color:#000;position:relative}.login-wrapper .title span[data-v-0799d476]{position:absolute;right:0;bottom:0;font-size:.42667rem;font-family:PingFang SC,PingFang SC-Regular;font-weight:400;color:#d03a29}.login-wrapper .account[data-v-0799d476]{padding-top:1.06667rem;margin-bottom:.85333rem}.login-wrapper .password[data-v-0799d476]{margin-bottom:1.06667rem}.login-wrapper .account .line[data-v-0799d476],.login-wrapper .password .line[data-v-0799d476]{height:.02667rem;background:#efefef}.login-wrapper .account p[data-v-0799d476],.login-wrapper .password p[data-v-0799d476]{font-size:.42667rem;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;text-align:left;color:#000;padding-bottom:.34667rem}.login-wrapper .account .loginconter[data-v-0799d476],.login-wrapper .password .loginconter[data-v-0799d476]{display:flex;align-items:center;margin-bottom:.10667rem}.login-wrapper .account .loginconter .van-cell[data-v-0799d476],.login-wrapper .password .loginconter .van-cell[data-v-0799d476]{padding:0}.login-wrapper .account .loginconter .van-cell[data-v-0799d476]:after,.login-wrapper .password .loginconter .van-cell[data-v-0799d476]:after{display:none}.login-wrapper .account .loginconter input[data-v-0799d476],.login-wrapper .password .loginconter input[data-v-0799d476]{width:100%;outline:none;border:none;font-size:.37333rem;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;text-align:left;color:#333}.login-wrapper .account .loginconter img[data-v-0799d476],.login-wrapper .password .loginconter img[data-v-0799d476]{width:.32rem;height:.32rem}.login-wrapper .remember[data-v-0799d476]{margin-bottom:1.06667rem;display:flex;justify-content:space-between;align-items:center}.login-wrapper .remember .label[data-v-0799d476]{font-size:.42667rem;color:#000;font-weight:700}.login-wrapper .btn[data-v-0799d476]{width:8.53333rem;height:1.06667rem;background:#d03a29;border-radius:.53333rem;box-shadow:0 .08rem .16rem 0 rgba(208,58,41,.2);line-height:1.06667rem;font-size:.37333rem;text-align:center;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;color:#fff;letter-spacing:.02667rem}.login-box[data-v-0799d476]{position:relative;display:flex;flex-direction:column;height:100%}.footerbg[data-v-0799d476]{width:100%;z-index:30;position:absolute;bottom:0}.footerbg img[data-v-0799d476]{display:block;width:100%}

0
src/main/resources/views/dist/css/chunk-26813daa.20395269.css vendored Normal file → Executable file
View File

View File

@ -0,0 +1 @@
.page .superintendence[data-v-55d7fba6],.page[data-v-55d7fba6]{flex:1;display:flex;flex-direction:column;overflow:auto}.page .superintendence .add[data-v-55d7fba6]{position:fixed;bottom:26%;right:0;width:2.72rem;z-index:999}.page .superintendence .list[data-v-55d7fba6]{flex:1}.page .superintendence .list .item[data-v-55d7fba6]{background-color:#fff;padding:.42667rem;margin-bottom:.32rem}.page .superintendence .list .item .title[data-v-55d7fba6]{display:flex;align-items:center;font-size:.42667rem}.page .superintendence .list .item .title .text[data-v-55d7fba6]{font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.page .superintendence .list .item .title .van-tag[data-v-55d7fba6]{width:1.70667rem;border-radius:.32rem;justify-content:center;line-height:.53333rem;margin-left:.10667rem;white-space:nowrap;font-weight:700}.page .superintendence .list .item .detail[data-v-55d7fba6]{margin-top:.32rem}.page .superintendence .list .item .detail .cell[data-v-55d7fba6]{display:flex;font-size:.32rem;line-height:.45333rem}.page .superintendence .list .item .detail .cell[data-v-55d7fba6]:not(:last-child){margin-bottom:.10667rem}.page .superintendence .list .item .detail .cell .label[data-v-55d7fba6]{color:#999;margin-right:.21333rem}.page .superintendence .list .item .detail .cell .value[data-v-55d7fba6]{color:#333;flex:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.page .superintendence .list .item .imgs[data-v-55d7fba6]{display:flex;margin-top:.21333rem}.page .superintendence .list .item .imgs .img[data-v-55d7fba6]{flex:1;border-radius:.10667rem;overflow:hidden}.page .superintendence .list .item .imgs .img+.img[data-v-55d7fba6]{margin-left:.10667rem}.page .superintendence .list .item .imgs .img img[data-v-55d7fba6]{display:block;width:100%;max-height:4rem}.page .superintendence .list .item .bottom[data-v-55d7fba6]{margin-top:.32rem;display:flex;font-size:.32rem}.page .superintendence .list .item .bottom .date[data-v-55d7fba6]{margin-right:.42667rem;color:#999}.page .superintendence .list .item .bottom .more[data-v-55d7fba6]{color:#d03a29}.page .superintendence .list .item>.more[data-v-55d7fba6]{display:flex;justify-content:space-between;font-size:.32rem;color:#333;font-weight:700;padding-top:.32rem;margin-top:.32rem;border-top:.02667rem solid #f8f8f8}

0
src/main/resources/views/dist/css/chunk-29b137c6.79c25f39.css vendored Normal file → Executable file
View File

View File

@ -1 +0,0 @@
.box[data-v-7eee39f4]{background-color:#fff;margin-bottom:.32rem}.grassrootsNews .item[data-v-7eee39f4]{position:relative;padding:.4rem .42667rem;display:flex}.grassrootsNews .item[data-v-7eee39f4]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.grassrootsNews .item .info[data-v-7eee39f4]{width:0;flex:1}.grassrootsNews .item .info .title[data-v-7eee39f4]{flex:1;font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700}.grassrootsNews .item .info .text[data-v-7eee39f4]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.grassrootsNews .item .img[data-v-7eee39f4]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}.opinionBox .opinionArrow[data-v-7eee39f4]{color:#ccc;font-size:.475rem;margin-left:.4rem}.opinionBox .opinionArrow[data-v-7eee39f4]:before{vertical-align:middle}

0
src/main/resources/views/dist/css/chunk-2cb02852.cdfe5403.css vendored Normal file → Executable file
View File

View File

@ -1 +1 @@
.statusP[data-v-7b98c5b3]{margin-top:.21333rem!important;font-size:.34667rem!important}.commonEle[data-v-7b98c5b3]{padding:.42667rem .32rem;background:#fff;margin-bottom:.32rem}.top h5[data-v-7b98c5b3]{font-size:.42667rem;letter-spacing:.02667rem;color:#333;margin-bottom:.32rem}.top p[data-v-7b98c5b3]{font-size:.32rem;color:#333;line-height:.48rem;font-weight:400}.item[data-v-7b98c5b3]{padding-left:.53333rem;font-size:.32rem;color:#999;margin-bottom:.10667rem}.date[data-v-7b98c5b3]{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAC2UlEQVRIS61Wz0tUURT+vvcETYQMWrQIyr0tAv+AIFvXIkhRaQKbM6NmSkFCRUpBbkLFH/PuIGg00ixaFLQJXfgHuAhq56YgyIWQgUw6zHsnrr1X4zijT+it3n333vOd851zvvOIQ575+flzpVKpg2S7qraSPGOPq+oGyc+qulJXV5fv7e39WssMq21Yw77vj6vqdZJ1ZWd2wveG6Juqlki+cV13pBrQAQBjzE1VnSHZBGALQM73/Xe7u7trw8PDdo2JiYnm+vr6Ntd1rwLoBtCsqtskB0TkZbnT+wA8z7tLcjI8MANgTEQ27Xp2drbJdd3LGxsbH0ZHR6NIYIw5DeAJgIGQvqFUKjUVgfwFsJ4DWLQhA7iVSqVy5Z5ks9mnqvoIwH0ReVFJred5NpKFkNJEFMkeQCaTOU/yk6VFVXsqjdsznufZywkAoyIyVi13FoTkK0uXql5Ip9Nf9gCMMa8BdACYEZE7NS4fCRDamg7pyotIJ0Pv10luFwqFliiRVSiIC2Bzsq6qTcVisYXGmIcAngGYFJHhWvUch6LorjFmLwpVHbEAywDafd+/0tfXt/I/AObm5tpd111W1ff0PO+77dBCoXCqFj1xkxw5Z/uksbHxx17HG2MUwI6InDhMNiKKVHWV5GqNs5siMhsm+xeAhtgAxpgJAEOHOWH3SqXSxf7+/o/GmD8AcSmy1eY4zj1bHVVANm0VktxKJpNTlRTFSvJRnpfvVyb5Acnxo8r0OAD7yjRuo8UFCMXvX6PFlYpjAERSkRORngNiR7I7mUwuxTVYobhdqpo7IHahoiYcx1mwcu04TuK4INlstisIgkUr10EQdKbT6by1G3vg1Ioo9sCJDGQymQTJ6fKRqapvSa6JyM8wZydVtY3ktfKRqaq3I88je1WHfthUz48x9PNBEDy2A6Yy0qoAZdHYSXeD5CUArQDOhnvfANjfltVisbg0ODho11Wf3y3rwDI1XzfhAAAAAElFTkSuQmCC) no-repeat;background-size:.32rem;background-position:0}.dateContent[data-v-7b98c5b3]{font-size:.37333rem;font-weight:700;margin-bottom:.32rem;padding-left:.53333rem;line-height:.53333rem}.town[data-v-7b98c5b3]{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAC7klEQVRIS7WVP2gUURDGv9m9hBBSWAheYWEgYgRBBQMKCooKERKwMJUBGy/v3W2CphAUUpwoKFjEcNnbt7kUFrGKoKCgoEJAQSEBFQQVAwZszs5CDkl2MzLHrpxyfzYYX7f75s1v5nsz8wgtVqlU2haG4SiA0wB2iDkRLTPzI9u2pzOZzLdmLqjZpu/755h5moi66tkx8w/LsvTIyMjdRn4aAmZmZs4y81x0cI6Zp7TWS/JtjDlARBcADEcZDTeC1AW4rpu2bfuzRM7MF7XWU/UiNMZcIKLbkkkYhjsdxyn/bVcXYIy5RkQTorPWerCZjMaYh0Q0ACCvlLqaCOD7/gsAh5l5SGt9rwXgDBHNM/OC1vpYUsAXqZjV1dXdY2NjH5sBCoVCb3t7+wcAK0qp7qSARQAHmPmU1vpJiwz6iegxgCWlVF9SwCSAiwBmlVKZFqVcAnAewG2l1HgigOd5e4joTWTcr7V+3qCKjgOoZsjM+7PZ7PtEADHyff8GgMsAfgKYCILAdxznh+y5rtuVSqUUgOsAOgDcVEpdqRdEq04uAJAxIUtA8YX3Ro7l/7RSamzDnWyM2RvdwzARpRqMioCI7sg40Vq/S5TB5OTkls7OzlvRxVXPMLNou0RE1U5l5rRUGRHtqXE6W6lULo2Pj3+vBf0hUbFY3GVZ1hMikqkpkpj19fWpbDa7Ui86z/N2WJYlM0lHki2HYTiQy+U+xfa/AZHzBSKS6N4GQTDkOM5ysxKN91zX7UmlUvMA9jFzOQzDI/HZKiCfz3ek0+lFSZmIFtbW1gbjikkCiCurra3tITMfFUnL5XJfPp//WQXUlOTHIAj6Nuq8JhMpX+mfnnj4ke/7WwF8FQ3DMDyZy+WeJY26nl2xWDxh2/ZTAN8rlUq3AKRhDDO/1lof+hfn8VljzCsiOiiXL4D78t4yc1ZrbTYD4HneqGVZ0qQPBCDybA+CYL/jOG83AxA9qYvMvCIA3gynDUdF/Hr9J8jLX/iKSZDcqyEKAAAAAElFTkSuQmCC) no-repeat;background-size:.32rem;background-position:0}.towncontent[data-v-7b98c5b3]{font-size:.37333rem;font-weight:700;padding-left:.53333rem;line-height:.53333rem}.uploadTime[data-v-7b98c5b3]{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAADIElEQVRIS5VWMWjVUBQ9N4kfhw4OFX7BoYOgIt0qKHawqGDRQVFQB0Gw8N7nQ1V0UFD8YAcFRS2myYuKg4JCCxYcFBwUVBDqoNhBsOKiJBShHUqxmObK/SQSY/ubZgy559x73znnhbCCx3XdNtu2RxzHGezv739bppTKfCTfNBoNp6OjYwTAfgCTYRhuajQa8XL1pQgEvFqtPiKiQ8wcEVGvUupzBh4EwWYA7XEcz05NTX3MEy9LkAcHMANgWwZujNkL4CaA9RmZNADggtb6nrxrSVDofJaI+pRSb6TQ9/2TRCTg8kwCeA9gHYCe9N0VpdT5JQnKgjPzuSiKrmdrcV23x3GcJ7IyItqxKMEKwE9prW8VD9rzvCOWZT0CMLYogTHmDoB+Zi6u5TARPRZAZl4UPFNctVqdJqJf/xH4vn+DiE4VwYMgOJgkyWMiclqBZ9MYY6aZue0fgpLg57TWVwVoeHh4Q6VSaS+azvf9biIaZ+aJvwQ5cDHPUa31qIDkOxdJKqVOZ+CWZb0C0AagV2stKkLq9hdEtFXk2iTwff8EEd1l5hWBE1EVwJs4jvvq9fqsgDuO8yyV6uTc3NwWcl236jjONwCrmfmY1vphmc5bgefdTsaYSxI1Iiml1IF0op0AnsuB5tcyNDS0rlKpjBfB8zlVjBIhGAfQzcx9Wuvnnud1EtEnIpLd/t15OulLABvza1kup4RgGsAaAGuVUj+NMWcAXMtPlAdn5ncLCwu7ZeeLGHJLPgSbWeT7/m9ZRRiGq8TuQRBcZuYLAJpZUuj8cxzHvfV6PWrl9ryzZYIvkoZJknTVarUJz/P2WZb1FMAvZhap9hBRJ4AVg2cT3Cei48w8qLW+mCrIY2ad6+RDKsXSnWe15HneDsuy5PBm5ufnuwYGBr6nhumxbXs7gK9RFI1lablUTi11szWNZowRc+yRNSRJsqtWq/0oFqQ7v5NO+08Itro2M4J2AK9TCc4w820Ao7ZtR0mSiFx3ATgrZ1UMwdJ3sjFGSB6kkyxVN8nMklPN3Cnz/BfXqYoOp3nSmTpzQiYKw/BemT+JPPEfYaYm1e6LufYAAAAASUVORK5CYII=) no-repeat;background-size:.32rem;background-position:0}.enclosureBox[data-v-7b98c5b3]{padding:.42667rem;background:#f8f8f8;border-radius:.10667rem;margin:.32rem 0}.singleEnclosure[data-v-7b98c5b3]{display:flex;align-items:center;justify-content:space-between;margin-bottom:.21333rem}.enclosureBox .enclosureTitle[data-v-7b98c5b3]{font-size:.4rem;font-weight:600;color:#333;flex:1}.imgBox[data-v-7b98c5b3]{width:.66667rem;height:.66667rem;flex-shrink:0;margin-left:.53333rem} .statusP[data-v-2808e5d5]{margin-top:.21333rem!important;font-size:.34667rem!important}.commonEle[data-v-2808e5d5]{padding:.42667rem .32rem;background:#fff;margin-bottom:.32rem}.top h5[data-v-2808e5d5]{font-size:.42667rem;letter-spacing:.02667rem;color:#333;margin-bottom:.32rem}.top p[data-v-2808e5d5]{font-size:.32rem;color:#333;line-height:.48rem;font-weight:400}.item[data-v-2808e5d5]{padding-left:.53333rem;font-size:.32rem;color:#999;margin-bottom:.10667rem}.date[data-v-2808e5d5]{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAC2UlEQVRIS61Wz0tUURT+vvcETYQMWrQIyr0tAv+AIFvXIkhRaQKbM6NmSkFCRUpBbkLFH/PuIGg00ixaFLQJXfgHuAhq56YgyIWQgUw6zHsnrr1X4zijT+it3n333vOd851zvvOIQ575+flzpVKpg2S7qraSPGOPq+oGyc+qulJXV5fv7e39WssMq21Yw77vj6vqdZJ1ZWd2wveG6Juqlki+cV13pBrQAQBjzE1VnSHZBGALQM73/Xe7u7trw8PDdo2JiYnm+vr6Ntd1rwLoBtCsqtskB0TkZbnT+wA8z7tLcjI8MANgTEQ27Xp2drbJdd3LGxsbH0ZHR6NIYIw5DeAJgIGQvqFUKjUVgfwFsJ4DWLQhA7iVSqVy5Z5ks9mnqvoIwH0ReVFJred5NpKFkNJEFMkeQCaTOU/yk6VFVXsqjdsznufZywkAoyIyVi13FoTkK0uXql5Ip9Nf9gCMMa8BdACYEZE7NS4fCRDamg7pyotIJ0Pv10luFwqFliiRVSiIC2Bzsq6qTcVisYXGmIcAngGYFJHhWvUch6LorjFmLwpVHbEAywDafd+/0tfXt/I/AObm5tpd111W1ff0PO+77dBCoXCqFj1xkxw5Z/uksbHxx17HG2MUwI6InDhMNiKKVHWV5GqNs5siMhsm+xeAhtgAxpgJAEOHOWH3SqXSxf7+/o/GmD8AcSmy1eY4zj1bHVVANm0VktxKJpNTlRTFSvJRnpfvVyb5Acnxo8r0OAD7yjRuo8UFCMXvX6PFlYpjAERSkRORngNiR7I7mUwuxTVYobhdqpo7IHahoiYcx1mwcu04TuK4INlstisIgkUr10EQdKbT6by1G3vg1Ioo9sCJDGQymQTJ6fKRqapvSa6JyM8wZydVtY3ktfKRqaq3I88je1WHfthUz48x9PNBEDy2A6Yy0qoAZdHYSXeD5CUArQDOhnvfANjfltVisbg0ODho11Wf3y3rwDI1XzfhAAAAAElFTkSuQmCC) no-repeat;background-size:.32rem;background-position:0}.dateContent[data-v-2808e5d5]{font-size:.37333rem;font-weight:700;margin-bottom:.32rem;padding-left:.53333rem;line-height:.53333rem}.town[data-v-2808e5d5]{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAC7klEQVRIS7WVP2gUURDGv9m9hBBSWAheYWEgYgRBBQMKCooKERKwMJUBGy/v3W2CphAUUpwoKFjEcNnbt7kUFrGKoKCgoEJAQSEBFQQVAwZszs5CDkl2MzLHrpxyfzYYX7f75s1v5nsz8wgtVqlU2haG4SiA0wB2iDkRLTPzI9u2pzOZzLdmLqjZpu/755h5moi66tkx8w/LsvTIyMjdRn4aAmZmZs4y81x0cI6Zp7TWS/JtjDlARBcADEcZDTeC1AW4rpu2bfuzRM7MF7XWU/UiNMZcIKLbkkkYhjsdxyn/bVcXYIy5RkQTorPWerCZjMaYh0Q0ACCvlLqaCOD7/gsAh5l5SGt9rwXgDBHNM/OC1vpYUsAXqZjV1dXdY2NjH5sBCoVCb3t7+wcAK0qp7qSARQAHmPmU1vpJiwz6iegxgCWlVF9SwCSAiwBmlVKZFqVcAnAewG2l1HgigOd5e4joTWTcr7V+3qCKjgOoZsjM+7PZ7PtEADHyff8GgMsAfgKYCILAdxznh+y5rtuVSqUUgOsAOgDcVEpdqRdEq04uAJAxIUtA8YX3Ro7l/7RSamzDnWyM2RvdwzARpRqMioCI7sg40Vq/S5TB5OTkls7OzlvRxVXPMLNou0RE1U5l5rRUGRHtqXE6W6lULo2Pj3+vBf0hUbFY3GVZ1hMikqkpkpj19fWpbDa7Ui86z/N2WJYlM0lHki2HYTiQy+U+xfa/AZHzBSKS6N4GQTDkOM5ysxKN91zX7UmlUvMA9jFzOQzDI/HZKiCfz3ek0+lFSZmIFtbW1gbjikkCiCurra3tITMfFUnL5XJfPp//WQXUlOTHIAj6Nuq8JhMpX+mfnnj4ke/7WwF8FQ3DMDyZy+WeJY26nl2xWDxh2/ZTAN8rlUq3AKRhDDO/1lof+hfn8VljzCsiOiiXL4D78t4yc1ZrbTYD4HneqGVZ0qQPBCDybA+CYL/jOG83AxA9qYvMvCIA3gynDUdF/Hr9J8jLX/iKSZDcqyEKAAAAAElFTkSuQmCC) no-repeat;background-size:.32rem;background-position:0}.towncontent[data-v-2808e5d5]{font-size:.37333rem;font-weight:700;padding-left:.53333rem;line-height:.53333rem}.uploadTime[data-v-2808e5d5]{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAADIElEQVRIS5VWMWjVUBQ9N4kfhw4OFX7BoYOgIt0qKHawqGDRQVFQB0Gw8N7nQ1V0UFD8YAcFRS2myYuKg4JCCxYcFBwUVBDqoNhBsOKiJBShHUqxmObK/SQSY/ubZgy559x73znnhbCCx3XdNtu2RxzHGezv739bppTKfCTfNBoNp6OjYwTAfgCTYRhuajQa8XL1pQgEvFqtPiKiQ8wcEVGvUupzBh4EwWYA7XEcz05NTX3MEy9LkAcHMANgWwZujNkL4CaA9RmZNADggtb6nrxrSVDofJaI+pRSb6TQ9/2TRCTg8kwCeA9gHYCe9N0VpdT5JQnKgjPzuSiKrmdrcV23x3GcJ7IyItqxKMEKwE9prW8VD9rzvCOWZT0CMLYogTHmDoB+Zi6u5TARPRZAZl4UPFNctVqdJqJf/xH4vn+DiE4VwYMgOJgkyWMiclqBZ9MYY6aZue0fgpLg57TWVwVoeHh4Q6VSaS+azvf9biIaZ+aJvwQ5cDHPUa31qIDkOxdJKqVOZ+CWZb0C0AagV2stKkLq9hdEtFXk2iTwff8EEd1l5hWBE1EVwJs4jvvq9fqsgDuO8yyV6uTc3NwWcl236jjONwCrmfmY1vphmc5bgefdTsaYSxI1Iiml1IF0op0AnsuB5tcyNDS0rlKpjBfB8zlVjBIhGAfQzcx9Wuvnnud1EtEnIpLd/t15OulLABvza1kup4RgGsAaAGuVUj+NMWcAXMtPlAdn5ncLCwu7ZeeLGHJLPgSbWeT7/m9ZRRiGq8TuQRBcZuYLAJpZUuj8cxzHvfV6PWrl9ryzZYIvkoZJknTVarUJz/P2WZb1FMAvZhap9hBRJ4AVg2cT3Cei48w8qLW+mCrIY2ad6+RDKsXSnWe15HneDsuy5PBm5ufnuwYGBr6nhumxbXs7gK9RFI1lablUTi11szWNZowRc+yRNSRJsqtWq/0oFqQ7v5NO+08Itro2M4J2AK9TCc4w820Ao7ZtR0mSiFx3ATgrZ1UMwdJ3sjFGSB6kkyxVN8nMklPN3Cnz/BfXqYoOp3nSmTpzQiYKw/BemT+JPPEfYaYm1e6LufYAAAAASUVORK5CYII=) no-repeat;background-size:.32rem;background-position:0}.enclosureBox[data-v-2808e5d5]{padding:.42667rem;background:#f8f8f8;border-radius:.10667rem;margin:.32rem 0}.singleEnclosure[data-v-2808e5d5]{display:flex;align-items:center;justify-content:space-between;margin-bottom:.21333rem}.enclosureBox .enclosureTitle[data-v-2808e5d5]{font-size:.4rem;font-weight:600;color:#333;flex:1}.imgBox[data-v-2808e5d5]{width:.66667rem;height:.66667rem;flex-shrink:0;margin-left:.53333rem}

0
src/main/resources/views/dist/css/chunk-31a718bc.d2b7ae23.css vendored Normal file → Executable file
View File

View File

@ -1 +0,0 @@
.opinionBox[data-v-5d8a950f]{padding:.42667rem}.opinionBox .opinionTitle[data-v-5d8a950f]{font-size:.48rem;color:#333;line-height:.66667rem;font-weight:700}.opinionBox .opinionContain[data-v-5d8a950f]{border-radius:.10667rem;font-size:.38rem;color:#333;line-height:.6rem;background-color:#e6e6e6;margin-top:.32rem;padding:.22667rem}.opinionBox .opinionContain .conTitle[data-v-5d8a950f]{color:#d03a29;font-weight:700}

0
src/main/resources/views/dist/css/chunk-35669876.4bb2da0f.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-3720d1d4.1facf2bc.css vendored Normal file → Executable file
View File

File diff suppressed because one or more lines are too long

0
src/main/resources/views/dist/css/chunk-3a8a56ba.8d0415af.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-3b58f573.922f249c.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-3c477e8f.7244d304.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-3f2d8ae6.c684e19e.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-3ff4ec73.251c190e.css vendored Normal file → Executable file
View File

View File

@ -1 +0,0 @@
.unreview[data-v-5ee1fb2d]{color:#409eff!important}.passed[data-v-5ee1fb2d],.unreview[data-v-5ee1fb2d]{margin-left:.26667rem!important;flex-shrink:0!important;font-size:.34667rem!important}.passed[data-v-5ee1fb2d]{color:#67c23a!important}.rejected[data-v-5ee1fb2d]{margin-left:.26667rem!important;flex-shrink:0!important;font-size:.34667rem!important;color:#f56c6c!important}.addUpload[data-v-5ee1fb2d]{position:fixed;bottom:1.6rem;right:.13333rem;width:1.6rem;height:1.6rem}.single[data-v-5ee1fb2d]{box-sizing:border-box;padding:.42667rem .32rem;background:#fff;margin-bottom:.32rem}.single[data-v-5ee1fb2d]:last-of-type{margin-bottom:0}.imgBox[data-v-5ee1fb2d]{width:.66667rem;height:.66667rem;flex-shrink:0;margin-left:.53333rem}.commonClass[data-v-5ee1fb2d]{font-size:.32rem;font-weight:400;color:#999;padding-bottom:.16rem}.enclosureBox[data-v-5ee1fb2d]{padding:.42667rem;background:#f8f8f8;border-radius:.10667rem;margin:.32rem 0}.singleEnclosure[data-v-5ee1fb2d]{display:flex;align-items:center;justify-content:space-between;margin-bottom:.21333rem}.enclosureBox .enclosureTitle[data-v-5ee1fb2d]{font-size:.4rem;font-weight:600;color:#333;flex:1}.single h5[data-v-5ee1fb2d]{font-size:.42667rem;letter-spacing:.02667rem;color:#333;margin-bottom:.32rem}.msgContent[data-v-5ee1fb2d]{font-size:.32rem;font-weight:400;color:#999;letter-spacing:.02667rem;line-height:.42667rem}

0
src/main/resources/views/dist/css/chunk-43ede3bc.ab9bea32.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-489d579a.53951b2e.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-4a6e37df.91f4f14b.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-4a9450f4.d2f42d7e.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-4b0a3731.8ccf3c17.css vendored Normal file → Executable file
View File

View File

@ -0,0 +1 @@
.opinionBox[data-v-20f550c8]{padding:.42667rem}.opinionBox .opinionTitle[data-v-20f550c8]{font-size:.48rem;color:#333;line-height:.66667rem;font-weight:700}.opinionBox .opinionContain[data-v-20f550c8]{border-radius:.10667rem;font-size:.38rem;color:#333;line-height:.6rem;background-color:#e6e6e6;margin-top:.32rem;padding:.22667rem}.opinionBox .opinionContain .conTitle[data-v-20f550c8]{color:#d03a29;font-weight:700}

0
src/main/resources/views/dist/css/chunk-4dd1c6f6.1a62df90.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-50729b90.264427d3.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-50dc843c.a5d61465.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-52221fcf.8a7cf104.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-5708d936.2b9b94e7.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-57e670c8.e270b81d.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-583c1436.e8729339.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-58a69710.78a801b7.css vendored Normal file → Executable file
View File

View File

@ -0,0 +1 @@
.van-loading--vertical[data-v-1ecb08b3]{height:100% min-height 2.5rem;justify-content:center}

View File

@ -0,0 +1 @@
.login-box[data-v-3619772f]{background-color:#fff}.login-wrapper[data-v-3619772f]{padding:2.13333rem .85333rem 0 .85333rem;z-index:50}.login-wrapper .title[data-v-3619772f]{font-size:.64rem;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;color:#000;position:relative}.login-wrapper .title span[data-v-3619772f]{position:absolute;right:0;bottom:0;font-size:.42667rem;font-family:PingFang SC,PingFang SC-Regular;font-weight:400;color:#d03a29}.login-wrapper .account[data-v-3619772f]{padding-top:1.06667rem;margin-bottom:.85333rem}.login-wrapper .password[data-v-3619772f]{margin-bottom:1.06667rem}.login-wrapper .account .line[data-v-3619772f],.login-wrapper .password .line[data-v-3619772f]{height:.02667rem;background:#efefef}.login-wrapper .account p[data-v-3619772f],.login-wrapper .password p[data-v-3619772f]{font-size:.42667rem;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;text-align:left;color:#000;padding-bottom:.34667rem}.login-wrapper .account .loginconter[data-v-3619772f],.login-wrapper .password .loginconter[data-v-3619772f]{display:flex;align-items:center;margin-bottom:.10667rem}.login-wrapper .account .loginconter .van-cell[data-v-3619772f],.login-wrapper .password .loginconter .van-cell[data-v-3619772f]{padding:0}.login-wrapper .account .loginconter .van-cell[data-v-3619772f]:after,.login-wrapper .password .loginconter .van-cell[data-v-3619772f]:after{display:none}.login-wrapper .account .loginconter input[data-v-3619772f],.login-wrapper .password .loginconter input[data-v-3619772f]{width:100%;outline:none;border:none;font-size:.37333rem;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;text-align:left;color:#333}.login-wrapper .account .loginconter img[data-v-3619772f],.login-wrapper .password .loginconter img[data-v-3619772f]{width:.32rem;height:.32rem}.login-wrapper .remember[data-v-3619772f]{margin-bottom:1.06667rem;display:flex;justify-content:space-between;align-items:center}.login-wrapper .remember .label[data-v-3619772f]{font-size:.42667rem;color:#000;font-weight:700}.login-wrapper .btn[data-v-3619772f]{width:8.53333rem;height:1.06667rem;background:#d03a29;border-radius:.53333rem;box-shadow:0 .08rem .16rem 0 rgba(208,58,41,.2);line-height:1.06667rem;font-size:.37333rem;text-align:center;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;color:#fff;letter-spacing:.02667rem}.login-box[data-v-3619772f]{position:relative;display:flex;flex-direction:column;height:100%}.footerbg[data-v-3619772f]{width:100%;z-index:30;position:absolute;bottom:0}.footerbg img[data-v-3619772f]{display:block;width:100%}

File diff suppressed because one or more lines are too long

0
src/main/resources/views/dist/css/chunk-5f713197.ebfbc11c.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-6509f2eb.386de725.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-6558a2c1.ec9ecb45.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-65f55aea.bede95f8.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-66223f7e.a5d50273.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-6b23a0fa.bb7d6e77.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-6fd191b2.3b4657fc.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-7113871a.12d9cc81.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-72314e70.db2ce645.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-73aa39a0.e6023ca9.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-7af25272.cabeaeb8.css vendored Normal file → Executable file
View File

View File

@ -1 +0,0 @@
.page .superintendence[data-v-2e56174a],.page[data-v-2e56174a]{flex:1;display:flex;flex-direction:column;overflow:auto}.page .superintendence .add[data-v-2e56174a]{position:fixed;bottom:26%;right:0;width:2.72rem;z-index:999}.page .superintendence .list[data-v-2e56174a]{flex:1}.page .superintendence .list .item[data-v-2e56174a]{background-color:#fff;padding:.42667rem;margin-bottom:.32rem}.page .superintendence .list .item .title[data-v-2e56174a]{display:flex;align-items:center;font-size:.42667rem}.page .superintendence .list .item .title .text[data-v-2e56174a]{font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.page .superintendence .list .item .title .van-tag[data-v-2e56174a]{width:1.70667rem;border-radius:.32rem;justify-content:center;line-height:.53333rem;margin-left:.10667rem;white-space:nowrap;font-weight:700}.page .superintendence .list .item .detail[data-v-2e56174a]{margin-top:.32rem}.page .superintendence .list .item .detail .cell[data-v-2e56174a]{display:flex;font-size:.32rem;line-height:.45333rem}.page .superintendence .list .item .detail .cell[data-v-2e56174a]:not(:last-child){margin-bottom:.10667rem}.page .superintendence .list .item .detail .cell .label[data-v-2e56174a]{color:#999;margin-right:.21333rem}.page .superintendence .list .item .detail .cell .value[data-v-2e56174a]{color:#333;flex:1;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.page .superintendence .list .item .imgs[data-v-2e56174a]{display:flex;margin-top:.21333rem}.page .superintendence .list .item .imgs .img[data-v-2e56174a]{flex:1;border-radius:.10667rem;overflow:hidden}.page .superintendence .list .item .imgs .img+.img[data-v-2e56174a]{margin-left:.10667rem}.page .superintendence .list .item .imgs .img img[data-v-2e56174a]{display:block;width:100%;max-height:4rem}.page .superintendence .list .item .bottom[data-v-2e56174a]{margin-top:.32rem;display:flex;font-size:.32rem}.page .superintendence .list .item .bottom .date[data-v-2e56174a]{margin-right:.42667rem;color:#999}.page .superintendence .list .item .bottom .more[data-v-2e56174a]{color:#d03a29}.page .superintendence .list .item>.more[data-v-2e56174a]{display:flex;justify-content:space-between;font-size:.32rem;color:#333;font-weight:700;padding-top:.32rem;margin-top:.32rem;border-top:.02667rem solid #f8f8f8}

0
src/main/resources/views/dist/css/chunk-7e96485a.1b03b766.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-971f7276.db60608a.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-9fbc2680.afdce3c8.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-a2b5a0de.c0ff6778.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-a4c89fa4.aacc1e31.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-be0790f0.0b2123dc.css vendored Normal file → Executable file
View File

View File

@ -0,0 +1 @@
.box[data-v-0b49107f]{background-color:#fff;margin-bottom:.32rem}.grassrootsNews .item[data-v-0b49107f]{position:relative;padding:.4rem .42667rem;display:flex}.grassrootsNews .item[data-v-0b49107f]:not(:last-child):after{content:"";position:absolute;bottom:0;left:.42667rem;right:.42667rem;height:.02667rem;background-color:#f3f3f3}.grassrootsNews .item .info[data-v-0b49107f]{width:0;flex:1}.grassrootsNews .item .info .title[data-v-0b49107f]{flex:1;font-size:.42667rem;color:#333;line-height:.58667rem;font-weight:700}.grassrootsNews .item .info .text[data-v-0b49107f]{font-size:.32rem;color:#999;line-height:.45333rem;margin-top:.10667rem}.grassrootsNews .item .img[data-v-0b49107f]{margin-left:.26667rem;width:3.33333rem;height:2.24rem;-o-object-fit:cover;object-fit:cover}.opinionBox .opinionArrow[data-v-0b49107f]{color:#ccc;font-size:.475rem;margin-left:.4rem}.opinionBox .opinionArrow[data-v-0b49107f]:before{vertical-align:middle}

0
src/main/resources/views/dist/css/chunk-d9bc211c.826d5cee.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-da6bf418.982b584b.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-da6ee668.66b687d6.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-db83747c.326009c2.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-db9510f8.3953ec1c.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-e04c7ece.bcfc713b.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-e0a6af0a.aeda9c00.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-ec88a650.177cce1b.css vendored Normal file → Executable file
View File

View File

@ -1 +0,0 @@
.login-box[data-v-faa13ab0]{background-color:#fff}.login-wrapper[data-v-faa13ab0]{padding:2.13333rem .85333rem 0 .85333rem;z-index:50}.login-wrapper .title[data-v-faa13ab0]{font-size:.64rem;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;color:#000;position:relative}.login-wrapper .title span[data-v-faa13ab0]{position:absolute;right:0;bottom:0;font-size:.42667rem;font-family:PingFang SC,PingFang SC-Regular;font-weight:400;color:#d03a29}.login-wrapper .account[data-v-faa13ab0]{padding-top:1.06667rem;margin-bottom:.85333rem}.login-wrapper .password[data-v-faa13ab0]{margin-bottom:1.06667rem}.login-wrapper .account .line[data-v-faa13ab0],.login-wrapper .password .line[data-v-faa13ab0]{height:.02667rem;background:#efefef}.login-wrapper .account p[data-v-faa13ab0],.login-wrapper .password p[data-v-faa13ab0]{font-size:.42667rem;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;text-align:left;color:#000;padding-bottom:.34667rem}.login-wrapper .account .loginconter[data-v-faa13ab0],.login-wrapper .password .loginconter[data-v-faa13ab0]{display:flex;align-items:center;margin-bottom:.10667rem}.login-wrapper .account .loginconter .van-cell[data-v-faa13ab0],.login-wrapper .password .loginconter .van-cell[data-v-faa13ab0]{padding:0}.login-wrapper .account .loginconter .van-cell[data-v-faa13ab0]:after,.login-wrapper .password .loginconter .van-cell[data-v-faa13ab0]:after{display:none}.login-wrapper .account .loginconter input[data-v-faa13ab0],.login-wrapper .password .loginconter input[data-v-faa13ab0]{width:100%;outline:none;border:none;font-size:.37333rem;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;text-align:left;color:#333}.login-wrapper .account .loginconter img[data-v-faa13ab0],.login-wrapper .password .loginconter img[data-v-faa13ab0]{width:.32rem;height:.32rem}.login-wrapper .remember[data-v-faa13ab0]{margin-bottom:1.06667rem;display:flex;justify-content:space-between;align-items:center}.login-wrapper .remember .label[data-v-faa13ab0]{font-size:.42667rem;color:#000;font-weight:700}.login-wrapper .btn[data-v-faa13ab0]{width:8.53333rem;height:1.06667rem;background:#d03a29;border-radius:.53333rem;box-shadow:0 .08rem .16rem 0 rgba(208,58,41,.2);line-height:1.06667rem;font-size:.37333rem;text-align:center;font-family:PingFang SC,PingFang SC-Bold;font-weight:700;color:#fff;letter-spacing:.02667rem}.login-box[data-v-faa13ab0]{position:relative;display:flex;flex-direction:column;height:100%}.footerbg[data-v-faa13ab0]{width:100%;z-index:30;position:absolute;bottom:0}.footerbg img[data-v-faa13ab0]{display:block;width:100%}

View File

@ -0,0 +1 @@
.item[data-v-4c7ce184]{box-sizing:border-box;padding:.42667rem .32rem;background:#fff;margin-bottom:.32rem}.uploadContent[data-v-4c7ce184]{font-size:.37333rem;font-weight:700;margin-bottom:.32rem}.messageBox[data-v-4c7ce184]{padding:0!important}[data-v-4c7ce184] .messageBox .van-cell__value{background-color:#f8f8f8;padding:.32rem}.uplooadImg[data-v-4c7ce184]{display:flex;align-items:center;justify-content:space-between;margin-bottom:.32rem;font-size:.37333rem;font-weight:700}.enclosureArr[data-v-4c7ce184]{display:flex;flex-wrap:wrap}.enclosureArr .single[data-v-4c7ce184]{position:relative;width:2.13333rem;height:2.13333rem;margin-right:.21333rem}.redDel[data-v-4c7ce184]{position:absolute;top:0;right:0}.btn[data-v-4c7ce184]{position:fixed;bottom:0;width:100%;margin-bottom:0!important}

0
src/main/resources/views/dist/css/chunk-f9ae0d3a.77a37e0a.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-fc68cb76.283a0299.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/css/chunk-vendors.0f9cee10.css vendored Normal file → Executable file
View File

0
src/main/resources/views/dist/favicon.ico vendored Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

0
src/main/resources/views/dist/img/homeBanner.7ba059ef.jpg vendored Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 1.3 MiB

After

Width:  |  Height:  |  Size: 1.3 MiB

0
src/main/resources/views/dist/img/icon_add.dae54178.png vendored Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

0
src/main/resources/views/dist/img/icon_user.5e553d53.png vendored Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

0
src/main/resources/views/dist/img/loginbg.d4a223b8.png vendored Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 362 KiB

After

Width:  |  Height:  |  Size: 362 KiB

0
src/main/resources/views/dist/img/no587@2x.8fad7f8d.png vendored Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 7.2 KiB

After

Width:  |  Height:  |  Size: 7.2 KiB

0
src/main/resources/views/dist/img/p2.881b1534.png vendored Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 95 KiB

0
src/main/resources/views/dist/img/p3.19cdb8dd.png vendored Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 57 KiB

After

Width:  |  Height:  |  Size: 57 KiB

0
src/main/resources/views/dist/img/p5.f4d9be7b.png vendored Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 414 KiB

After

Width:  |  Height:  |  Size: 414 KiB

0
src/main/resources/views/dist/img/p6.ccca653f.png vendored Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 47 KiB

After

Width:  |  Height:  |  Size: 47 KiB

0
src/main/resources/views/dist/img/re242@2x.34449b61.png vendored Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 6.6 KiB

After

Width:  |  Height:  |  Size: 6.6 KiB

0
src/main/resources/views/dist/img/su241@2x.d6eb822c.png vendored Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 6.3 KiB

After

Width:  |  Height:  |  Size: 6.3 KiB

0
src/main/resources/views/dist/img/tuxiang156@2x.31837e96.png vendored Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

0
src/main/resources/views/dist/img/tuxiang98@2x.3f268aeb.png vendored Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 138 KiB

After

Width:  |  Height:  |  Size: 138 KiB

2
src/main/resources/views/dist/index.html vendored Normal file → Executable file

File diff suppressed because one or more lines are too long

Some files were not shown because too many files have changed in this diff Show More