12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <template>
- <view class="OutermostLayer">
- <view class="Personalinformation">
- <u-cell-group>
- <u-cell
- size="large"
- title="用户名"
- :value="getuserInfo.realName"
- ></u-cell>
- <u-cell
- size="large"
- title="手机"
- :value="getuserInfo.mobile"
- ></u-cell>
- <u-cell
- size="large"
- title="邮箱"
- :value="getuserInfo.email"
- ></u-cell>
- <u-cell
- size="large"
- title="性别"
- :value="getuserInfo.gender==0?'男':'女'"
- ></u-cell>
-
-
-
-
-
- <u-cell
- size="large"
- title="部门"
- value="合肥传秀科技技术部"
- ></u-cell>
-
-
-
-
-
- <u-cell
- size="large"
- title="个人信息"
- value="修改"
- isLink
- @click="editdata"
- ></u-cell>
- </u-cell-group>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- getuserInfo:{},
- };
- },
- onLoad() {
- this.getuserInfo = uni.getStorageSync('getuserInfo');
-
-
- },
- methods: {
-
-
-
-
-
-
-
- editdata(){
- uni.navigateTo({
- url: '/pages/my/Personalinformation/Informationmodification/Informationmodification'
- })
- },
- }
- }
- </script>
- <style lang="scss">
- .Personalinformation{
- padding: 30rpx;
- }
- </style>
|