'2020-09-21'
251
HSLink-app/pages/person-info-page/person-info-page.vue
Normal file
@ -0,0 +1,251 @@
|
|||||||
|
<template>
|
||||||
|
<view class="page">
|
||||||
|
<view class="top">
|
||||||
|
<view class="left">
|
||||||
|
<view class="header-photo">
|
||||||
|
{{userInfo.headerPhoto}}
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="user-info">
|
||||||
|
<view class="info-top">
|
||||||
|
<view class="info-left">
|
||||||
|
<view class="name">
|
||||||
|
姓名:{{userInfo.real_name}}
|
||||||
|
</view>
|
||||||
|
<view class="grade">
|
||||||
|
等级:<text class="l">博客</text><text class="r">{{Math.floor((userInfo.integral)/1000)+1}}</text>
|
||||||
|
</view>
|
||||||
|
<view class="score">
|
||||||
|
积分:{{userInfo.integral}}
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="info-right">
|
||||||
|
<view class="follow">
|
||||||
|
关注:{{userInfo.followNumber}}
|
||||||
|
</view>
|
||||||
|
<view class="fans">
|
||||||
|
粉丝:{{userInfo.fansNumber}}
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="info-bottom">
|
||||||
|
<view class="follow-button" v-if="userInfo.isFollow === 0" @tap="addFollow(userInfo)">关注</view>
|
||||||
|
<view class="follow-button-ed" v-if="userInfo.isFollow === 1" @tap="cancelFollow(userInfo)">已关注</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="bottom">
|
||||||
|
<view class="noData" v-if="noData === true">
|
||||||
|
<noData :custom="true"><view class="title" @tap="update()">暂无数据,点击重新加载</view></noData>
|
||||||
|
</view>
|
||||||
|
<view class="list cu-card article dynamic" v-else-if="noData === false">
|
||||||
|
<view class="cu-item" style="padding:0" v-for="(item,index) in noticeList" :key="index">
|
||||||
|
<view class="cu-list menu solid-bottom" @click="goToDetails(item)">
|
||||||
|
<view class="cu-item arrow" style="min-height: 90rpx;padding-top: 10rpx;">
|
||||||
|
<view class="action">
|
||||||
|
<view class="action">
|
||||||
|
<view class='cu-tag radius bg-orange light margin-right-xs' v-if="item.type === '校园通知'">{{item.type}}</view>
|
||||||
|
<view class='cu-tag radius bg-blue light margin-right-xs' v-if="item.type === '家长意见'">{{item.type}}</view>
|
||||||
|
<view class='cu-tag radius bg-green light margin-right-xs' v-if="item.type === '学生想法'">{{item.type}}</view>
|
||||||
|
<text class="text-black text-lg">{{item.title}}</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="text-content" style="margin:10rpx 0 0 0;">
|
||||||
|
<text class="text-gray">文章标签:</text>
|
||||||
|
<text class="">{{item.label}}</text>
|
||||||
|
</view>
|
||||||
|
<view class="text-content" style="margin:10rpx 0 0 0;">
|
||||||
|
<text class="text-gray">发表时间:</text>
|
||||||
|
<text class="">{{item.release_time}}</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import request from '@/util/request.js';
|
||||||
|
import noData from '@/components/noData/noData.vue';
|
||||||
|
import { sortBy } from '@/static/js/public.js';
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
noData
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
//用户ID
|
||||||
|
userId: '',
|
||||||
|
//用户信息
|
||||||
|
userInfo: {},
|
||||||
|
//无数据
|
||||||
|
noData: false,
|
||||||
|
//个人文章列表
|
||||||
|
noticeList: [],
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onLoad(option) {
|
||||||
|
this.userId = option.userId;
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.getUserInfo();
|
||||||
|
},
|
||||||
|
onPullDownRefresh () {
|
||||||
|
this.getUserInfo();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/**
|
||||||
|
* 加关注
|
||||||
|
* @param {Object} userInfo
|
||||||
|
*/
|
||||||
|
addFollow(userInfo) {
|
||||||
|
request.post("/hs/addFollow",{
|
||||||
|
userId: uni.getStorageSync("userInfo").user_id,
|
||||||
|
followId: userInfo.user_id
|
||||||
|
}).then(res => {
|
||||||
|
this.getUserInfo();
|
||||||
|
console.log("加关注",res)
|
||||||
|
},err => {
|
||||||
|
console.log("err",err)
|
||||||
|
})
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* 取消关注
|
||||||
|
* @param {Object} userInfo
|
||||||
|
*/
|
||||||
|
cancelFollow(userInfo) {
|
||||||
|
let _this = this;
|
||||||
|
uni.showModal({
|
||||||
|
title: "取消关注",
|
||||||
|
content: "确认取消关注?",
|
||||||
|
success(res) {
|
||||||
|
if (res.confirm) {
|
||||||
|
request.post("/hs/cancelFollow",{
|
||||||
|
userId: uni.getStorageSync("userInfo").user_id,
|
||||||
|
followId: userInfo.user_id
|
||||||
|
}).then(res => {
|
||||||
|
_this.getUserInfo();
|
||||||
|
console.log("取消关注",res)
|
||||||
|
},err => {
|
||||||
|
console.log("err",err)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* 跳转详情页面
|
||||||
|
* @param {Object} item
|
||||||
|
*/
|
||||||
|
goToDetails(item) {
|
||||||
|
uni.setStorageSync("notice",item);
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages/tabbar/homepage/data-details'
|
||||||
|
})
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* 获取个人信息
|
||||||
|
*/
|
||||||
|
getUserInfo() {
|
||||||
|
request.post("/hs/getPersonalInfo",{
|
||||||
|
userId: uni.getStorageSync("userInfo").user_id,
|
||||||
|
releaseId: this.userId
|
||||||
|
}).then(res => {
|
||||||
|
uni.startPullDownRefresh();
|
||||||
|
console.log("个人信息",res);
|
||||||
|
this.userInfo = res.data.personalInfo;
|
||||||
|
this.userInfo.headerPhoto = this.userInfo.real_name.slice(0,1);
|
||||||
|
this.noticeList = res.data.personalList;
|
||||||
|
this.noData = res.data.personalList.length === 0 ? true : false;
|
||||||
|
},err => {
|
||||||
|
console.log("err",err);
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.cu-item{
|
||||||
|
background-color: #cfcfcf!important;
|
||||||
|
}
|
||||||
|
.follow-button-ed{
|
||||||
|
width: 80%;
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
color: #8d8d8d;
|
||||||
|
text-align: center;
|
||||||
|
border-radius: 10rpx;
|
||||||
|
}
|
||||||
|
.top .left{
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.info-bottom{
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
margin-bottom: 10rpx;
|
||||||
|
}
|
||||||
|
.follow-button{
|
||||||
|
width: 80%;
|
||||||
|
background-color: #269FDE;
|
||||||
|
text-align: center;
|
||||||
|
border-radius: 10rpx;
|
||||||
|
}
|
||||||
|
.grade .r, .grade .l{
|
||||||
|
font-size: 14rpx;
|
||||||
|
padding: 5rpx;
|
||||||
|
border-radius: 5rpx;
|
||||||
|
}
|
||||||
|
.grade .l{
|
||||||
|
background-color: #9DC75F;
|
||||||
|
}
|
||||||
|
.grade .r{
|
||||||
|
background-color: #2D5315;
|
||||||
|
}
|
||||||
|
.user-info view{
|
||||||
|
padding: 10rpx 10rpx;
|
||||||
|
}
|
||||||
|
.info-top{
|
||||||
|
display: flex;
|
||||||
|
flex-flow: nowrap;
|
||||||
|
}
|
||||||
|
.user-info{
|
||||||
|
color: #FFFFFF;
|
||||||
|
display: flex;
|
||||||
|
flex-flow: column;
|
||||||
|
justify-content: center;
|
||||||
|
border: 1rpx solid #b0b0b0;
|
||||||
|
border-radius: 10rpx;
|
||||||
|
width: 70%;
|
||||||
|
font-size: 32rpx;
|
||||||
|
background-color: #ced8d8;
|
||||||
|
}
|
||||||
|
.header-photo{
|
||||||
|
font-size: 80rpx;
|
||||||
|
font-family: 'Courier New', Courier, monospace;
|
||||||
|
color: #1296DB;
|
||||||
|
border: 5rpx solid #1296DB;
|
||||||
|
border-radius: 50%;
|
||||||
|
width: 180rpx;
|
||||||
|
height: 180rpx;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 180rpx;
|
||||||
|
margin: 20rpx;
|
||||||
|
}
|
||||||
|
.top{
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
padding-bottom: 40rpx;
|
||||||
|
border-bottom: 1rpx solid rgba(18,150,219,0.5);
|
||||||
|
}
|
||||||
|
.page{
|
||||||
|
padding: 20rpx;
|
||||||
|
display: flex;
|
||||||
|
flex-flow: column;
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
}
|
||||||
|
</style>
|
22
HSLink-app/pages/tabbar/follow/fans-list.vue
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
<template>
|
||||||
|
<view>
|
||||||
|
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
|
||||||
|
</style>
|
188
HSLink-app/pages/tabbar/follow/follow-list.vue
Normal file
@ -0,0 +1,188 @@
|
|||||||
|
<template>
|
||||||
|
<view class="content">
|
||||||
|
<m-search
|
||||||
|
:show="false"
|
||||||
|
placeholder="搜索"
|
||||||
|
button="none"
|
||||||
|
backgroundColor="#efecec"
|
||||||
|
v-model="searchStr"
|
||||||
|
></m-search>
|
||||||
|
<view class="noData" v-if="noData === true">
|
||||||
|
<noData :custom="true"><view class="title" @tap="update()">暂无数据,点击重新加载</view></noData>
|
||||||
|
</view>
|
||||||
|
<view class="list cu-card article dynamic" v-else-if="noData === false">
|
||||||
|
<view class="cu-item one" style="padding:0" v-for="(item,index) in followList" :key="index">
|
||||||
|
<view class="one-left-two">
|
||||||
|
<view class="one-left">
|
||||||
|
{{item.headerPhoto}}
|
||||||
|
</view>
|
||||||
|
<view class="one-right">
|
||||||
|
<view class="name">
|
||||||
|
{{item.real_name}}
|
||||||
|
</view>
|
||||||
|
<view class="grade">
|
||||||
|
<view class="grade-left">
|
||||||
|
<view class="grade">
|
||||||
|
等级:<text class="l">天才</text><text class="r">{{Math.floor((item.integral)/1000)+1}}</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="grade-right">
|
||||||
|
积分:{{item.integral}}
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="follow-flag ed" @tap="cancelFollow(item)">
|
||||||
|
已关注
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import request from '@/util/request.js';
|
||||||
|
import mSearch from '@/components/mehaotian-search/mehaotian-search.vue';
|
||||||
|
import noData from '@/components/noData/noData.vue';
|
||||||
|
import { sortBy } from '@/static/js/public.js';
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
mSearch,
|
||||||
|
noData
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
//无数据
|
||||||
|
noData: false,
|
||||||
|
//搜索关键字
|
||||||
|
searchStr: '',
|
||||||
|
//关注列表
|
||||||
|
followList: [],
|
||||||
|
flag: true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onPullDownRefresh () {
|
||||||
|
this.getFollowPeopleList();
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.getFollowPeopleList();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/**
|
||||||
|
* 取消关注
|
||||||
|
* @param {Object} userInfo
|
||||||
|
*/
|
||||||
|
cancelFollow(userInfo) {
|
||||||
|
let _this = this;
|
||||||
|
uni.showModal({
|
||||||
|
title: "取消关注",
|
||||||
|
content: "确认取消关注?",
|
||||||
|
success(res) {
|
||||||
|
if (res.confirm) {
|
||||||
|
request.post("/hs/cancelFollow",{
|
||||||
|
userId: uni.getStorageSync("userInfo").user_id,
|
||||||
|
followId: userInfo.user_id
|
||||||
|
}).then(res => {
|
||||||
|
_this.getFollowPeopleList();
|
||||||
|
console.log("取消关注",res)
|
||||||
|
},err => {
|
||||||
|
console.log("err",err)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* 获取关注列表
|
||||||
|
*/
|
||||||
|
getFollowPeopleList() {
|
||||||
|
request.post("/hs/getFollowPeopleList",{
|
||||||
|
userId: uni.getStorageSync("userInfo").user_id
|
||||||
|
}).then(res => {
|
||||||
|
console.log("关注列表",res);
|
||||||
|
uni.startPullDownRefresh();
|
||||||
|
this.followList = res.data;
|
||||||
|
if (this.followList.length === 0) {
|
||||||
|
this.noData = true;
|
||||||
|
} else {
|
||||||
|
this.noData = false;
|
||||||
|
this.followList.forEach(item => {
|
||||||
|
item.headerPhoto = item.real_name.slice(0,1);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
},err => {
|
||||||
|
console.log("err",err)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.one-right{
|
||||||
|
margin-left: 20rpx;
|
||||||
|
}
|
||||||
|
.one-left-two{
|
||||||
|
display: flex;
|
||||||
|
flex-flow: nowrap;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.follow-flag{
|
||||||
|
border-radius: 10rpx;
|
||||||
|
background-color: #269FDE;
|
||||||
|
color: #FFFFFF;
|
||||||
|
font-size: 32rpx;
|
||||||
|
padding: 10rpx;
|
||||||
|
}
|
||||||
|
.ed{
|
||||||
|
background-color: #FFFFFF;
|
||||||
|
border: 1rpx solid #b3b3b3;
|
||||||
|
color: #b3b3b3;
|
||||||
|
}
|
||||||
|
.one-right .grade{
|
||||||
|
font-size: 34rpx;
|
||||||
|
color: #909090;
|
||||||
|
}
|
||||||
|
.one-right .name{
|
||||||
|
padding-bottom: 12rpx;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.one-right .grade-right{
|
||||||
|
margin-left: 16rpx;
|
||||||
|
}
|
||||||
|
.one-left{
|
||||||
|
font-size: 80rpx;
|
||||||
|
font-family: 'Courier New', Courier, monospace;
|
||||||
|
color: #1296DB;
|
||||||
|
border: 5rpx solid #1296DB;
|
||||||
|
border-radius: 50%;
|
||||||
|
width: 140rpx;
|
||||||
|
height: 140rpx;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 140rpx;
|
||||||
|
margin: 20rpx;
|
||||||
|
}
|
||||||
|
.one{
|
||||||
|
padding-right: 24rpx!important;
|
||||||
|
}
|
||||||
|
.one, .grade{
|
||||||
|
display: flex!important;
|
||||||
|
flex-flow: nowrap;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
.grade .r, .grade .l{
|
||||||
|
font-size: 14rpx;
|
||||||
|
padding: 5rpx;
|
||||||
|
border-radius: 5rpx;
|
||||||
|
color: #FFFFFF;
|
||||||
|
}
|
||||||
|
.grade .l{
|
||||||
|
background-color: #9DC75F;
|
||||||
|
}
|
||||||
|
.grade .r{
|
||||||
|
background-color: #2D5315;
|
||||||
|
}
|
||||||
|
</style>
|
@ -86,13 +86,15 @@
|
|||||||
userOtherInfo: {}
|
userOtherInfo: {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
onShow() {
|
||||||
|
this.getUserInfo();
|
||||||
|
},
|
||||||
onLoad() {
|
onLoad() {
|
||||||
},
|
},
|
||||||
onPullDownRefresh () {
|
onPullDownRefresh () {
|
||||||
this.getUserInfo();
|
this.getUserInfo();
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.getUserInfo();
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
/**
|
/**
|
||||||
|
BIN
HSLink-app/static/img/logo-photo.png
Normal file
After Width: | Height: | Size: 6.7 KiB |
0
HSLink-app/unpackage/dist/build/.automator/app-plus/.automator.json
vendored
Normal file
1
HSLink-app/unpackage/dist/build/app-plus/__uniappchooselocation.js
vendored
Normal file
1
HSLink-app/unpackage/dist/build/app-plus/__uniappes6.js
vendored
Normal file
1
HSLink-app/unpackage/dist/build/app-plus/__uniappopenlocation.js
vendored
Normal file
1
HSLink-app/unpackage/dist/build/app-plus/__uniapppicker.js
vendored
Normal file
8
HSLink-app/unpackage/dist/build/app-plus/__uniappquill.js
vendored
Normal file
1
HSLink-app/unpackage/dist/build/app-plus/__uniappquillimageresize.js
vendored
Normal file
1
HSLink-app/unpackage/dist/build/app-plus/__uniappscan.js
vendored
Normal file
BIN
HSLink-app/unpackage/dist/build/app-plus/__uniappsuccess.png
vendored
Normal file
After Width: | Height: | Size: 2.0 KiB |
28
HSLink-app/unpackage/dist/build/app-plus/__uniappview.html
vendored
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="zh-CN">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<script>
|
||||||
|
var __UniViewStartTime__ = Date.now();
|
||||||
|
document.addEventListener('DOMContentLoaded', function() {
|
||||||
|
document.documentElement.style.fontSize = document.documentElement.clientWidth / 20 + 'px'
|
||||||
|
})
|
||||||
|
var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') ||
|
||||||
|
CSS.supports('top: constant(a)'))
|
||||||
|
document.write(
|
||||||
|
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
|
||||||
|
(coverSupport ? ', viewport-fit=cover' : '') + '" />')
|
||||||
|
</script>
|
||||||
|
<title>View</title>
|
||||||
|
<link rel="stylesheet" href="view.css" />
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div id="app"></div>
|
||||||
|
<script src="__uniappes6.js"></script>
|
||||||
|
<script src="view.umd.min.js"></script>
|
||||||
|
<script src="app-view.js"></script>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
8
HSLink-app/unpackage/dist/build/app-plus/app-config-service.js
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
|
||||||
|
var isReady=false;var onReadyCallbacks=[];
|
||||||
|
var isServiceReady=false;var onServiceReadyCallbacks=[];
|
||||||
|
var __uniConfig = {"pages":["pages/login/login","pages/tabbar/homepage/homepage","pages/tabbar/homepage/data-details","pages/tabbar/follow/follow","pages/tabbar/release/release","pages/tabbar/message/message","pages/tabbar/my/my","pages/tabbar/my/my-article/my-article","pages/notice-edit/notice-edit","pages/tabbar/message/chat-page","pages/person-info-page/person-info-page","pages/tabbar/follow/follow-list","pages/tabbar/follow/fans-list"],"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"uni-app","navigationBarBackgroundColor":"#F8F8F8","backgroundColor":"#F8F8F8"},"tabBar":{"borderStyle":"black","backgroundColor":"#333","color":"#FFFFFF","selectedColor":"#f33e54","list":[{"pagePath":"pages/tabbar/homepage/homepage","iconPath":"static/img/tabbar/home.png","selectedIconPath":"static/img/tabbar/homeactive.png","text":"首页"},{"pagePath":"pages/tabbar/follow/follow","iconPath":"static/img/tabbar/guanzhu.png","selectedIconPath":"static/img/tabbar/guanzhuactive.png","text":"关注"},{"pagePath":"pages/tabbar/release/release","iconPath":"static/img/tabbar/add.png","selectedIconPath":"static/img/tabbar/addactive.png"},{"pagePath":"pages/tabbar/message/message","iconPath":"static/img/tabbar/news.png","selectedIconPath":"static/img/tabbar/newsactive.png","text":"消息"},{"pagePath":"pages/tabbar/my/my","iconPath":"static/img/tabbar/me.png","selectedIconPath":"static/img/tabbar/meactive.png","text":"我"}]},"nvueCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"家校通","compilerVersion":"2.8.11","entryPagePath":"pages/login/login","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}};
|
||||||
|
var __uniRoutes = [{"path":"/pages/login/login","meta":{"isQuit":true},"window":{"enablePullDownRefresh":true,"navigationBarTitleText":"登录","navigationBarBackgroundColor":"#333","navigationBarTextStyle":"white"}},{"path":"/pages/tabbar/homepage/homepage","meta":{"isQuit":true,"isTabBar":true},"window":{"enablePullDownRefresh":true,"navigationBarTitleText":"首页","navigationBarBackgroundColor":"#333","navigationBarTextStyle":"white"}},{"path":"/pages/tabbar/homepage/data-details","meta":{},"window":{"enablePullDownRefresh":true,"navigationBarTitleText":"文章内容","navigationBarBackgroundColor":"#333","navigationBarTextStyle":"white"}},{"path":"/pages/tabbar/follow/follow","meta":{"isQuit":true,"isTabBar":true},"window":{"enablePullDownRefresh":true,"navigationBarTitleText":"关注","navigationBarBackgroundColor":"#333","navigationBarTextStyle":"white"}},{"path":"/pages/tabbar/release/release","meta":{"isQuit":true,"isTabBar":true},"window":{"enablePullDownRefresh":true,"navigationBarTitleText":"发布","navigationBarBackgroundColor":"#333","navigationBarTextStyle":"white"}},{"path":"/pages/tabbar/message/message","meta":{"isQuit":true,"isTabBar":true},"window":{"enablePullDownRefresh":true,"navigationBarTitleText":"消息","navigationBarBackgroundColor":"#333","navigationBarTextStyle":"white"}},{"path":"/pages/tabbar/my/my","meta":{"isQuit":true,"isTabBar":true},"window":{"enablePullDownRefresh":true,"navigationBarTitleText":"我","navigationBarBackgroundColor":"#333","navigationBarTextStyle":"white"}},{"path":"/pages/tabbar/my/my-article/my-article","meta":{},"window":{"enablePullDownRefresh":true,"navigationBarTitleText":"我的文章","navigationBarBackgroundColor":"#333","navigationBarTextStyle":"white"}},{"path":"/pages/notice-edit/notice-edit","meta":{},"window":{"enablePullDownRefresh":true,"navigationBarTitleText":"编辑文章","navigationBarBackgroundColor":"#333","navigationBarTextStyle":"white","bounce":"none","titleNView":{"buttons":[{"type":"none","text":"删除 ","fontSize":"16px","float":"right"}]}}},{"path":"/pages/tabbar/message/chat-page","meta":{},"window":{"enablePullDownRefresh":true,"navigationBarTitleText":"","navigationBarBackgroundColor":"#333","navigationBarTextStyle":"white"}},{"path":"/pages/person-info-page/person-info-page","meta":{},"window":{"enablePullDownRefresh":true,"navigationBarTitleText":"个人主页","navigationBarBackgroundColor":"#333","navigationBarTextStyle":"white"}},{"path":"/pages/tabbar/follow/follow-list","meta":{},"window":{"enablePullDownRefresh":true,"navigationBarTitleText":"关注列表","navigationBarBackgroundColor":"#333","navigationBarTextStyle":"white"}},{"path":"/pages/tabbar/follow/fans-list","meta":{},"window":{"enablePullDownRefresh":true,"navigationBarTitleText":"粉丝列表","navigationBarBackgroundColor":"#333","navigationBarTextStyle":"white"}}];
|
||||||
|
__uniConfig.onReady=function(callback){if(__uniConfig.ready){callback()}else{onReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"ready",{get:function(){return isReady},set:function(val){isReady=val;if(!isReady){return}const callbacks=onReadyCallbacks.slice(0);onReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
|
||||||
|
__uniConfig.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
|
||||||
|
service.register("uni-app-config",{create(a,b,c){if(!__uniConfig.viewport){var d=b.weex.config.env.scale,e=b.weex.config.env.deviceWidth,f=Math.ceil(e/d);Object.assign(__uniConfig,{viewport:f,defaultFontSize:Math.round(f/20)})}return{instance:{__uniConfig:__uniConfig,__uniRoutes:__uniRoutes,global:void 0,window:void 0,document:void 0,frames:void 0,self:void 0,location:void 0,navigator:void 0,localStorage:void 0,history:void 0,Caches:void 0,screen:void 0,alert:void 0,confirm:void 0,prompt:void 0,fetch:void 0,XMLHttpRequest:void 0,WebSocket:void 0,webkit:void 0,print:void 0}}}});
|
1
HSLink-app/unpackage/dist/build/app-plus/app-config.js
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
(function(e){function r(r){for(var n,l,i=r[0],p=r[1],a=r[2],c=0,s=[];c<i.length;c++)l=i[c],Object.prototype.hasOwnProperty.call(o,l)&&o[l]&&s.push(o[l][0]),o[l]=0;for(n in p)Object.prototype.hasOwnProperty.call(p,n)&&(e[n]=p[n]);f&&f(r);while(s.length)s.shift()();return u.push.apply(u,a||[]),t()}function t(){for(var e,r=0;r<u.length;r++){for(var t=u[r],n=!0,i=1;i<t.length;i++){var p=t[i];0!==o[p]&&(n=!1)}n&&(u.splice(r--,1),e=l(l.s=t[0]))}return e}var n={},o={"app-config":0},u=[];function l(r){if(n[r])return n[r].exports;var t=n[r]={i:r,l:!1,exports:{}};return e[r].call(t.exports,t,t.exports,l),t.l=!0,t.exports}l.m=e,l.c=n,l.d=function(e,r,t){l.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},l.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},l.t=function(e,r){if(1&r&&(e=l(e)),8&r)return e;if(4&r&&"object"===typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(l.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var n in e)l.d(t,n,function(r){return e[r]}.bind(null,n));return t},l.n=function(e){var r=e&&e.__esModule?function(){return e["default"]}:function(){return e};return l.d(r,"a",r),r},l.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},l.p="/";var i=this["webpackJsonp"]=this["webpackJsonp"]||[],p=i.push.bind(i);i.push=r,i=i.slice();for(var a=0;a<i.length;a++)r(i[a]);var f=p;t()})([]);
|
31
HSLink-app/unpackage/dist/build/app-plus/app-service.js
vendored
Normal file
1
HSLink-app/unpackage/dist/build/app-plus/app-view.js
vendored
Normal file
1
HSLink-app/unpackage/dist/build/app-plus/manifest.json
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__7C9492E","name":"家校通","version":{"name":"1.0.0","code":"100"},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#F8F8F8"},"usingComponents":true,"compilerVersion":3,"distribute":{"icons":{"android":{"hdpi":"unpackage/res/icons/72x72.png","xhdpi":"unpackage/res/icons/96x96.png","xxhdpi":"unpackage/res/icons/144x144.png","xxxhdpi":"unpackage/res/icons/192x192.png"},"ios":{"appstore":"unpackage/res/icons/1024x1024.png","ipad":{"app":"unpackage/res/icons/76x76.png","app@2x":"unpackage/res/icons/152x152.png","notification":"unpackage/res/icons/20x20.png","notification@2x":"unpackage/res/icons/40x40.png","proapp@2x":"unpackage/res/icons/167x167.png","settings":"unpackage/res/icons/29x29.png","settings@2x":"unpackage/res/icons/58x58.png","spotlight":"unpackage/res/icons/40x40.png","spotlight@2x":"unpackage/res/icons/80x80.png"},"iphone":{"app@2x":"unpackage/res/icons/120x120.png","app@3x":"unpackage/res/icons/180x180.png","notification@2x":"unpackage/res/icons/40x40.png","notification@3x":"unpackage/res/icons/60x60.png","settings@2x":"unpackage/res/icons/58x58.png","settings@3x":"unpackage/res/icons/87x87.png","spotlight@2x":"unpackage/res/icons/80x80.png","spotlight@3x":"unpackage/res/icons/120x120.png"}}},"splashscreen":{"androidStyle":"common"},"google":{"permissions":["<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.READ_CONTACTS\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.WRITE_CONTACTS\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.RECORD_AUDIO\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.MODIFY_AUDIO_SETTINGS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.CALL_PHONE\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-permission android:name=\"android.permission.ACCESS_COARSE_LOCATION\"/>","<uses-feature android:name=\"android.hardware.camera\"/>","<uses-permission android:name=\"android.permission.ACCESS_FINE_LOCATION\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"]},"apple":{},"plugins":{"ad":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"allowsInlineMediaPlayback":true,"safearea":{"background":"#333","bottom":{"offset":"auto"}},"uni-app":{"compilerVersion":"2.8.11","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"tabBar":{"borderStyle":"rgba(0,0,0,0.4)","backgroundColor":"#333","color":"#FFFFFF","selectedColor":"#f33e54","list":[{"pagePath":"pages/tabbar/homepage/homepage","iconPath":"static/img/tabbar/home.png","selectedIconPath":"static/img/tabbar/homeactive.png","text":"首页"},{"pagePath":"pages/tabbar/follow/follow","iconPath":"static/img/tabbar/guanzhu.png","selectedIconPath":"static/img/tabbar/guanzhuactive.png","text":"关注"},{"pagePath":"pages/tabbar/release/release","iconPath":"static/img/tabbar/add.png","selectedIconPath":"static/img/tabbar/addactive.png"},{"pagePath":"pages/tabbar/message/message","iconPath":"static/img/tabbar/news.png","selectedIconPath":"static/img/tabbar/newsactive.png","text":"消息"},{"pagePath":"pages/tabbar/my/my","iconPath":"static/img/tabbar/me.png","selectedIconPath":"static/img/tabbar/meactive.png","text":"我"}],"height":"50px"},"launch_path":"__uniappview.html"}}
|
125
HSLink-app/unpackage/dist/build/app-plus/static/css/main.css
vendored
Normal file
@ -0,0 +1,125 @@
|
|||||||
|
.login {
|
||||||
|
height: auto;
|
||||||
|
width: auto;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content:center;
|
||||||
|
/* margin-top: 128upx; */
|
||||||
|
}
|
||||||
|
.content {
|
||||||
|
height: auto;
|
||||||
|
width: auto;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content:center;
|
||||||
|
/* margin-top: 128upx; */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 头部 logo */
|
||||||
|
.header {
|
||||||
|
/* width:400upx;
|
||||||
|
height:200upx; */
|
||||||
|
/* box-shadow:0upx 0upx 60upx 0upx rgba(0,0,0,0.1); */
|
||||||
|
border-radius:50%;
|
||||||
|
/* background-color: #000000;
|
||||||
|
*/ margin-top: 30upx;
|
||||||
|
/* margin-bottom: 30upx; */
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
.header image{
|
||||||
|
width:200upx;
|
||||||
|
height:200upx;
|
||||||
|
border-radius:50%;
|
||||||
|
text-align:center;
|
||||||
|
|
||||||
|
}
|
||||||
|
.title{
|
||||||
|
text-align:center;
|
||||||
|
/* margin-bottom: 70upx; */
|
||||||
|
font-weight:900;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 主体 */
|
||||||
|
.main {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
padding-left: 90upx;
|
||||||
|
padding-right: 90upx;
|
||||||
|
}
|
||||||
|
.tips {
|
||||||
|
color: #999999;
|
||||||
|
font-size: 28upx;
|
||||||
|
margin-top: 64upx;
|
||||||
|
margin-left: 48upx;
|
||||||
|
/* margin-bottom:30px; */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 其他登录方式 */
|
||||||
|
.other_login{
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
margin-top: 256upx;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.login_icon{
|
||||||
|
border: none;
|
||||||
|
font-size: 128upx;
|
||||||
|
margin: 0 64upx 0 64upx;
|
||||||
|
color: rgba(0,0,0,0.7)
|
||||||
|
}
|
||||||
|
.wechat_color{
|
||||||
|
color: #83DC42;
|
||||||
|
}
|
||||||
|
.weibo_color{
|
||||||
|
color: #F9221D;
|
||||||
|
}
|
||||||
|
.github_color{
|
||||||
|
color: #24292E;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 底部 */
|
||||||
|
.footer{
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 28upx;
|
||||||
|
margin-top: 64upx;
|
||||||
|
color: rgba(0,0,0,0.7);
|
||||||
|
text-align: center;
|
||||||
|
height: 40upx;
|
||||||
|
line-height: 40upx;
|
||||||
|
}
|
||||||
|
.footer text{
|
||||||
|
font-size: 24upx;
|
||||||
|
margin-left: 15upx;
|
||||||
|
margin-right: 15upx;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
2019-10-28 ljl 登录输入框样式
|
||||||
|
*/
|
||||||
|
.ljl_title{
|
||||||
|
background: #f3f3f3;
|
||||||
|
font-size:10px;
|
||||||
|
text-indent: 10px;
|
||||||
|
padding-top:5px;
|
||||||
|
color:#cccdd1;
|
||||||
|
height: 100upx;
|
||||||
|
border-radius: 30upx;
|
||||||
|
width: 90%;
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
.main-list,.ljl_top{
|
||||||
|
margin-top: -24upx !important;
|
||||||
|
}
|
||||||
|
.ljl_tt{
|
||||||
|
margin-top: 25upx;
|
||||||
|
border-bottom: 1upx solid #cdcdcd;
|
||||||
|
}
|
0
HSLink-app/unpackage/dist/build/app-plus/static/css/public.css
vendored
Normal file
322
HSLink-app/unpackage/dist/build/app-plus/static/css/style.css
vendored
Normal file
@ -0,0 +1,322 @@
|
|||||||
|
/* 公共样式表css */
|
||||||
|
html,body {
|
||||||
|
background-color: red;
|
||||||
|
color: #333;
|
||||||
|
margin: 0;
|
||||||
|
height: 100%;
|
||||||
|
font-family: "Myriad Set Pro","Helvetica Neue",Helvetica,Arial,Verdana,sans-serif;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
* {
|
||||||
|
-webkit-box-sizing: border-box;
|
||||||
|
-moz-box-sizing: border-box;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
a, label, button, input, select {
|
||||||
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background: #f4f4f4;
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
|
||||||
|
html, body, div, dl, dt, dd, ol, ul, li, h1, h2, h3, h4, h5, h6, p, blockquote, pre, button, fieldset, form, input, legend, textarea, th, td {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
color: #08acee;
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
outline: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
button,input,optgroup,select,textarea {
|
||||||
|
margin: 0;
|
||||||
|
font: inherit;
|
||||||
|
color: inherit;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
li {
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #666;
|
||||||
|
}
|
||||||
|
|
||||||
|
.clearfix::after {
|
||||||
|
clear: both;
|
||||||
|
content: ".";
|
||||||
|
display: block;
|
||||||
|
height: 0;
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.clearfix {
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 必要布局样式css */
|
||||||
|
.aui-flexView {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
margin: 0 auto;
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
-webkit-box-direction: normal;
|
||||||
|
-webkit-flex-direction: column;
|
||||||
|
-ms-flex-direction: column;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aui-scrollView {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
-webkit-box-flex: 1;
|
||||||
|
-webkit-flex: 1;
|
||||||
|
-ms-flex: 1;
|
||||||
|
flex: 1;
|
||||||
|
overflow-y: auto;
|
||||||
|
overflow-x: hidden;
|
||||||
|
-webkit-overflow-scrolling: touch;
|
||||||
|
position: relative;
|
||||||
|
/* margin-top: -44px; */
|
||||||
|
}
|
||||||
|
|
||||||
|
.aui-navBar {
|
||||||
|
height: 44px;
|
||||||
|
position: relative;
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
z-index: 1002;
|
||||||
|
background: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aui-navBar:after {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
z-index: 2;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 1px;
|
||||||
|
border-bottom: 1px solid #ffffff;
|
||||||
|
-webkit-transform: scaleY(0.5);
|
||||||
|
transform: scaleY(0.5);
|
||||||
|
-webkit-transform-origin: 0 100%;
|
||||||
|
transform-origin: 0 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aui-navBar-item {
|
||||||
|
height: 44px;
|
||||||
|
min-width: 25%;
|
||||||
|
-webkit-box-flex: 0;
|
||||||
|
-webkit-flex: 0 0 25%;
|
||||||
|
-ms-flex: 0 0 25%;
|
||||||
|
flex: 0 0 25%;
|
||||||
|
padding: 0 0.9rem;
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-webkit-align-items: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 0.7rem;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
color: #a0a0a0;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aui-navBar-item:first-child {
|
||||||
|
-webkit-box-ordinal-group: 2;
|
||||||
|
-webkit-order: 1;
|
||||||
|
-ms-flex-order: 1;
|
||||||
|
order: 1;
|
||||||
|
margin-right: -25%;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aui-navBar-item:last-child {
|
||||||
|
-webkit-box-ordinal-group: 4;
|
||||||
|
-webkit-order: 3;
|
||||||
|
-ms-flex-order: 3;
|
||||||
|
order: 3;
|
||||||
|
-webkit-box-pack: end;
|
||||||
|
-webkit-justify-content: flex-end;
|
||||||
|
-ms-flex-pack: end;
|
||||||
|
justify-content: flex-end;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aui-center {
|
||||||
|
-webkit-box-ordinal-group: 3;
|
||||||
|
-webkit-order: 2;
|
||||||
|
-ms-flex-order: 2;
|
||||||
|
order: 2;
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-box-pack: center;
|
||||||
|
-webkit-justify-content: center;
|
||||||
|
-ms-flex-pack: center;
|
||||||
|
justify-content: center;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-webkit-align-items: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
height: 44px;
|
||||||
|
width: 50%;
|
||||||
|
margin-left: 25%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aui-center-title {
|
||||||
|
text-align: center;
|
||||||
|
width: 100%;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
display: block;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
font-size: 0.95rem;
|
||||||
|
color: #3c3c3c;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon {
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
display: block;
|
||||||
|
border: none;
|
||||||
|
float: left;
|
||||||
|
background-size: 20px;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-return {
|
||||||
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAACh0lEQVRoQ+3ZMW8TMRQH8PcOsTBQISExVCIRCwgWFvZ+hZYBpIrEcTYkBsTGlI2VDamL3YEBpWJoR1BJaOlXYEzyDYp0bMRGRjnJoDuWs/1e3EbKeHf55b33vzsb4YJ98IJ54RKce8XZV1gIcQ8AviDiD2vtC631pzZFYQ2WUt611p4CwM0VcqqU2soSXIN1ztdKqTfZgRuw75RSz9tg3bHsWjomlh04NpYVOAWWDbjf7z8oimLipbH7bUopJdvO7L/Hk8+wwyLiCSLe8H6cww4BwGYFTo0lbWkKLBmYCksCrsNaa99rrZ/FmFnS0GrCdrvd3mg0MqEDqu58yVKaAzZZSwshHgLAsX/rcW2csrJVtaNXeIWdIuL16qJU2OgVrsMCwEGn03mSamaThVYTtizLp+PxeJkioJKFFldslJbmjA0O5o4NCm7AHpZluUM5s1FCSwjxCAA++7ceADiczWaPJ5PJL6qAihJaUspdY8w+Il7xLsASG6SlhRA/EfGa91BxNJ/Pd7hVNtiT1mAwOAeADXdCa637Hi0Wi3zBUsptY8wHRLzqwIh/nlbzbWmna0roLEOrmo11QQd9W1oHdFDwOrR3cLCH/uuFn0uQRQE7dMPKJHl6RwNzRUcF/w9N9VIRHVyhazbLDihWP5KAHbphOzQ5OhmYCzopmAM6OZgaTQL20FMAuOUtHESfaTLwCn3HWnuWEk0KpkCTg1OjWYArtDHmKyJu+jMdeh+KDdghh8NhZ7lcfvPRoXcaWYFToNmBY6NZgj20m+nb3pr3W631yzY7GWzBDtXr9TaLojjz0N+VUvezBXvoPQBw0Fda649Zg9vg6o5l3dKhse58l+AY/yqnc/4GvNDoTFOq8FwAAAAASUVORK5CYII=");
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-sys {
|
||||||
|
background-image: url("data:image/png;base64,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");
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-fre {
|
||||||
|
background-image: url("data:image/png;base64,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");
|
||||||
|
}
|
||||||
|
|
||||||
|
.aui-news-box {
|
||||||
|
margin-top: 8px;
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aui-news-item {
|
||||||
|
padding: 15px;
|
||||||
|
position: relative;
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: flex;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-webkit-align-items: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aui-news-item-hd {
|
||||||
|
margin-right: .8em;
|
||||||
|
width: 55px;
|
||||||
|
height: 55px;
|
||||||
|
line-height: 55px;
|
||||||
|
text-align: center;
|
||||||
|
background: #fff;
|
||||||
|
border-radius: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aui-news-item-hd img {
|
||||||
|
width: 100%;
|
||||||
|
max-height: 100%;
|
||||||
|
vertical-align: top
|
||||||
|
}
|
||||||
|
|
||||||
|
.aui-news-item-bd {
|
||||||
|
-webkit-box-flex: 1;
|
||||||
|
-webkit-flex: 1;
|
||||||
|
flex: 1;
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aui-news-item-bd h4 {
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 16px;
|
||||||
|
width: auto;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
word-wrap: normal;
|
||||||
|
word-wrap: break-word;
|
||||||
|
word-break: break-all;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aui-news-item-bd p {
|
||||||
|
color: #848689;
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 1.2;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
display: -webkit-box;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
-webkit-line-clamp: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aui-news-item:before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
z-index: 2;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 1px;
|
||||||
|
border-bottom: 1px solid #d8d8d8;
|
||||||
|
-webkit-transform: scaleY(0.5);
|
||||||
|
transform: scaleY(0.5);
|
||||||
|
-webkit-transform-origin: 0 100%;
|
||||||
|
transform-origin: 0 100%;
|
||||||
|
left: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aui-news-item-fr {
|
||||||
|
text-align: right;
|
||||||
|
font-size: 13px;
|
||||||
|
color: #8c8c8c;
|
||||||
|
margin-top: -25px;
|
||||||
|
}
|
BIN
HSLink-app/unpackage/dist/build/app-plus/static/ic-QQ@2x.png
vendored
Normal file
After Width: | Height: | Size: 7.8 KiB |
BIN
HSLink-app/unpackage/dist/build/app-plus/static/ic-weixin@2x.png
vendored
Normal file
After Width: | Height: | Size: 8.8 KiB |
157
HSLink-app/unpackage/dist/build/app-plus/static/iconfont.css
vendored
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
@font-face {font-family: "iconfont";
|
||||||
|
src:
|
||||||
|
url('./static/iconfont.ttf') format('truetype')
|
||||||
|
}
|
||||||
|
|
||||||
|
.iconfont {
|
||||||
|
font-family: "iconfont" !important;
|
||||||
|
font-size: 16px;
|
||||||
|
font-style: normal;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-search:before {
|
||||||
|
content: "\e614";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-haoyou:before {
|
||||||
|
content: "\e62e";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-play:before {
|
||||||
|
content: "\e630";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-stop:before {
|
||||||
|
content: "\e635";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-address:before {
|
||||||
|
content: "\e62c";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-more:before {
|
||||||
|
content: "\e840";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-addre:before {
|
||||||
|
content: "\e700";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-right:before {
|
||||||
|
content: "\e61c";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-message:before {
|
||||||
|
content: "\e671";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-history:before {
|
||||||
|
content: "\e8bd";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-left:before {
|
||||||
|
content: "\e602";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-share:before {
|
||||||
|
content: "\e694";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-yanzhengma:before {
|
||||||
|
content: "\e7a1";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-zhiwei:before {
|
||||||
|
content: "\e63e";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-shoucang2:before {
|
||||||
|
content: "\e605";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-time:before {
|
||||||
|
content: "\e600";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-fatie:before {
|
||||||
|
content: "\e629";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-CombinedShape:before {
|
||||||
|
content: "\e638";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-fenxiang:before {
|
||||||
|
content: "\e667";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-E607:before {
|
||||||
|
content: "\e647";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-guangchang:before {
|
||||||
|
content: "\e601";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-vnums:before {
|
||||||
|
content: "\e615";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-set:before {
|
||||||
|
content: "\eb40";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-tongxunlu:before {
|
||||||
|
content: "\e604";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-xuexijilu:before {
|
||||||
|
content: "\e6a3";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-daoshi:before {
|
||||||
|
content: "\e6d7";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-aixin:before {
|
||||||
|
content: "\e83f";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-aixin1:before {
|
||||||
|
content: "\e85c";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-collect:before {
|
||||||
|
content: "\e603";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-xuanze:before {
|
||||||
|
content: "\e60b";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-shoujihao:before {
|
||||||
|
content: "\e67d";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-xuanze1:before {
|
||||||
|
content: "\e6cb";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-shuaxin:before {
|
||||||
|
content: "\e87e";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-shezhi:before {
|
||||||
|
content: "\e611";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-down-copy:before {
|
||||||
|
content: "\e85d";
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-up-copy:before {
|
||||||
|
content: "\e85e";
|
||||||
|
}
|
||||||
|
|
BIN
HSLink-app/unpackage/dist/build/app-plus/static/iconfont.ttf
vendored
Normal file
BIN
HSLink-app/unpackage/dist/build/app-plus/static/img/fabulous.png
vendored
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
HSLink-app/unpackage/dist/build/app-plus/static/img/fabuloused.png
vendored
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
HSLink-app/unpackage/dist/build/app-plus/static/img/logo-photo.png
vendored
Normal file
After Width: | Height: | Size: 6.7 KiB |
BIN
HSLink-app/unpackage/dist/build/app-plus/static/img/logo.png
vendored
Normal file
After Width: | Height: | Size: 6.7 KiB |
BIN
HSLink-app/unpackage/dist/build/app-plus/static/img/noData.png
vendored
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
HSLink-app/unpackage/dist/build/app-plus/static/img/qa.png
vendored
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
HSLink-app/unpackage/dist/build/app-plus/static/img/release.png
vendored
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
HSLink-app/unpackage/dist/build/app-plus/static/img/tabbar/add.png
vendored
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
HSLink-app/unpackage/dist/build/app-plus/static/img/tabbar/addactive.png
vendored
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
HSLink-app/unpackage/dist/build/app-plus/static/img/tabbar/guanzhu.png
vendored
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
HSLink-app/unpackage/dist/build/app-plus/static/img/tabbar/guanzhuactive.png
vendored
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
HSLink-app/unpackage/dist/build/app-plus/static/img/tabbar/home.png
vendored
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
HSLink-app/unpackage/dist/build/app-plus/static/img/tabbar/homeactive.png
vendored
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
HSLink-app/unpackage/dist/build/app-plus/static/img/tabbar/me.png
vendored
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
HSLink-app/unpackage/dist/build/app-plus/static/img/tabbar/meactive.png
vendored
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
HSLink-app/unpackage/dist/build/app-plus/static/img/tabbar/news.png
vendored
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
HSLink-app/unpackage/dist/build/app-plus/static/img/tabbar/newsactive.png
vendored
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
HSLink-app/unpackage/dist/build/app-plus/static/img/video.png
vendored
Normal file
After Width: | Height: | Size: 20 KiB |
11022
HSLink-app/unpackage/dist/build/app-plus/static/js/jquery-1.12.2.js
vendored
Normal file
57
HSLink-app/unpackage/dist/build/app-plus/static/js/public.js
vendored
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
/* 一些公共方法 */
|
||||||
|
|
||||||
|
import request from '@/util/request.js';
|
||||||
|
|
||||||
|
//获取当前时间
|
||||||
|
const getNowDate = function() {
|
||||||
|
const myDate = new Date();
|
||||||
|
let year = myDate.getFullYear();
|
||||||
|
let month = myDate.getMonth()+1 < 10 ? '0'+(myDate.getMonth()+1) : myDate.getMonth()+1;
|
||||||
|
let date = myDate.getDate() < 10 ? '0'+myDate.getDate() : myDate.getDate();
|
||||||
|
return year+"-"+month+"-"+date
|
||||||
|
};
|
||||||
|
export { getNowDate }
|
||||||
|
|
||||||
|
//格式化时间方法
|
||||||
|
const dateFormat = function (fmt, date) {
|
||||||
|
let ret;
|
||||||
|
const opt = {
|
||||||
|
"Y+": date.getFullYear().toString(), // 年
|
||||||
|
"m+": (date.getMonth() + 1).toString(), // 月
|
||||||
|
"d+": date.getDate().toString(), // 日
|
||||||
|
"H+": date.getHours().toString(), // 时
|
||||||
|
"M+": date.getMinutes().toString(), // 分
|
||||||
|
"S+": date.getSeconds().toString() // 秒
|
||||||
|
// 有其他格式化字符需求可以继续添加,必须转化成字符串
|
||||||
|
};
|
||||||
|
for (let k in opt) {
|
||||||
|
ret = new RegExp("(" + k + ")").exec(fmt);
|
||||||
|
if (ret) {
|
||||||
|
fmt = fmt.replace(ret[1], (ret[1].length == 1) ? (opt[k]) : (opt[k].padStart(ret[1].length, "0")))
|
||||||
|
};
|
||||||
|
};
|
||||||
|
return fmt;
|
||||||
|
};
|
||||||
|
export { dateFormat }
|
||||||
|
|
||||||
|
//排序方法
|
||||||
|
const sortBy = function(attr,rev){
|
||||||
|
//第二个参数没有传递 默认升序排列
|
||||||
|
if(rev === undefined){
|
||||||
|
rev = 1;
|
||||||
|
}else{
|
||||||
|
rev = (rev) ? 1 : -1;
|
||||||
|
}
|
||||||
|
return function(a,b){
|
||||||
|
a = a[attr];
|
||||||
|
b = b[attr];
|
||||||
|
if(a < b){
|
||||||
|
return rev * -1;
|
||||||
|
}
|
||||||
|
if(a > b){
|
||||||
|
return rev * 1;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
export { sortBy }
|
62
HSLink-app/unpackage/dist/build/app-plus/static/js/settings.js
vendored
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
/**
|
||||||
|
* 打开设置页面
|
||||||
|
* @param {String} setting 设置页面标识
|
||||||
|
* 参考Android原生android.provider.Settings类中定义的常量
|
||||||
|
*/
|
||||||
|
function openSetting(setting) {
|
||||||
|
try {
|
||||||
|
var os = plus.os.name;
|
||||||
|
if ('Android' == os) {
|
||||||
|
var main = plus.android.runtimeMainActivity();
|
||||||
|
var intent = plus.android.newObject('android.content.Intent', setting);
|
||||||
|
main.startActivity(intent);
|
||||||
|
} else {
|
||||||
|
//unsupport, nothing to do.
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error('error @openSettings!!');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function openAppSetting() {
|
||||||
|
try {
|
||||||
|
var os = plus.os.name;
|
||||||
|
if ('Android' == os) {
|
||||||
|
var main = plus.android.runtimeMainActivity();
|
||||||
|
var intent = plus.android.newObject('android.content.Intent', 'android.settings.APPLICATION_DETAILS_SETTINGS');
|
||||||
|
var uri = plus.android.invoke('android.net.Uri', 'fromParts', 'package', main.getPackageName(), null);
|
||||||
|
plus.android.invoke(intent, 'setData', uri);
|
||||||
|
main.startActivity(intent);
|
||||||
|
} else {
|
||||||
|
//unsupport, nothing to do.
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.error('error @openAppSetting!!');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
SETTINGS: 'android.settings.SETTINGS',
|
||||||
|
APN_SETTINGS: 'android.settings.APN_SETTINGS',
|
||||||
|
LOCATION_SOURCE_SETTINGS: 'android.settings.LOCATION_SOURCE_SETTINGS',
|
||||||
|
USER_SETTINGS: 'android.settings.USER_SETTINGS',
|
||||||
|
WIRELESS_SETTINGS: 'android.settings.WIRELESS_SETTINGS',
|
||||||
|
SECURITY_SETTINGS: 'android.settings.SECURITY_SETTINGS',
|
||||||
|
PRIVACY_SETTINGS: 'android.settings.PRIVACY_SETTINGS',
|
||||||
|
WIFI_SETTINGS: 'android.settings.WIFI_SETTINGS',
|
||||||
|
WIFI_IP_SETTINGS: 'android.settings.WIFI_IP_SETTINGS',
|
||||||
|
BLUETOOTH_SETTINGS: 'android.settings.BLUETOOTH_SETTINGS',
|
||||||
|
CAST_SETTINGS: 'android.settings.CAST_SETTINGS',
|
||||||
|
DATE_SETTINGS: 'android.settings.DATE_SETTINGS',
|
||||||
|
SOUND_SETTINGS: 'android.settings.SOUND_SETTINGS',
|
||||||
|
DISPLAY_SETTINGS: 'android.settings.DISPLAY_SETTINGS',
|
||||||
|
LOCALE_SETTINGS: 'android.settings.LOCALE_SETTINGS',
|
||||||
|
VOICE_INPUT_SETTINGS: 'android.settings.VOICE_INPUT_SETTINGS',
|
||||||
|
INPUT_METHOD_SETTINGS: 'android.settings.INPUT_METHOD_SETTINGS',
|
||||||
|
MANAGE_APPLICATIONS_SETTINGS: 'android.settings.MANAGE_APPLICATIONS_SETTINGS',
|
||||||
|
DEVICE_INFO_SETTINGS: 'android.settings.DEVICE_INFO_SETTINGS',
|
||||||
|
NOTIFICATION_SETTINGS: 'android.settings.NOTIFICATION_SETTINGS',
|
||||||
|
open: openSetting,
|
||||||
|
openAppSetting: openAppSetting
|
||||||
|
}
|
1
HSLink-app/unpackage/dist/build/app-plus/static/js/uni.webview.1.5.2.js
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
!function(e,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n():"function"==typeof define&&define.amd?define(n):(e=e||self).uni=n()}(this,(function(){"use strict";try{var e={};Object.defineProperty(e,"passive",{get:function(){!0}}),window.addEventListener("test-passive",null,e)}catch(e){}var n=Object.prototype.hasOwnProperty;function t(e,t){return n.call(e,t)}var i=[],a=function(e,n){var t={options:{timestamp:+new Date},name:e,arg:n};if(window.__dcloud_weex_postMessage||window.__dcloud_weex_){if("postMessage"===e){var a={data:[n]};return window.__dcloud_weex_postMessage?window.__dcloud_weex_postMessage(a):window.__dcloud_weex_.postMessage(JSON.stringify(a))}var o={type:"WEB_INVOKE_APPSERVICE",args:{data:t,webviewIds:i}};window.__dcloud_weex_postMessage?window.__dcloud_weex_postMessageToService(o):window.__dcloud_weex_.postMessageToService(JSON.stringify(o))}if(!window.plus)return window.parent.postMessage({type:"WEB_INVOKE_APPSERVICE",data:t,pageId:""},"*");if(0===i.length){var r=plus.webview.currentWebview();if(!r)throw new Error("plus.webview.currentWebview() is undefined");var d=r.parent(),s="";s=d?d.id:r.id,i.push(s)}if(plus.webview.getWebviewById("__uniapp__service"))plus.webview.postMessageToUniNView({type:"WEB_INVOKE_APPSERVICE",args:{data:t,webviewIds:i}},"__uniapp__service");else{var w=JSON.stringify(t);plus.webview.getLaunchWebview().evalJS('UniPlusBridge.subscribeHandler("'.concat("WEB_INVOKE_APPSERVICE",'",').concat(w,",").concat(JSON.stringify(i),");"))}},o={navigateTo:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.url;a("navigateTo",{url:encodeURI(n)})},navigateBack:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.delta;a("navigateBack",{delta:parseInt(n)||1})},switchTab:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.url;a("switchTab",{url:encodeURI(n)})},reLaunch:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.url;a("reLaunch",{url:encodeURI(n)})},redirectTo:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.url;a("redirectTo",{url:encodeURI(n)})},getEnv:function(e){window.plus?e({plus:!0}):e({h5:!0})},postMessage:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};a("postMessage",e.data||{})}},r=/uni-app/i.test(navigator.userAgent),d=/Html5Plus/i.test(navigator.userAgent),s=/complete|loaded|interactive/;var w=window.my&&navigator.userAgent.indexOf("AlipayClient")>-1;var u=window.swan&&window.swan.webView&&/swan/i.test(navigator.userAgent);var c=window.qq&&window.qq.miniProgram&&/QQ/i.test(navigator.userAgent)&&/miniProgram/i.test(navigator.userAgent);var g=window.tt&&window.tt.miniProgram&&/toutiaomicroapp/i.test(navigator.userAgent);var v=window.wx&&window.wx.miniProgram&&/micromessenger/i.test(navigator.userAgent)&&/miniProgram/i.test(navigator.userAgent);var p=window.qa&&/quickapp/i.test(navigator.userAgent);for(var l,_=function(){window.UniAppJSBridge=!0,document.dispatchEvent(new CustomEvent("UniAppJSBridgeReady",{bubbles:!0,cancelable:!0}))},f=[function(e){if(r||d)return window.__dcloud_weex_postMessage||window.__dcloud_weex_?document.addEventListener("DOMContentLoaded",e):window.plus&&s.test(document.readyState)?setTimeout(e,0):document.addEventListener("plusready",e),o},function(e){if(v)return window.WeixinJSBridge&&window.WeixinJSBridge.invoke?setTimeout(e,0):document.addEventListener("WeixinJSBridgeReady",e),window.wx.miniProgram},function(e){if(c)return window.QQJSBridge&&window.QQJSBridge.invoke?setTimeout(e,0):document.addEventListener("QQJSBridgeReady",e),window.qq.miniProgram},function(e){if(w){document.addEventListener("DOMContentLoaded",e);var n=window.my;return{navigateTo:n.navigateTo,navigateBack:n.navigateBack,switchTab:n.switchTab,reLaunch:n.reLaunch,redirectTo:n.redirectTo,postMessage:n.postMessage,getEnv:n.getEnv}}},function(e){if(u)return document.addEventListener("DOMContentLoaded",e),window.swan.webView},function(e){if(g)return document.addEventListener("DOMContentLoaded",e),window.tt.miniProgram},function(e){if(p){window.QaJSBridge&&window.QaJSBridge.invoke?setTimeout(e,0):document.addEventListener("QaJSBridgeReady",e);var n=window.qa;return{navigateTo:n.navigateTo,navigateBack:n.navigateBack,switchTab:n.switchTab,reLaunch:n.reLaunch,redirectTo:n.redirectTo,postMessage:n.postMessage,getEnv:n.getEnv}}},function(e){return document.addEventListener("DOMContentLoaded",e),o}],m=0;m<f.length&&!(l=f[m](_));m++);l||(l={});var E="undefined"!=typeof uni?uni:{};if(!E.navigateTo)for(var b in l)t(l,b)&&(E[b]=l[b]);return E.webView=l,E}));
|
BIN
HSLink-app/unpackage/dist/build/app-plus/static/logo.png
vendored
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
HSLink-app/unpackage/dist/build/app-plus/static/shanchu.png
vendored
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
HSLink-app/unpackage/dist/build/app-plus/static/yticon.ttf
vendored
Normal file
1
HSLink-app/unpackage/dist/build/app-plus/view.css
vendored
Normal file
6
HSLink-app/unpackage/dist/build/app-plus/view.umd.min.js
vendored
Normal file
BIN
HSLink-app/unpackage/res/icons/1024x1024.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
HSLink-app/unpackage/res/icons/120x120.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
HSLink-app/unpackage/res/icons/144x144.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
HSLink-app/unpackage/res/icons/152x152.png
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
HSLink-app/unpackage/res/icons/167x167.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
HSLink-app/unpackage/res/icons/180x180.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
HSLink-app/unpackage/res/icons/192x192.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
HSLink-app/unpackage/res/icons/20x20.png
Normal file
After Width: | Height: | Size: 559 B |
BIN
HSLink-app/unpackage/res/icons/29x29.png
Normal file
After Width: | Height: | Size: 712 B |
BIN
HSLink-app/unpackage/res/icons/40x40.png
Normal file
After Width: | Height: | Size: 919 B |
BIN
HSLink-app/unpackage/res/icons/58x58.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
HSLink-app/unpackage/res/icons/60x60.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
HSLink-app/unpackage/res/icons/72x72.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
HSLink-app/unpackage/res/icons/76x76.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
HSLink-app/unpackage/res/icons/80x80.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
HSLink-app/unpackage/res/icons/87x87.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
HSLink-app/unpackage/res/icons/96x96.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
@ -275,8 +275,57 @@ public class HSController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取管理员文章审核列表
|
* 获取关注列表
|
||||||
|
* @param param
|
||||||
|
* @return
|
||||||
*/
|
*/
|
||||||
|
@PostMapping("/getFollowList")
|
||||||
|
@ResponseBody
|
||||||
|
public Map<String, Object> getFollowList(@RequestBody Map<String,Object> param){
|
||||||
|
Map<String, Object> result = new HashMap<>();
|
||||||
|
result = hsService.getFollowList(param);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 取消关注
|
||||||
|
* @param param
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
@PostMapping("/cancelFollow")
|
||||||
|
@ResponseBody
|
||||||
|
public Map<String, Object> cancelFollow(@RequestBody Map<String,Object> param){
|
||||||
|
Map<String, Object> result = new HashMap<>();
|
||||||
|
result = hsService.cancelFollow(param);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 加关注
|
||||||
|
* @param param
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
@PostMapping("/addFollow")
|
||||||
|
@ResponseBody
|
||||||
|
public Map<String, Object> addFollow(@RequestBody Map<String,Object> param){
|
||||||
|
Map<String, Object> result = new HashMap<>();
|
||||||
|
result = hsService.addFollow(param);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取关注人员列表
|
||||||
|
* @param param
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
@PostMapping("/getFollowPeopleList")
|
||||||
|
@ResponseBody
|
||||||
|
public Map<String, Object> getFollowPeopleList(@RequestBody Map<String,Object> param){
|
||||||
|
Map<String, Object> result = new HashMap<>();
|
||||||
|
result = hsService.getFollowPeopleList(param);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -190,4 +190,32 @@ public interface HSLinkMapper {
|
|||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
int updateReadApp(Map<String, Object> param);
|
int updateReadApp(Map<String, Object> param);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取关注列表
|
||||||
|
* @param param
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
List<Map<String, Object>> getFollowList(Map<String, Object> param);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 取消关注
|
||||||
|
* @param param
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
int cancelFollow(Map<String, Object> param);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 加关注
|
||||||
|
* @param param
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
int addFollow(Map<String, Object> param);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取关注人员列表
|
||||||
|
* @param param
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
List<Map<String, Object>> getFollowPeopleList(Map<String, Object> param);
|
||||||
}
|
}
|
||||||
|
@ -136,8 +136,7 @@
|
|||||||
type
|
type
|
||||||
FROM
|
FROM
|
||||||
hs_notice s left join hs_user u on s.release_id = u.user_id
|
hs_notice s left join hs_user u on s.release_id = u.user_id
|
||||||
where 1 = 1
|
where status = "1"
|
||||||
and status = "1"
|
|
||||||
<if test="releaseId != null and releaseId != ''">
|
<if test="releaseId != null and releaseId != ''">
|
||||||
and release_id = #{releaseId}
|
and release_id = #{releaseId}
|
||||||
</if>
|
</if>
|
||||||
@ -147,10 +146,12 @@
|
|||||||
<if test="type != null and type != ''">
|
<if test="type != null and type != ''">
|
||||||
and type = #{type}
|
and type = #{type}
|
||||||
</if>
|
</if>
|
||||||
|
<if test="text != null and text != ''">
|
||||||
and (label like CONCAT('%',#{text},'%')
|
and (label like CONCAT('%',#{text},'%')
|
||||||
or title like CONCAT('%',#{text},'%')
|
or title like CONCAT('%',#{text},'%')
|
||||||
or content like CONCAT('%',#{text},'%')
|
or content like CONCAT('%',#{text},'%')
|
||||||
or real_name like CONCAT('%',#{text},'%'))
|
or real_name like CONCAT('%',#{text},'%'))
|
||||||
|
</if>
|
||||||
ORDER BY release_time desc
|
ORDER BY release_time desc
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
@ -244,8 +245,22 @@
|
|||||||
|
|
||||||
<!--获取个人信息-->
|
<!--获取个人信息-->
|
||||||
<select id="getPersonalInfo" parameterType="map" resultType="map">
|
<select id="getPersonalInfo" parameterType="map" resultType="map">
|
||||||
select * , (select count(*) from hs_private_letter where receive_id = #{releaseId} and already_read = "0" and receive_status = "1") letter_number
|
SELECT
|
||||||
from hs_user where user_id = #{releaseId}
|
*,
|
||||||
|
(
|
||||||
|
SELECT
|
||||||
|
count( * )
|
||||||
|
FROM
|
||||||
|
hs_private_letter
|
||||||
|
WHERE
|
||||||
|
receive_id = '201610060129' and already_read = "0" and receive_status = "1") letter_number,
|
||||||
|
(SELECT count(*) from hs_follow where user_id = #{userId} and follow_id = #{releaseId}) isFollow,
|
||||||
|
(SELECT count(*) from hs_follow where user_id = #{releaseId}) followNumber,
|
||||||
|
(SELECT count(*) from hs_follow where follow_id = #{releaseId}) fansNumber
|
||||||
|
FROM
|
||||||
|
hs_user
|
||||||
|
WHERE
|
||||||
|
user_id = #{releaseId}
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<!--获取个人私信-->
|
<!--获取个人私信-->
|
||||||
@ -306,6 +321,16 @@
|
|||||||
user_id = #{userId}
|
user_id = #{userId}
|
||||||
</delete>
|
</delete>
|
||||||
|
|
||||||
|
<!--取消关注-->
|
||||||
|
<delete id="cancelFollow" parameterType="map">
|
||||||
|
DELETE
|
||||||
|
FROM
|
||||||
|
hs_follow
|
||||||
|
WHERE
|
||||||
|
user_id = #{userId}
|
||||||
|
AND follow_id = #{followId}
|
||||||
|
</delete>
|
||||||
|
|
||||||
<!--获取已发送私信-->
|
<!--获取已发送私信-->
|
||||||
<select id="getSentPrivateLetter" resultType="map" parameterType="map">
|
<select id="getSentPrivateLetter" resultType="map" parameterType="map">
|
||||||
select * from hs_private_letter left join hs_user on send_id = user_id where send_id = #{userId} and send_status = "1"
|
select * from hs_private_letter left join hs_user on send_id = user_id where send_id = #{userId} and send_status = "1"
|
||||||
@ -323,6 +348,13 @@
|
|||||||
(#{id},#{fileName},#{fileEncryption},#{filePath},now())
|
(#{id},#{fileName},#{fileEncryption},#{filePath},now())
|
||||||
</insert>
|
</insert>
|
||||||
|
|
||||||
|
<!--加关注-->
|
||||||
|
<insert id="addFollow">
|
||||||
|
INSERT INTO hs_follow ( id, user_id, follow_id, create_time )
|
||||||
|
VALUES
|
||||||
|
( uuid(), #{userId}, #{followId}, now() )
|
||||||
|
</insert>
|
||||||
|
|
||||||
<!--获取文件信息-->
|
<!--获取文件信息-->
|
||||||
<select id="getFileList" resultType="java.util.Map">
|
<select id="getFileList" resultType="java.util.Map">
|
||||||
select
|
select
|
||||||
@ -388,4 +420,35 @@
|
|||||||
letter_create_time
|
letter_create_time
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
<!--获取关注列表-->
|
||||||
|
<select id="getFollowList" resultType="map" parameterType="map">
|
||||||
|
SELECT
|
||||||
|
p.id,
|
||||||
|
label,
|
||||||
|
title,
|
||||||
|
type,
|
||||||
|
content,
|
||||||
|
user_id,
|
||||||
|
real_name,
|
||||||
|
release_time
|
||||||
|
FROM
|
||||||
|
hs_notice p
|
||||||
|
LEFT JOIN hs_user u ON p.release_id = u.user_id
|
||||||
|
WHERE
|
||||||
|
release_id IN ( SELECT follow_id FROM hs_follow WHERE user_id = #{userId} )
|
||||||
|
AND STATUS = "1"
|
||||||
|
ORDER BY
|
||||||
|
release_time DESC
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<!--获取关注列表-->
|
||||||
|
<select id="getFollowPeopleList" resultType="map" parameterType="map">
|
||||||
|
SELECT
|
||||||
|
*
|
||||||
|
FROM
|
||||||
|
hs_user
|
||||||
|
WHERE
|
||||||
|
user_id IN ( SELECT follow_id FROM hs_follow WHERE user_id = #{userId} )
|
||||||
|
</select>
|
||||||
|
|
||||||
</mapper>
|
</mapper>
|
@ -155,4 +155,32 @@ public interface HSService {
|
|||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
Map<String, Object> updateReadApp(Map<String, Object> param);
|
Map<String, Object> updateReadApp(Map<String, Object> param);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取关注列表
|
||||||
|
* @param param
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
Map<String, Object> getFollowList(Map<String, Object> param);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 取消关注
|
||||||
|
* @param param
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
Map<String, Object> cancelFollow(Map<String, Object> param);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 加关注
|
||||||
|
* @param param
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
Map<String, Object> addFollow(Map<String, Object> param);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取关注人员列表
|
||||||
|
* @param param
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
Map<String, Object> getFollowPeopleList(Map<String, Object> param);
|
||||||
}
|
}
|
@ -514,6 +514,54 @@ public class HSServiceImpl implements HSService {
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Map<String, Object> getFollowList(Map<String, Object> param) {
|
||||||
|
Map<String, Object> result = new HashMap<>();
|
||||||
|
List<Map<String, Object>> res = hsLinkMapper.getFollowList(param);
|
||||||
|
result.put("data",res);
|
||||||
|
result.put("success",true);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Map<String, Object> cancelFollow(Map<String, Object> param) {
|
||||||
|
Map<String, Object> result = new HashMap<>();
|
||||||
|
int res = 0;
|
||||||
|
try {
|
||||||
|
res = hsLinkMapper.cancelFollow(param);
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
res = 0;
|
||||||
|
}
|
||||||
|
result.put("data",res);
|
||||||
|
result.put("success",true);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Map<String, Object> addFollow(Map<String, Object> param) {
|
||||||
|
Map<String, Object> result = new HashMap<>();
|
||||||
|
int res = 0;
|
||||||
|
try {
|
||||||
|
res = hsLinkMapper.addFollow(param);
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
res = 0;
|
||||||
|
}
|
||||||
|
result.put("data",res);
|
||||||
|
result.put("success",true);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Map<String, Object> getFollowPeopleList(Map<String, Object> param) {
|
||||||
|
Map<String, Object> result = new HashMap<>();
|
||||||
|
List<Map<String, Object>> res = hsLinkMapper.getFollowPeopleList(param);
|
||||||
|
result.put("data",res);
|
||||||
|
result.put("success",true);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 返回参数
|
* 返回参数
|
||||||
* @param flag
|
* @param flag
|
||||||
|
@ -13,9 +13,9 @@ logging:
|
|||||||
spring:
|
spring:
|
||||||
datasource:
|
datasource:
|
||||||
# url: jdbc:mysql://123.57.22.91:3306/hslink?serverTimezone=Hongkong&useUnicode=true&characterEncoding=utf8
|
# url: jdbc:mysql://123.57.22.91:3306/hslink?serverTimezone=Hongkong&useUnicode=true&characterEncoding=utf8
|
||||||
url: jdbc:mysql://127.0.0.1:3306/hslink?serverTimezone=Hongkong&useUnicode=true&characterEncoding=utf8
|
url: jdbc:mysql://106.53.113.158:3306/hslink?serverTimezone=Hongkong&useUnicode=true&characterEncoding=utf8
|
||||||
username: root
|
username: root
|
||||||
password: 123456
|
password: Beater123
|
||||||
db-name: hslink
|
db-name: hslink
|
||||||
filters: log4j,wall,mergeStat
|
filters: log4j,wall,mergeStat
|
||||||
driverClassName: com.mysql.cj.jdbc.Driver
|
driverClassName: com.mysql.cj.jdbc.Driver
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
import de from "element-ui/src/locale/lang/de";
|
import de from "element-ui/src/locale/lang/de";
|
||||||
|
|
||||||
// let root = 'http://192.168.10.29:8048'
|
// let root = 'http://192.168.10.29:8048'
|
||||||
// let root = 'http://123.57.22.91:8048'
|
let root = 'http://106.53.113.158:8048'
|
||||||
let root = 'http://127.0.0.1:8048'
|
// let root = 'http://127.0.0.1:8048'
|
||||||
// 引用axios
|
// 引用axios
|
||||||
let axios = require('axios')
|
let axios = require('axios')
|
||||||
// 自定义判断元素类型JS
|
// 自定义判断元素类型JS
|
||||||
|