first commit

This commit is contained in:
2025-12-29 14:59:44 +08:00
commit 10c3fbb0d7
5315 changed files with 795443 additions and 0 deletions

View 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>