| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582 |
- <!--
- * @Title:
- * @Description: 首页
- * @Author: swp
- * @Date: 2022-08-24 10:49:21
- * @LastEditors:
- * @LastEditTime: 2022-08-24 10:49:21
- -->
- <template>
- <view class="container">
- <!-- 导航栏 #3F9EFF-->
- <uni-nav-bar :fixed="true" backgroundColor="#f7f7f7" statusBar="false" height="75px">
- <block slot="left">
- <view class="view-flex-block-center">
- <image src="/static/images/logo_start.png"
- style="width: 100rpx;height: 100rpx;background: lightgray;border-radius: 50%;" mode="widthFix">
- </image>
- </view>
- </block>
- <view class="view-flex-inline">
- <uni-list style="background-color: #f7f7f7;" :border="false">
- <uni-list-item v-if="isLogin" :border="false" style="background-color: #f7f7f7;" showArrow
- :title="userName" :note="userNote" :clickable="true" @click="onUserInfoClick()" />
- <uni-list-item v-else :border="false" style="background-color: #f7f7f7;" showArrow title="登录/注册"
- note="快速登录 注册体验更多功能" :clickable="true" @click="onLoginClick()" />
- </uni-list>
- </view>
- <block slot="right">
- <view style="margin-right:0rpx" @click="onNoticeMoreClick">
- <uni-badge class="uni-badge-left-margin" absolute="rightTop" :is-dot="noticeDot" :text="noticeValue"
- size="small">
- <uni-icons class="input-uni-icon" type="email" size="24" color="#000000" />
- </uni-badge>
- </view>
- <view style="margin-right:10rpx;margin-left: 10px;" @click="onNoticeMoreClick">
- <uni-badge class="uni-badge-left-margin" absolute="rightTop" size="small">
- <uni-icons class="input-uni-icon" type="scan" size="24" color="#000000" />
- </uni-badge>
- </view>
- </block>
- </uni-nav-bar>
- <uni-card title="待办工单" :thumbnail="orderLogo">
- <uni-list v-if="permission.admin || permission.orgAdmin">
- <uni-list-item showArrow title="会议室音响没有声音" note="2024年3月1日 12时10分" rightText="去处理" />
- </uni-list>
- <uni-card v-else title="快捷操作">
- <view class="view-flex-inline">
- <uni-icons class="input-uni-icon" type="phone" size="18" color="coral" />
- <text class="text-under-line" style="color: coral;font-size: 1rem;"
- @click="toShortcutCreateOrder">发起工单</text>
- </view>
- </uni-card>
- </uni-card>
- <uni-card title="巡检保养任务" :thumbnail="checkLogo">
- <uni-list>
- <uni-list-item showArrow title="1-10号门禁查看" note="2024年3月1日 12时10分" :clickable="true" rightText="去处理" />
- </uni-list>
- </uni-card>
- <uni-card :isFull="true">
- <swiper style="height: 200px;" circular :indicator-dots="false" :autoplay="true" :interval="2000"
- :duration="500">
- <swiper-item style="height: 200px;line-height: 300rpx;">
- <view style="background-color: lavenderblush;">A</view>
- </swiper-item>
- <swiper-item style="height: 200px;line-height: 300rpx;">
- <view style="background-color: darkcyan;">B</view>
- </swiper-item>
- <swiper-item style="height: 200px;line-height: 300rpx;">
- <view style="background-color: darkgoldenrod;">C</view>
- </swiper-item>
- </swiper>
- </uni-card>
- </view>
- </template>
- <script>
- import
- navBtns
- from "@/api/home.js";
- import {
- role
- } from "@/api/role.js";
- import {
- oss
- } from '@/common/setting';
- import http from '@/http/api.js';
- export default {
- components: {},
- data() {
- return {
- title: '泰山电教维护服务',
- permission: {
- 'admin': false,
- 'orgAdmin': false,
- 'companyAdmin': false,
- 'companyServciePerson': false,
- 'yjServicePerson': false,
- },
- userLoginStatus: 0,
- userName: 'guest',
- userNote: '泰山云服务已服务您180天',
- postName: '',
- currentRole: '',
- current: 0,
- navButton: [],
- navButtonIndex: [],
- //more/loading/noMore
- loadMoreStatus: "noMore",
- timer: false,
- pageSize: 10,
- pageCurrent: 1,
- total: 0,
- noticeDot: false,
- noticeValue: 0,
- todoOrderCount: 0,
- todoOrderList: [],
- costsApproveOrderCount: 0,
- costsApproveOrderList: [],
- closeApproveOrderCount: 0,
- closeApproveOrderList: [],
- orderLogo: "/static/images/logo_pc.png",
- checkLogo: "/static/images/home/inspection.png",
- };
- },
- computed: {},
- onLoad() {
- //console.log(JSON.stringify(this.userInfo))
- this.permission.admin = false;
- this.permission.orgAdmin = false;
- this.permission.companyAdmin = false;
- this.permission.companyServciePerson = false;
- this.permission.yjServicePerson = false;
- this.navButton = navBtns.navButtons;
- if (this.userInfo.role_name === role.admin) {
- this.permission.admin = true;
- this.navButtonIndex = navBtns.sysAdminNavButton;
- this.currentRole = role.admin;
- } else if (this.userInfo.role_name === role.orgAdmin) {
- this.permission.orgAdmin = true;
- this.currentRole = role.orgAdmin;
- this.navButtonIndex = navBtns.orgAdminNavButton;
- } else if (this.userInfo.role_name === role.companyAdmin) {
- this.permission.companyAdmin = true;
- this.currentRole = role.companyAdmin;
- this.navButtonIndex = navBtns.companyAdminNavButton;
- } else if (this.userInfo.role_name === role.companyServciePerson) {
- this.permission.companyServciePerson = true;
- this.currentRole = role.companyServciePerson;
- this.navButtonIndex = navBtns.companyServicePersonNavButton;
- if (this.userInfo.post_id == '1706859505948098562') {
- this.postName = "engineer";
- } else if (this.userInfo.post_id == '1730535542909140993') {
- this.postName = "servicePerson";
- }
- }
- // if (this.$u.func.checkLogin()) {
- // console.log("timer start +++++++ ")
- // this.timer = true;
- // setTimeout(this.timeCall, 10);
- // }
- },
- onUnload() {
- //this.timer = false;
- },
- onReady() {
- // if (this.$u.func.checkLogin()) {} else {
- // this.$u.func.logout();
- // }
- },
- onShow() {
- // if (this.$u.func.checkLogin()) {
- // if (this.userInfo.role_name !== this.currentRole) {
- // this.permission.admin = false;
- // this.permission.orgAdmin = false;
- // this.permission.companyAdmin = false;
- // this.permission.companyServciePerson = false;
- // this.permission.yjServicePerson = false;
- // this.navButton = navBtns.navButtons;
- // if (this.userInfo.role_name === role.admin) {
- // this.permission.admin = true;
- // this.navButtonIndex = navBtns.sysAdminNavButton;
- // this.currentRole = role.admin;
- // } else if (this.userInfo.role_name === role.orgAdmin) {
- // this.permission.orgAdmin = true;
- // this.currentRole = role.orgAdmin;
- // this.navButtonIndex = navBtns.orgAdminNavButton;
- // } else if (this.userInfo.role_name === role.companyAdmin) {
- // this.permission.companyAdmin = true;
- // this.currentRole = role.companyAdmin;
- // this.navButtonIndex = navBtns.companyAdminNavButton;
- // } else if (this.userInfo.role_name === role.companyServciePerson) {
- // this.permission.companyServciePerson = true;
- // this.currentRole = role.companyServciePerson;
- // this.navButtonIndex = navBtns.companyServicePersonNavButton;
- // if (this.userInfo.post_id == '1706859505948098562') {
- // this.postName = "engineer";
- // } else if (this.userInfo.post_id == '1730535542909140993') {
- // this.postName = "servicePerson";
- // }
- // }
- // }
- // if (this.timer == false) {
- // this.timer = true;
- // setTimeout(this.timeCall, 10);
- // }
- // } else {
- // this.$u.func.logout();
- // }
- },
- onHide() {
- //this.timer = false;
- },
- methods: {
- toOss(path) {
- return oss + path;
- },
- onLoginClick() {
- console.log("onLoginClick")
- var url = '/pages/login/login-account';
- uni.navigateTo({
- url: url
- })
- },
- onUserInfoClick() {
- console.log("onUserInfoClick")
- var url = '/pages/user/center-simple';
- uni.navigateTo({
- url: url
- })
- },
- timeCall() {
- if (this.timer == true) {
- this.getHomeInfo();
- setTimeout(this.timeCall, 10000);
- }
- },
- toDo(item) {
- var url = '/pages/check-order/orderconfirm?orderType=' + item.orderType + '&orderId=' + item.id;
- uni.navigateTo({
- url: url
- })
- },
- toOrderProcess(item) {
- var url = '/pages/check-order/orderprocessreport?skipPage=1&costsApprove=2&orderType=' + item.orderType +
- '&orderProcessId=' + item
- .orderProcessId + '&orderId=' + item.id;
- uni.navigateTo({
- url: url
- })
- },
- toOrderCostsApprove(item) {
- var url = '/pages/check-order/ordercostsapprove?orderType=' + item.orderType + '&orderId=' + item.id;
- uni.navigateTo({
- url: url
- })
- },
- toOrderCloseApprove(item) {
- console.log("toOrderCloseApprove")
- var url = '/pages/check-order/ordercloseapprove?orderType=' + item.orderType + '&orderId=' + item.id;
- uni.navigateTo({
- url: url
- })
- },
- toShortcutCreateOrder() {
- let url = '/pages/check-order/orderadd';
- uni.navigateTo({
- url: url
- })
- },
- onNoticeMoreClick() {
- uni.navigateTo({
- url: '/pages/news/noticelist'
- })
- },
- getHomeInfo() {
- this.getTodoOrderList();
- this.getTodoCostsApproveOrderList();
- this.getTodoCloseOrderList();
- },
- getTodoOrderList() {
- let that = this;
- let postData = {};
- http.request({
- url: '/galaxy-business/order/todo/list',
- method: 'GET',
- data: postData,
- }).then(res => {
- that.todoOrderCount = 0;
- if (res.data != null) {
- that.todoOrderCount = res.data.length;
- that.todoOrderList = res.data;
- }
- }).catch(err => {
- console.log(JOSN.stringify(err))
- })
- },
- getTodoCostsApproveOrderList() {
- let that = this;
- let postData = {};
- http.request({
- url: '/galaxy-business/order/todo/costsapprove/list',
- method: 'GET',
- data: postData,
- }).then(res => {
- that.costsApproveOrderCount = 0;
- if (res.data != null) {
- that.costsApproveOrderCount = res.data.length;
- that.costsApproveOrderList = res.data;
- }
- }).catch(err => {
- console.log(JOSN.stringify(err))
- })
- },
- getTodoCloseOrderList() {
- let that = this;
- let postData = {};
- http.request({
- url: '/galaxy-business/order/todo/closeapprove/list',
- method: 'GET',
- data: postData,
- }).then(res => {
- that.closeApproveOrderCount = 0;
- if (res.data != null) {
- that.closeApproveOrderCount = res.data.length;
- that.closeApproveOrderList = res.data;
- }
- }).catch(err => {
- console.log(JOSN.stringify(err))
- })
- },
- }
- };
- </script>
- <style lang="scss" scoped>
- $nav-height: 75px;
- .user-box {
- display: flex;
- justify-content: space-between;
- padding: 0 20rpx 0 64rpx;
- margin-top: 36rpx;
- .left {
- display: flex;
- flex-direction: column;
- align-items: center;
- .avatar {
- width: 128rpx;
- height: 128rpx;
- background: #ffffff;
- border-radius: 50%;
- }
- .user-name {
- margin-top: 20rpx;
- font-size: 36rpx;
- font-family: Source Han Sans CN;
- font-weight: 500;
- color: #ffffff;
- }
- .tag {
- margin-top: 20rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 5rpx 16rpx;
- border: 1px solid #f5f5f5;
- border-radius: 7rpx;
- font-size: 19rpx;
- font-family: Source Han Sans CN;
- font-weight: 300;
- color: #ffffff;
- }
- }
- .edit-btn {
- margin-top: 20rpx;
- margin-bottom: 10px;
- flex-shrink: 0;
- display: flex;
- justify-content: center;
- align-items: center;
- width: 165rpx;
- height: 54rpx;
- border: 2rpx solid #f5f5f5;
- border-radius: 11rpx;
- font-size: 27rpx;
- font-family: Source Han Sans CN;
- font-weight: 400;
- color: #ffffff;
- }
- }
- .decoration {
- width: 6px;
- height: 6px;
- margin-right: 4px;
- border-radius: 50%;
- background-color: cadetblue;
- }
- .input-uni-icon {
- line-height: $nav-height;
- }
- .item-block {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- width: 100%;
- }
- .line {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- width: 100%;
- }
- .line .block {
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .line-end {
- display: flex;
- flex-direction: row;
- justify-content: flex-end;
- width: 100%;
- }
- .line-end .block {
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .line-center {
- display: flex;
- flex-direction: row;
- justify-content: center;
- width: 100%;
- height: 100%;
- }
- .line-center .block {
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .rtu-name {
- margin-left: 5rpx;
- font-size: 0.7rem;
- font-weight: bold;
- }
- .rtu-code {
- margin-left: 5rpx;
- font-size: 0.6rem;
- color: gray;
- }
- .item-text-line {
- width: 100%;
- display: flex;
- flex-direction: row;
- align-items: flex-start;
- padding-left: 0px;
- padding-right: 0px;
- .block {
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .item-title {
- font-size: 0.7rem;
- }
- .item-text {
- padding-left: 2px;
- padding-right: 5px;
- font-size: 0.7rem;
- }
- .item-text-ell {
- width: 100%;
- overflow: hidden;
- font-size: 0.7rem;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .item-number {
- font-size: 0.7rem;
- margin-left: 2px;
- margin-right: 5px;
- }
- }
- .item-title-image {
- /* #ifndef APP-NVUE */
- display: block;
- /* #endif */
- margin-right: 5px;
- width: 20px;
- height: 20px;
- border-radius: 50%;
- }
- .uni-badge-left-margin {
- margin-left: 0px;
- }
- .logo {
- flex-shrink: 0;
- width: 80rpx;
- height: auto;
- }
- .container {
- // background-color: #f7f7f7;
- // min-height: 100vh;
- overflow: hidden;
- padding: 0 0 75rpx;
- }
- .nav {
- margin: 0rpx 0;
- box-sizing: border-box;
- padding: 0 10rpx;
- &-item {
- width: 100%;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- height: 130rpx;
- &-img {
- width: 80rpx;
- height: 80rpx;
- }
- &-name {
- font-size: 0.7rem;
- font-family: PingFang SC;
- font-weight: 500;
- color: #585b61;
- }
- }
- }
- </style>
|