38 lines
1.0 KiB
Vue
38 lines
1.0 KiB
Vue
<template>
|
||
<view class="index-content-other" :style="isShow?{opacity: `1`}:{opacity: `0`}">
|
||
<view class="right-container-title-nav">
|
||
<text style="margin-left: 30rpx;">
|
||
NUID:{{ uni.getStorageSync('nuId')}}
|
||
</text>
|
||
<text class="new-weight">
|
||
{{ uni.getStorageSync('nuName')}}
|
||
</text>
|
||
<view class="right-icons">
|
||
<image class="right-icons-img" src="/static/index/requestform/touxiang.png" />
|
||
<view>{{name}}</view>
|
||
<image class="right-icons-img-back" src="/static/index/requestform/back.png" />
|
||
<view>返回</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
import { ref, onMounted, onBeforeUnmount, computed, nextTick, defineProps, watch, reactive } from 'vue';
|
||
import { onShow, onLoad, onHide, onPageScroll } from "@dcloudio/uni-app"
|
||
import { queryCgdList } from '@/pages/Warehouse/api/lunpan.js'
|
||
const transition = ref(false);
|
||
const props = defineProps({
|
||
isShow: {
|
||
type: Boolean,
|
||
required: true,
|
||
},
|
||
});
|
||
|
||
</script>
|
||
|
||
<style scoped lang="scss">
|
||
@import "./css/take.less";
|
||
|
||
</style>
|