1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <template>
- <view class="OutermostLayer">
- <view class="Personalinformation">
- <u-cell-group>
- <u-cell
- size="large"
- title="用户名"
- value="李伟"
- ></u-cell>
- <u-cell
- size="large"
- title="手机"
- value="18326607835"
- ></u-cell>
- <u-cell
- size="large"
- title="邮箱"
- value="328319643@qq.com"
- ></u-cell>
- <u-cell
- size="large"
- title="性别"
- value="男"
- ></u-cell>
- <u-cell
- size="large"
- title="地址"
- value="安徽省合肥市"
- ></u-cell>
- <u-cell
- size="large"
- title="部门"
- value="合肥传秀科技技术部"
- ></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 {
-
- };
- },
- methods: {
- editdata(){
- uni.navigateTo({
- url: 'Informationmodification/Informationmodification'
- })
- },
-
-
- }
-
-
- }
- </script>
- <style lang="scss">
- .Personalinformation{
- padding: 30rpx;
- }
- </style>
|