123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240 |
- <template>
- <view class="mine-container" :style="{height: `${windowHeight}px`}">
- <!--顶部个人信息栏-->
- <view class="header-section">
- <view class="flex padding justify-between">
- <view class="flex align-center">
- <view v-if="!avatar" class="cu-avatar xl round bg-white">
- <view class="iconfont icon-people text-gray icon"></view>
- </view>
- <image v-if="avatar" @click="handleToAvatar" :src="avatar" class="cu-avatar xl round"
- mode="widthFix">
- </image>
- <view v-if="!userinfo" @click="handleToLogin" class="login-tip">
- 点击登录
- </view>
- <view v-if="userinfo" @click="handleToInfo" class="user-info">
- <view class="u_title">
- {{ userinfo.nickName}}
- </view>
- <view style="font-size: 26rpx;" class="u_title">
- {{ userinfo.phonenumber}}
- </view>
- </view>
- </view>
- <view v-if="userinfo" @click="handleLogout" class="flex align-center">
- <text>退出</text>
- <view class="iconfont icon-right"></view>
- </view>
- <!-- <view v-if="userinfo" @click="setPassWord" class="flex align-center">
- <text>修改密码</text>
- <view class="iconfont icon-right"></view>
- </view> -->
- </view>
- </view>
- <view class="padding pb-0">
- <uni-section v-if="hasPermissions" title="入库单" type="line">
- <view class="flex bg-white ">
- <view v-if="hasPermissions" @click="goEntry('PRO')" class="flex-sub text-center padding-sm">
- <uni-icons color="#007aff" type="person-filled" size="36"></uni-icons><br>
- <text class="font-24">生产入库</text>
- </view>
- <view v-if="hasPermissions" @click="goOrder('PRO')" class="flex-sub text-center padding-sm">
- <uni-icons color="#007aff" type="person-filled" size="36"></uni-icons><br>
- <text class="font-24">入库单</text>
- </view>
- <view v-if="hasPermissions" @click="goEntry('OQC')" class="flex-sub text-center padding-sm">
- <uni-icons color="#007aff" type="calendar-filled" size="36"></uni-icons><br>
- <text class="font-24">品检入库</text>
- </view>
- <view v-if="hasPermissions" @click="goEntry('FTB')" class="flex-sub text-center padding-sm">
- <uni-icons color="#007aff" type="locked-filled" size="36"></uni-icons><br>
- <text class="font-24">翻箱入库</text>
- </view>
-
-
- </view>
-
- </uni-section>
- <view class="margin-top-sm"></view>
- <uni-section v-if="hasPermissions" title="退库单" type="line">
- <view class="flex bg-white ">
- <view v-if="hasPermissions" @click="goEntry('OQCRET')" class="flex-sub text-center padding-sm">
- <uni-icons color="#007aff" type="locked-filled" size="36"></uni-icons><br>
- <text class="font-24">品检退库</text>
- </view>
- <view v-if="hasPermissions" @click="goEntry('FTBRET')" class="flex-sub text-center padding-sm">
- <uni-icons color="#007aff" type="person-filled" size="36"></uni-icons><br>
- <text class="font-24">翻箱退库</text>
- </view>
- <!-- <view @click="settakestock" class="flex-sub text-center padding-sm">
- <uni-icons color="#007aff" type="calendar-filled" size="36"></uni-icons><br>
- <text class="font-12">客诉退库</text>
- </view> -->
- </view>
- </uni-section>
- </view>
- <view class="padding ">
- </view>
- </view>
- </view>
- </template>
- <script>
- import storage from '@/utils/storage'
- export default {
- data() {
- return {
- userinfo: this.$store.state.user.userinfo,
- name: this.$store.state.user.name,
- version: getApp().globalData.config.appInfo.version,
- hasPermissions: false
- }
- },
- computed: {
- avatar() {
- return this.$store.state.user.avatar
- },
- windowHeight() {
- return uni.getSystemInfoSync().windowHeight - 50
- },
- permissions() {
- return this.$store.state.user.permissions
- },
- roles() {
- return this.$store.state.user.roles
- }
- },
- onLoad() {
- if(!this.userinfo||this.userinfo.nickName){
- this.$store.dispatch('GetInfo').then(res=>{
- this.userinfo=this.$store.state.user.userinfo
- this.checkUserPermissions()
- })
- }else{
- this.checkUserPermissions()
- }
-
- },
- onShow() {},
- methods: {
- checkUserPermissions() {
- // console.log(this.permissions,'this.permissions')
- this.hasPermissions = this.permissions.includes('product:whse:info:query')||this.roles.includes('admin');
- // console.log(this.hasPermissions,'hasPermissions')
- },
- goEntry(type) {
- // this.$tab.navigateTo('/pages/finished-product/entry/index?type='+type)
- window.location.href=window.location.origin+'/pages/finished-product/entry/index?type='+type
- },
- goOrder(type) {
- this.$tab.navigateTo('/pages/finished-product/entry/order')
- },
- handleToInfo() {
- this.$tab.navigateTo('/pages/mine/info/index')
- },
- setPassWord() {
- this.$tab.navigateTo('/pages/mine/pwd/index')
- },
- handleToEditInfo(item) {
- this.$tab.navigateTo('/pages/wagesView?id=' + item.id)
- },
- handleToSetting() {
- this.$tab.navigateTo('/pages/mine/setting/index')
- },
- handleToLogin() {
- this.$tab.reLaunch('/pages/login')
- },
- handleToAvatar() {
- this.$tab.navigateTo('/pages/mine/avatar/index')
- },
- handleLogout() {
- this.$modal.confirm('确定注销并退出系统吗?').then(() => {
- this.$store.dispatch('LogOut').then(() => {
- this.$tab.reLaunch('/pages/login')
- })
- })
- },
- handleHelp() {
- this.$tab.navigateTo('/pages/mine/help/index')
- },
- handleAbout() {
- this.$tab.navigateTo('/pages/mine/about/index')
- },
- handleJiaoLiuQun() {
- this.$modal.showToast('QQ群:①133713780、②146013835')
- },
- handleBuilding() {
- this.$modal.showToast('模块建设中~')
- }
- }
- }
- </script>
- <style lang="scss">
- page {
- background-color: #f5f6f7;
- }
- .setbox {
- padding: 30rpx;
- }
- .mine-container {
- width: 100%;
- height: 100%;
- .header-section {
- padding: 15px 15px 45px 15px;
- background: $uni-color-primary;
- color: white;
- .login-tip {
- font-size: 18px;
- margin-left: 10px;
- }
- .cu-avatar {
- border: 2px solid #eaeaea;
- .icon {
- font-size: 40px;
- }
- }
- .user-info {
- margin-left: 15px;
- .u_title {
- font-size: 16px;
- line-height: 30px;
- }
- }
- }
- .content-section {
- position: relative;
- top: -50px;
- .mine-actions {
- margin: 15px 15px;
- padding: 20px 0px;
- border-radius: 8px;
- background-color: white;
- .action-item {
- .icon {
- font-size: 28px;
- }
- .text {
- display: block;
- font-size: 13px;
- margin: 8px 0px;
- }
- }
- }
- }
- }
- </style>
|