Compare commits
No commits in common. 'main' and 'lvtianfang' have entirely different histories.
main
...
lvtianfang
@ -1,44 +0,0 @@
|
|||||||
import request from "@/utils/request";
|
|
||||||
|
|
||||||
// 查询活动申请列表
|
|
||||||
export function listActivity(query) {
|
|
||||||
return request({
|
|
||||||
url: "/jn/activity/list",
|
|
||||||
method: "get",
|
|
||||||
params: query,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// 查询活动申请详细
|
|
||||||
export function getActivity(id) {
|
|
||||||
return request({
|
|
||||||
url: "/jn/activity/" + id,
|
|
||||||
method: "get",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// 新增活动申请
|
|
||||||
export function addActivity(data) {
|
|
||||||
return request({
|
|
||||||
url: "/jn/activity",
|
|
||||||
method: "post",
|
|
||||||
data: data,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// 修改活动申请
|
|
||||||
export function updateActivity(data) {
|
|
||||||
return request({
|
|
||||||
url: "/jn/activity",
|
|
||||||
method: "put",
|
|
||||||
data: data,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// 删除活动申请
|
|
||||||
export function delActivity(id) {
|
|
||||||
return request({
|
|
||||||
url: "/jn/activity/" + id,
|
|
||||||
method: "delete",
|
|
||||||
});
|
|
||||||
}
|
|
@ -1,25 +0,0 @@
|
|||||||
import request from "@/utils/request";
|
|
||||||
// APP打卡
|
|
||||||
export function clock(data) {
|
|
||||||
return request({
|
|
||||||
url: "/jn/record/clock",
|
|
||||||
method: "post",
|
|
||||||
data,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
// 获取打卡状态
|
|
||||||
export function getStatus(data){
|
|
||||||
return request({
|
|
||||||
url:"/jn/record/status",
|
|
||||||
method:"post",
|
|
||||||
data
|
|
||||||
})
|
|
||||||
}
|
|
||||||
// 判断用户位置
|
|
||||||
export function judgmentPosition(data){
|
|
||||||
return request({
|
|
||||||
url:"/jn/record/judgmentPosition",
|
|
||||||
method:"post",
|
|
||||||
data
|
|
||||||
})
|
|
||||||
}
|
|
@ -1,44 +0,0 @@
|
|||||||
import request from "@/utils/request";
|
|
||||||
|
|
||||||
// 查询活动申请列表
|
|
||||||
export function listLevel(query) {
|
|
||||||
return request({
|
|
||||||
url: "/jn/level/list",
|
|
||||||
method: "get",
|
|
||||||
params: query,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// 查询活动申请详细
|
|
||||||
export function getLevel(id) {
|
|
||||||
return request({
|
|
||||||
url: "/jn/level/" + id,
|
|
||||||
method: "get",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// 新增活动申请
|
|
||||||
export function addLevel(data) {
|
|
||||||
return request({
|
|
||||||
url: "/jn/level",
|
|
||||||
method: "post",
|
|
||||||
data: data,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// 修改活动申请
|
|
||||||
export function updateLevel(data) {
|
|
||||||
return request({
|
|
||||||
url: "/jn/level",
|
|
||||||
method: "put",
|
|
||||||
data: data,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// 删除活动申请
|
|
||||||
export function delLevel(id) {
|
|
||||||
return request({
|
|
||||||
url: "/jn/level/" + id,
|
|
||||||
method: "delete",
|
|
||||||
});
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
import request from "@/utils/request";
|
|
||||||
|
|
||||||
|
|
||||||
// getSqByaccesstoken
|
|
||||||
export function getSqByaccesstoken(params) {
|
|
||||||
return request({
|
|
||||||
url: "/jn/single/getSqByaccesstoken",
|
|
||||||
method: "get",
|
|
||||||
params,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
export function getCode(params){
|
|
||||||
return request({
|
|
||||||
url:"/jn/single/getSq",
|
|
||||||
method: "get",
|
|
||||||
params
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
export function getUserinfo(params){
|
|
||||||
return request({
|
|
||||||
url:"/jn/single/getUserByaccessToken",
|
|
||||||
method: "get",
|
|
||||||
params,
|
|
||||||
// headers:{
|
|
||||||
// isToken:false,
|
|
||||||
// }
|
|
||||||
})
|
|
||||||
}
|
|
||||||
// 获取用户的考勤点
|
|
||||||
export function getUserIdByPoint(params){
|
|
||||||
return request({
|
|
||||||
url:"/jn/single/getUserByaccessToken",
|
|
||||||
method: "get",
|
|
||||||
params,
|
|
||||||
})
|
|
||||||
}
|
|
@ -1,44 +0,0 @@
|
|||||||
import request from '@/utils/request'
|
|
||||||
|
|
||||||
// 查询商家端消息中心列表
|
|
||||||
export function listNews(query) {
|
|
||||||
return request({
|
|
||||||
url: '/jn/news/list',
|
|
||||||
method: 'get',
|
|
||||||
params: query
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
// 查询商家端消息中心详细
|
|
||||||
export function getNews(id) {
|
|
||||||
return request({
|
|
||||||
url: '/jn/news/' + id,
|
|
||||||
method: 'get'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
// 新增商家端消息中心
|
|
||||||
export function addNews(data) {
|
|
||||||
return request({
|
|
||||||
url: '/jn/news',
|
|
||||||
method: 'post',
|
|
||||||
data: data
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
// 修改商家端消息中心
|
|
||||||
export function updateNews(data) {
|
|
||||||
return request({
|
|
||||||
url: '/jn/news',
|
|
||||||
method: 'put',
|
|
||||||
data: data
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
// 删除商家端消息中心
|
|
||||||
export function delNews(id) {
|
|
||||||
return request({
|
|
||||||
url: '/jn/news/' + id,
|
|
||||||
method: 'delete'
|
|
||||||
})
|
|
||||||
}
|
|
@ -1,41 +0,0 @@
|
|||||||
import request from '@/utils/request'
|
|
||||||
|
|
||||||
//分页条件查询脱岗违停统计表
|
|
||||||
export function tgwtList(params) {
|
|
||||||
return request({
|
|
||||||
url: "/jn/bTgwttj",
|
|
||||||
method:'get',
|
|
||||||
params
|
|
||||||
})
|
|
||||||
}
|
|
||||||
//新增脱岗违停统计表
|
|
||||||
export function tgwtAdd(data) {
|
|
||||||
return request({
|
|
||||||
url: `/jn/bTgwttj`,
|
|
||||||
method:'post',
|
|
||||||
data
|
|
||||||
})
|
|
||||||
}
|
|
||||||
//脱岗违停审批
|
|
||||||
export function tgwtSp(data) {
|
|
||||||
return request({
|
|
||||||
url: `/jn/bTgwttj/approval`,
|
|
||||||
method:'post',
|
|
||||||
data
|
|
||||||
})
|
|
||||||
}
|
|
||||||
//脱岗违停发起申诉
|
|
||||||
export function tgwtSs(data) {
|
|
||||||
return request({
|
|
||||||
url: `/jn/bTgwttj/complaint`,
|
|
||||||
method:'post',
|
|
||||||
data
|
|
||||||
})
|
|
||||||
}
|
|
||||||
//脱岗违停查询单条
|
|
||||||
export function tgwtGet(id) {
|
|
||||||
return request({
|
|
||||||
url: `/jn/bTgwttj/${id}`,
|
|
||||||
method:'get',
|
|
||||||
})
|
|
||||||
}
|
|
@ -1,49 +0,0 @@
|
|||||||
<template>
|
|
||||||
<view class="fixedButtom view-global">
|
|
||||||
<u-button :text="title" :color="color" @click="clickBtn" :customStyle="{
|
|
||||||
height:'88rpx',
|
|
||||||
borderRadius: '16rpx'
|
|
||||||
}"></u-button>
|
|
||||||
</view>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
props: {
|
|
||||||
color: {
|
|
||||||
type: String,
|
|
||||||
default: 'linear-gradient(90deg, #3976F1 0%, #3CA0F6 100%)'
|
|
||||||
},
|
|
||||||
title: {
|
|
||||||
type: String,
|
|
||||||
default: '申请复核'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
name: "fixedButtom",
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
|
|
||||||
};
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
clickBtn() {
|
|
||||||
this.$emit('click')
|
|
||||||
}
|
|
||||||
},
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="scss">
|
|
||||||
.fixedButtom {
|
|
||||||
position: fixed;
|
|
||||||
bottom: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
background: #fff;
|
|
||||||
padding: 20rpx 20rpx calc(20rpx + constant(safe-area-inset-bottom));
|
|
||||||
/* 兼容 iOS < 11.2 */
|
|
||||||
padding: 20rpx 20rpx calc(20rpx + env(safe-area-inset-bottom));
|
|
||||||
/* 兼容 iOS >= 11.2 */
|
|
||||||
border-top: 1px solid #DCE3EC;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,56 +0,0 @@
|
|||||||
{
|
|
||||||
"requires": true,
|
|
||||||
"lockfileVersion": 1,
|
|
||||||
"dependencies": {
|
|
||||||
"@turf/boolean-point-in-polygon": {
|
|
||||||
"version": "6.5.0",
|
|
||||||
"resolved": "https://registry.npmmirror.com/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-6.5.0.tgz",
|
|
||||||
"integrity": "sha512-DtSuVFB26SI+hj0SjrvXowGTUCHlgevPAIsukssW6BG5MlNSBQAo70wpICBNJL6RjukXg8d2eXaAWuD/CqL00A==",
|
|
||||||
"requires": {
|
|
||||||
"@turf/helpers": "^6.5.0",
|
|
||||||
"@turf/invariant": "^6.5.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@turf/circle": {
|
|
||||||
"version": "6.5.0",
|
|
||||||
"resolved": "https://registry.npmmirror.com/@turf/circle/-/circle-6.5.0.tgz",
|
|
||||||
"integrity": "sha512-oU1+Kq9DgRnoSbWFHKnnUdTmtcRUMmHoV9DjTXu9vOLNV5OWtAAh1VZ+mzsioGGzoDNT/V5igbFOkMfBQc0B6A==",
|
|
||||||
"requires": {
|
|
||||||
"@turf/destination": "^6.5.0",
|
|
||||||
"@turf/helpers": "^6.5.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@turf/destination": {
|
|
||||||
"version": "6.5.0",
|
|
||||||
"resolved": "https://registry.npmmirror.com/@turf/destination/-/destination-6.5.0.tgz",
|
|
||||||
"integrity": "sha512-4cnWQlNC8d1tItOz9B4pmJdWpXqS0vEvv65bI/Pj/genJnsL7evI0/Xw42RvEGROS481MPiU80xzvwxEvhQiMQ==",
|
|
||||||
"requires": {
|
|
||||||
"@turf/helpers": "^6.5.0",
|
|
||||||
"@turf/invariant": "^6.5.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"@turf/helpers": {
|
|
||||||
"version": "6.5.0",
|
|
||||||
"resolved": "https://registry.npmmirror.com/@turf/helpers/-/helpers-6.5.0.tgz",
|
|
||||||
"integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw=="
|
|
||||||
},
|
|
||||||
"@turf/invariant": {
|
|
||||||
"version": "6.5.0",
|
|
||||||
"resolved": "https://registry.npmmirror.com/@turf/invariant/-/invariant-6.5.0.tgz",
|
|
||||||
"integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==",
|
|
||||||
"requires": {
|
|
||||||
"@turf/helpers": "^6.5.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"hls.js": {
|
|
||||||
"version": "1.4.14",
|
|
||||||
"resolved": "https://registry.npmmirror.com/hls.js/-/hls.js-1.4.14.tgz",
|
|
||||||
"integrity": "sha512-UppQjyvPVclg+6t2KY/Rv03h0+bA5u6zwqVoz4LAC/L0fgYmIaCD7ZCrwe8WI1Gv01be1XL0QFsRbSdIHV/Wbw=="
|
|
||||||
},
|
|
||||||
"mui-player": {
|
|
||||||
"version": "1.8.1",
|
|
||||||
"resolved": "https://registry.npmmirror.com/mui-player/-/mui-player-1.8.1.tgz",
|
|
||||||
"integrity": "sha512-5o0SnSyVImxT9XUO6jCMmcJ+ZyAEJeFvdeZDHHPNS/LdwhzWX4yQPNgx8nzRbcUJ749xpqEQ6uVddiexLyvvqg=="
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,135 +0,0 @@
|
|||||||
<template>
|
|
||||||
<view class="app-container">
|
|
||||||
<u-navbar title="消息列表" :autoBack="true" :placeholder="true" leftIcon="">
|
|
||||||
<view slot="right">
|
|
||||||
<text class="nav-right">全部清空</text>
|
|
||||||
</view>
|
|
||||||
</u-navbar>
|
|
||||||
<u-search
|
|
||||||
height="75rpx"
|
|
||||||
placeholder="搜索关键词"
|
|
||||||
v-model="keyword"
|
|
||||||
shape="square"
|
|
||||||
:showAction="false"
|
|
||||||
class="view-global"
|
|
||||||
bgColor="#fff"
|
|
||||||
></u-search>
|
|
||||||
<view class="msg-list">
|
|
||||||
<view class="msg-item view-global">
|
|
||||||
<view class="msg-icon" style="background-color: #367bef">
|
|
||||||
<u-badge
|
|
||||||
bgColor="#FE3434"
|
|
||||||
max="99"
|
|
||||||
value="9"
|
|
||||||
:absolute="true"
|
|
||||||
:offset="[0, 0]"
|
|
||||||
></u-badge>
|
|
||||||
<image src="/static/images/msg3.png" mode="aspectFill"></image>
|
|
||||||
</view>
|
|
||||||
|
|
||||||
<view class="msg-middle">
|
|
||||||
<view class="middle-main">执法二队-李小强</view>
|
|
||||||
<view class="middle-sub">这是一条普通的消息详情</view>
|
|
||||||
</view>
|
|
||||||
<view class="msg-date">19:18</view>
|
|
||||||
</view>
|
|
||||||
<view class="msg-item view-global">
|
|
||||||
<view class="msg-icon" style="background-color: #32b78b">
|
|
||||||
<u-badge
|
|
||||||
bgColor="#FE3434"
|
|
||||||
max="99"
|
|
||||||
value="99"
|
|
||||||
:absolute="true"
|
|
||||||
:offset="[0, 0]"
|
|
||||||
></u-badge>
|
|
||||||
<image src="/static/images/msg2.png" mode="aspectFill"></image>
|
|
||||||
</view>
|
|
||||||
<view class="msg-middle">
|
|
||||||
<view class="middle-main">消息通知</view>
|
|
||||||
<view class="middle-sub">这是一条普通的消息详情</view>
|
|
||||||
</view>
|
|
||||||
<view class="msg-date">19:18</view>
|
|
||||||
</view>
|
|
||||||
<view class="msg-item view-global">
|
|
||||||
<view class="msg-icon" style="background-color: #f08941">
|
|
||||||
<u-badge
|
|
||||||
bgColor="#FE3434"
|
|
||||||
max="99"
|
|
||||||
value="0"
|
|
||||||
:absolute="true"
|
|
||||||
:offset="[0, 0]"
|
|
||||||
></u-badge>
|
|
||||||
<image src="/static/images/msg1.png" mode="aspectFill"></image>
|
|
||||||
</view>
|
|
||||||
<view class="msg-middle">
|
|
||||||
<view class="middle-main">告警消息</view>
|
|
||||||
<view class="middle-sub">这是一条普通的消息详情</view>
|
|
||||||
</view>
|
|
||||||
<view class="msg-date">19:18</view>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</template>
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
keyword: "",
|
|
||||||
};
|
|
||||||
},
|
|
||||||
onLoad() {},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.msg-list {
|
|
||||||
.msg-item {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
background-color: #fff;
|
|
||||||
border-radius: 16rpx;
|
|
||||||
margin-top: 30rpx;
|
|
||||||
box-sizing: border-box;
|
|
||||||
padding: 20rpx;
|
|
||||||
|
|
||||||
.msg-icon {
|
|
||||||
position: relative;
|
|
||||||
height: 94rpx;
|
|
||||||
width: 94rpx;
|
|
||||||
border-radius: 50%;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
|
|
||||||
image {
|
|
||||||
height: 44rpx;
|
|
||||||
width: 44rpx;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.msg-middle {
|
|
||||||
flex: 1;
|
|
||||||
box-sizing: border-box;
|
|
||||||
padding-left: 20rpx;
|
|
||||||
|
|
||||||
.middle-main {
|
|
||||||
font-size: 32rpx;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #2e2f31;
|
|
||||||
}
|
|
||||||
|
|
||||||
.middle-sub {
|
|
||||||
margin-top: 12rpx;
|
|
||||||
font-size: 28rpx;
|
|
||||||
font-weight: 400;
|
|
||||||
color: #616367;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.msg-date {
|
|
||||||
font-size: 24rpx;
|
|
||||||
font-weight: 400;
|
|
||||||
color: #9da2ab;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,196 +0,0 @@
|
|||||||
<template>
|
|
||||||
<view class="app-container">
|
|
||||||
<u-navbar title="消息列表" :autoBack="true" :placeholder="true" leftIcon="">
|
|
||||||
<view slot="right" @click="onAllclear">
|
|
||||||
<text class="nav-right">全部清空</text>
|
|
||||||
</view>
|
|
||||||
</u-navbar>
|
|
||||||
<u-search
|
|
||||||
height="75rpx"
|
|
||||||
placeholder="搜索关键词"
|
|
||||||
v-model="queryParams.title"
|
|
||||||
shape="square"
|
|
||||||
:showAction="false"
|
|
||||||
:clearabled="true"
|
|
||||||
class="view-global"
|
|
||||||
bgColor="#fff"
|
|
||||||
@search="onSearch"
|
|
||||||
@clear="onClear"
|
|
||||||
></u-search>
|
|
||||||
<view class="msg-list">
|
|
||||||
<view
|
|
||||||
class="msg-item view-global"
|
|
||||||
v-for="(item, index) in listMsgs"
|
|
||||||
:key="index"
|
|
||||||
>
|
|
||||||
<view class="msg-icon" style="background-color: #367bef">
|
|
||||||
<!-- value="9" -->
|
|
||||||
<u-badge
|
|
||||||
bgColor="#FE3434"
|
|
||||||
max="99"
|
|
||||||
|
|
||||||
:absolute="true"
|
|
||||||
:offset="[0, 0]"
|
|
||||||
></u-badge>
|
|
||||||
<image src="/static/images/msg3.png" mode="aspectFill"></image>
|
|
||||||
</view>
|
|
||||||
|
|
||||||
<view class="msg-middle">
|
|
||||||
<view class="middle-main">{{ item.title }}</view>
|
|
||||||
<view class="middle-sub">{{ item.content }}</view>
|
|
||||||
</view>
|
|
||||||
<view class="msg-date">{{ item.createTime }}</view>
|
|
||||||
</view>
|
|
||||||
<!-- <view class="msg-item view-global">
|
|
||||||
<view class="msg-icon" style="background-color: #32b78b">
|
|
||||||
<u-badge
|
|
||||||
bgColor="#FE3434"
|
|
||||||
max="99"
|
|
||||||
value="99"
|
|
||||||
:absolute="true"
|
|
||||||
:offset="[0, 0]"
|
|
||||||
></u-badge>
|
|
||||||
<image src="/static/images/msg2.png" mode="aspectFill"></image>
|
|
||||||
</view>
|
|
||||||
<view class="msg-middle">
|
|
||||||
<view class="middle-main">消息通知</view>
|
|
||||||
<view class="middle-sub">这是一条普通的消息详情</view>
|
|
||||||
</view>
|
|
||||||
<view class="msg-date">19:18</view>
|
|
||||||
</view>
|
|
||||||
<view class="msg-item view-global">
|
|
||||||
<view class="msg-icon" style="background-color: #f08941">
|
|
||||||
<u-badge
|
|
||||||
bgColor="#FE3434"
|
|
||||||
max="99"
|
|
||||||
value="0"
|
|
||||||
:absolute="true"
|
|
||||||
:offset="[0, 0]"
|
|
||||||
></u-badge>
|
|
||||||
<image src="/static/images/msg1.png" mode="aspectFill"></image>
|
|
||||||
</view>
|
|
||||||
<view class="msg-middle">
|
|
||||||
<view class="middle-main">告警消息</view>
|
|
||||||
<view class="middle-sub">这是一条普通的消息详情</view>
|
|
||||||
</view>
|
|
||||||
<view class="msg-date">19:18</view>
|
|
||||||
</view> -->
|
|
||||||
</view>
|
|
||||||
</view>
|
|
||||||
</template>
|
|
||||||
<script>
|
|
||||||
import { listNews, delNews } from "../../api/jn/news";
|
|
||||||
export default {
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
listMsgs: [],
|
|
||||||
// 查询参数
|
|
||||||
queryParams: {
|
|
||||||
pageNum: 1,
|
|
||||||
pageSize: 10,
|
|
||||||
title: "",
|
|
||||||
status: 0
|
|
||||||
},
|
|
||||||
};
|
|
||||||
},
|
|
||||||
onLoad() {
|
|
||||||
|
|
||||||
},
|
|
||||||
onShow() {
|
|
||||||
this.ListMsg();
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
onAllclear() {
|
|
||||||
this.$modal.confirm('确定删除所有消息吗?').then(() => {
|
|
||||||
let ids = [];
|
|
||||||
this.listMsgs.forEach(element => {
|
|
||||||
ids.push(element.id);
|
|
||||||
});
|
|
||||||
if(ids.length == 0) {
|
|
||||||
return;
|
|
||||||
} else {
|
|
||||||
delNews(ids).then((res) => {
|
|
||||||
console.log(JSON.stringify(res),"删除接口");
|
|
||||||
if(res.code == 200) {
|
|
||||||
this.ListMsg();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
})
|
|
||||||
},
|
|
||||||
onSearch() {
|
|
||||||
this.ListMsg();
|
|
||||||
},
|
|
||||||
onClear() {
|
|
||||||
this.queryParams.title = "";
|
|
||||||
this.ListMsg();
|
|
||||||
},
|
|
||||||
ListMsg() {
|
|
||||||
listNews(this.queryParams).then((res) => {
|
|
||||||
// console.log(res);
|
|
||||||
this.listMsgs = res.rows;
|
|
||||||
if(res.code == 200) {
|
|
||||||
uni.setTabBarBadge({
|
|
||||||
//显示数字
|
|
||||||
index: 1, //tabbar下标
|
|
||||||
text: res.total + '', //数字
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.msg-list {
|
|
||||||
.msg-item {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
background-color: #fff;
|
|
||||||
border-radius: 16rpx;
|
|
||||||
margin-top: 30rpx;
|
|
||||||
box-sizing: border-box;
|
|
||||||
padding: 20rpx;
|
|
||||||
|
|
||||||
.msg-icon {
|
|
||||||
position: relative;
|
|
||||||
height: 94rpx;
|
|
||||||
width: 94rpx;
|
|
||||||
border-radius: 50%;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
|
|
||||||
image {
|
|
||||||
height: 44rpx;
|
|
||||||
width: 44rpx;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.msg-middle {
|
|
||||||
flex: 1;
|
|
||||||
box-sizing: border-box;
|
|
||||||
padding-left: 20rpx;
|
|
||||||
|
|
||||||
.middle-main {
|
|
||||||
font-size: 32rpx;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #2e2f31;
|
|
||||||
}
|
|
||||||
|
|
||||||
.middle-sub {
|
|
||||||
margin-top: 12rpx;
|
|
||||||
font-size: 28rpx;
|
|
||||||
font-weight: 400;
|
|
||||||
color: #616367;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.msg-date {
|
|
||||||
font-size: 24rpx;
|
|
||||||
font-weight: 400;
|
|
||||||
color: #9da2ab;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,88 +0,0 @@
|
|||||||
<template>
|
|
||||||
<view class="content">
|
|
||||||
<view class="param">{{ param }}</view>
|
|
||||||
</view>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import { getToken, setToken, removeToken } from "@/utils/auth";
|
|
||||||
import { getSqByaccesstoken, getUserinfo } from "@/api/jn/login.js";
|
|
||||||
export default {
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
style: {
|
|
||||||
"padding-top": 0,
|
|
||||||
},
|
|
||||||
statusBarHeight: 0,
|
|
||||||
isApp: true,
|
|
||||||
webview: null,
|
|
||||||
param: "",
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
created() {},
|
|
||||||
mounted() {},
|
|
||||||
onLoad(options) {
|
|
||||||
let _this = this;
|
|
||||||
// #ifdef APP-PLUS
|
|
||||||
let curwebview = this.$mp.page.$getAppWebview();
|
|
||||||
this.webview = plus.webview.open(
|
|
||||||
"https://t-jn-development-manager.jsszkd.com/login?clientId=641775453324",
|
|
||||||
""
|
|
||||||
);
|
|
||||||
curwebview.append(this.webview);
|
|
||||||
this.webview.show();
|
|
||||||
this.webview.overrideUrlLoading({ mode: "reject" }, (e) => {
|
|
||||||
//根据参数的不同,做不同的操作!url中,把双引号用别的字符串替换.就OK了.再替换回来可以转json
|
|
||||||
console.warn("参数为:" + e.url);
|
|
||||||
// http://39.101.188.84:9999/demo/JiangNingUmale-App/#/?code=ckyb2r&clientId=641775453324&token=pygHmfvDNt4YxbucxXiIm0dN8d0IuLmd
|
|
||||||
|
|
||||||
// 获取当前页面的 URL
|
|
||||||
var url = e.url;
|
|
||||||
console.warn("1:" + url);
|
|
||||||
// 获取特定参数的值
|
|
||||||
var code = _this.getQueryString("code", url);
|
|
||||||
var clientId = _this.getQueryString("clientId", url);
|
|
||||||
var token = _this.getQueryString("token", url);
|
|
||||||
console.warn("code:" + _this.getQueryString("code", url));
|
|
||||||
console.warn("clientId:" + _this.getQueryString("clientId", url));
|
|
||||||
console.warn("token:" + _this.getQueryString("token", url));
|
|
||||||
if (token) {
|
|
||||||
uni.setStorageSync("token", token);
|
|
||||||
getSqByaccesstoken({ code: code,}).then((res) => {
|
|
||||||
// console.log("获取accessToken");
|
|
||||||
uni.setStorageSync("accessToken", res.data.accessToken);
|
|
||||||
return getUserinfo({accessToken: res.data.accessToken});
|
|
||||||
}).then((el) => {
|
|
||||||
this.$tab.switchTab("/pages/index");
|
|
||||||
uni.setStorageSync("userInfo", el.data);
|
|
||||||
setToken(el.data.token);
|
|
||||||
// location.reload();
|
|
||||||
console.log("用户信息", el);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
// #endif
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
getQueryString(name, url) {
|
|
||||||
let reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
|
|
||||||
const lastIndex = url.lastIndexOf("/");
|
|
||||||
const result = url.substring(lastIndex + 1);
|
|
||||||
const newUrl = result.replace(/\?/g, "&");
|
|
||||||
let r = newUrl.match(reg);
|
|
||||||
// console.log(r);
|
|
||||||
if (r != null) {
|
|
||||||
return decodeURIComponent(r[2]);
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="less">
|
|
||||||
.content {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -0,0 +1,183 @@
|
|||||||
|
<template>
|
||||||
|
<view class="work-container">
|
||||||
|
<!-- 轮播图 -->
|
||||||
|
<uni-swiper-dot class="uni-swiper-dot-box" :info="data" :current="current" field="content">
|
||||||
|
<swiper class="swiper-box" :current="swiperDotIndex" @change="changeSwiper">
|
||||||
|
<swiper-item v-for="(item, index) in data" :key="index">
|
||||||
|
<view class="swiper-item" @click="clickBannerItem(item)">
|
||||||
|
<image :src="item.image" mode="aspectFill" :draggable="false" />
|
||||||
|
</view>
|
||||||
|
</swiper-item>
|
||||||
|
</swiper>
|
||||||
|
</uni-swiper-dot>
|
||||||
|
|
||||||
|
<!-- 宫格组件 -->
|
||||||
|
<uni-section title="系统管理" type="line"></uni-section>
|
||||||
|
<view class="grid-body">
|
||||||
|
<uni-grid :column="4" :showBorder="false" @change="changeGrid">
|
||||||
|
<uni-grid-item>
|
||||||
|
<view class="grid-item-box">
|
||||||
|
<uni-icons type="person-filled" size="30"></uni-icons>
|
||||||
|
<text class="text">用户管理</text>
|
||||||
|
</view>
|
||||||
|
</uni-grid-item>
|
||||||
|
<uni-grid-item>
|
||||||
|
<view class="grid-item-box">
|
||||||
|
<uni-icons type="staff-filled" size="30"></uni-icons>
|
||||||
|
<text class="text">角色管理</text>
|
||||||
|
</view>
|
||||||
|
</uni-grid-item>
|
||||||
|
<uni-grid-item>
|
||||||
|
<view class="grid-item-box">
|
||||||
|
<uni-icons type="color" size="30"></uni-icons>
|
||||||
|
<text class="text">菜单管理</text>
|
||||||
|
</view>
|
||||||
|
</uni-grid-item>
|
||||||
|
<uni-grid-item>
|
||||||
|
<view class="grid-item-box">
|
||||||
|
<uni-icons type="settings-filled" size="30"></uni-icons>
|
||||||
|
<text class="text">部门管理</text>
|
||||||
|
</view>
|
||||||
|
</uni-grid-item>
|
||||||
|
<uni-grid-item>
|
||||||
|
<view class="grid-item-box">
|
||||||
|
<uni-icons type="heart-filled" size="30"></uni-icons>
|
||||||
|
<text class="text">岗位管理</text>
|
||||||
|
</view>
|
||||||
|
</uni-grid-item>
|
||||||
|
<uni-grid-item>
|
||||||
|
<view class="grid-item-box">
|
||||||
|
<uni-icons type="bars" size="30"></uni-icons>
|
||||||
|
<text class="text">字典管理</text>
|
||||||
|
</view>
|
||||||
|
</uni-grid-item>
|
||||||
|
<uni-grid-item>
|
||||||
|
<view class="grid-item-box">
|
||||||
|
<uni-icons type="gear-filled" size="30"></uni-icons>
|
||||||
|
<text class="text">参数设置</text>
|
||||||
|
</view>
|
||||||
|
</uni-grid-item>
|
||||||
|
<uni-grid-item>
|
||||||
|
<view class="grid-item-box">
|
||||||
|
<uni-icons type="chat-filled" size="30"></uni-icons>
|
||||||
|
<text class="text">通知公告</text>
|
||||||
|
</view>
|
||||||
|
</uni-grid-item>
|
||||||
|
<uni-grid-item>
|
||||||
|
<view class="grid-item-box">
|
||||||
|
<uni-icons type="wallet-filled" size="30"></uni-icons>
|
||||||
|
<text class="text">日志管理</text>
|
||||||
|
</view>
|
||||||
|
</uni-grid-item>
|
||||||
|
</uni-grid>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
current: 0,
|
||||||
|
swiperDotIndex: 0,
|
||||||
|
data: [{
|
||||||
|
image: '/static/images/banner/banner01.jpg'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
image: '/static/images/banner/banner02.jpg'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
image: '/static/images/banner/banner03.jpg'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
clickBannerItem(item) {
|
||||||
|
console.info(item)
|
||||||
|
},
|
||||||
|
changeSwiper(e) {
|
||||||
|
this.current = e.detail.current
|
||||||
|
},
|
||||||
|
changeGrid(e) {
|
||||||
|
this.$modal.showToast('模块建设中~')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
/* #ifndef APP-NVUE */
|
||||||
|
page {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
box-sizing: border-box;
|
||||||
|
background-color: #fff;
|
||||||
|
min-height: 100%;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
view {
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* #endif */
|
||||||
|
|
||||||
|
.text {
|
||||||
|
text-align: center;
|
||||||
|
font-size: 26rpx;
|
||||||
|
margin-top: 10rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.grid-item-box {
|
||||||
|
flex: 1;
|
||||||
|
/* #ifndef APP-NVUE */
|
||||||
|
display: flex;
|
||||||
|
/* #endif */
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 15px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.uni-margin-wrap {
|
||||||
|
width: 690rpx;
|
||||||
|
width: 100%;
|
||||||
|
;
|
||||||
|
}
|
||||||
|
|
||||||
|
.swiper {
|
||||||
|
height: 300rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.swiper-box {
|
||||||
|
height: 150px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.swiper-item {
|
||||||
|
/* #ifndef APP-NVUE */
|
||||||
|
display: flex;
|
||||||
|
/* #endif */
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
color: #fff;
|
||||||
|
height: 300rpx;
|
||||||
|
line-height: 300rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 500px) {
|
||||||
|
.uni-swiper-dot-box {
|
||||||
|
width: 400px;
|
||||||
|
/* #ifndef APP-NVUE */
|
||||||
|
margin: 0 auto;
|
||||||
|
/* #endif */
|
||||||
|
margin-top: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.image {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
@ -1,34 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "Feature",
|
|
||||||
"properties": {},
|
|
||||||
"geometry": {
|
|
||||||
"coordinates": [
|
|
||||||
[
|
|
||||||
120.73261373376607,
|
|
||||||
31.25073977461639
|
|
||||||
],
|
|
||||||
[
|
|
||||||
120.74078042393268,
|
|
||||||
31.25402113805667
|
|
||||||
],
|
|
||||||
[
|
|
||||||
120.74372043239208,
|
|
||||||
31.246387719524122
|
|
||||||
],
|
|
||||||
[
|
|
||||||
120.73541763072382,
|
|
||||||
31.244013786751168
|
|
||||||
],
|
|
||||||
[
|
|
||||||
120.73261373376607,
|
|
||||||
31.25073977461639
|
|
||||||
],
|
|
||||||
[
|
|
||||||
120.7328587344706,
|
|
||||||
31.250832864512475
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"type": "LineString"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,34 +0,0 @@
|
|||||||
{
|
|
||||||
"type": "FeatureCollection",
|
|
||||||
"features": [
|
|
||||||
{
|
|
||||||
"type": "Feature",
|
|
||||||
"properties": {},
|
|
||||||
"geometry": {
|
|
||||||
"coordinates": [
|
|
||||||
[
|
|
||||||
120.72749571970576,
|
|
||||||
31.258029375430894
|
|
||||||
],
|
|
||||||
[
|
|
||||||
120.73064263167993,
|
|
||||||
31.253765297491498
|
|
||||||
],
|
|
||||||
[
|
|
||||||
120.73807247779501,
|
|
||||||
31.256410834495384
|
|
||||||
],
|
|
||||||
[
|
|
||||||
120.7349777967234,
|
|
||||||
31.260395743950383
|
|
||||||
],
|
|
||||||
[
|
|
||||||
120.72746960425354,
|
|
||||||
31.258029375430894
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"type": "LineString"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
Before Width: | Height: | Size: 911 B |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 731 B |
Before Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 45 KiB |
Before Width: | Height: | Size: 833 B |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 594 B |
Before Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 5.8 KiB |
Before Width: | Height: | Size: 5.6 KiB |
Before Width: | Height: | Size: 60 KiB |
Before Width: | Height: | Size: 656 B |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 833 B |
Before Width: | Height: | Size: 873 B |
Before Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 4.0 KiB |
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 4.0 KiB |
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 55 KiB |
Before Width: | Height: | Size: 50 KiB |
Before Width: | Height: | Size: 59 KiB |
Before Width: | Height: | Size: 58 KiB |
Before Width: | Height: | Size: 52 KiB |
Before Width: | Height: | Size: 48 KiB |
Before Width: | Height: | Size: 56 KiB |
Before Width: | Height: | Size: 54 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 453 B |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 95 KiB |
Before Width: | Height: | Size: 63 KiB |
Before Width: | Height: | Size: 67 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 9.4 KiB |
Before Width: | Height: | Size: 9.4 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 122 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 6.2 KiB |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 2.4 KiB |