first commit
This commit is contained in:
49
pages/corporateInformation/corporateInformation.vue
Normal file
49
pages/corporateInformation/corporateInformation.vue
Normal file
@@ -0,0 +1,49 @@
|
||||
<template>
|
||||
<view class="page padding">
|
||||
<view class="padding bg-white radius list">
|
||||
<view class="flex justify-between">
|
||||
<view class="text-bold">湘西自治州和谐网络科技有限公司</view>
|
||||
<view class="lg text-blue cuIcon-edit over" @click="edit()">编辑</view>
|
||||
</view>
|
||||
<view class="flex margin-top">
|
||||
<view class="text-gray">所属部门:</view>
|
||||
<view>湘西自治州和谐网络科技有限公司</view>
|
||||
</view>
|
||||
<view class="flex margin-top">
|
||||
<view class="text-gray">企业代码:</view>
|
||||
<view>91433126MA4P8WWG20</view>
|
||||
</view>
|
||||
<view class="flex margin-top">
|
||||
<view class="text-gray">联系电话:</view>
|
||||
<view>13974356210</view>
|
||||
</view>
|
||||
<view class="flex margin-top">
|
||||
<view class="text-gray">企业地址:</view>
|
||||
<view>湘西州文学艺术界联合会6楼</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref } from 'vue'
|
||||
const edit = () => {
|
||||
uni.navigateTo({
|
||||
url: '/pages/editcompanInformation/editcompanInformation'
|
||||
})
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.page {
|
||||
min-height: 100vh;
|
||||
background: #EBF2FC;
|
||||
}
|
||||
.list {
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0rpx 2rpx 6rpx 2rpx rgba(0, 0, 0, 0.08);
|
||||
border-left: 5px solid #2667E9;
|
||||
border-radius: 20rpx;
|
||||
padding: 20rpx;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user