123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <template>
- <view>
- <view class="content">
- <view class="title">
- <view class="icon">
- <image src="./icon/title_icon.png" mode=""></image>
- </view>
- <view class="text">国家能源集团宁东运营部</view>
- </view>
- <view class="box">
- <view class="item" @click="go_communication_origanization()">
- <view class="icon">
- <image src="./icon/jiagou.png" mode=""></image>
- </view>
- <view class="text">组织架构</view>
- </view>
- <view class="item" @click="go_my_department()">
- <view class="icon">
- <image src="./icon/bumen.png" mode=""></image>
- </view>
- <view class="text">我的部门</view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- name:"t-o-ningdongyunying",
- data() {
- return {
- list:[]
- };
- },
- created() {
- this.get_worksheet_classify_list()
- },
- methods:{
- // 获取分类
- get_worksheet_classify_list(){
- this.$api.worksheet_classify_list({
-
- }).then((res)=>{
- console.log(res.data.data)
- this.list = res.data.data
- })
- },
- // 工单列表
- go_business(id,title){
- uni.navigateTo({
- url:"../../workbench/business_classfication/business_classfication?id="+id+"&title="+title
- })
- },
- go_communication_origanization(){
- uni.navigateTo({
- url:"../../origanization/communication/origanization/origanization"
- })
- },
- go_my_department(){
- uni.navigateTo({
- url:"../../origanization/communication/origanization/my_department/my_department"
- })
- }
- }
- }
- </script>
- <style lang="scss">
-
- .content{
- background-color: #FFFFFF;
- .title{
- height: 110rpx;
- display: flex;
- align-items: center;
-
- box-sizing: border-box;
- padding: 0 36rpx;
- border-bottom: 1rpx solid #F3F8F7;
- .icon{
- display: flex;
- align-items: center;
- image{
- width: 48rpx;
- height: 36rpx;
- }
- }
- .text{
- margin-left: 20rpx;
- font-size: 38rpx;
- font-weight: 700;
- }
- }
- .box{
- box-sizing: border-box;
- padding: 0 50rpx;
- .item{
- height: 110rpx;
-
- display: flex;
- align-items: center;
-
- border-bottom: 1rpx solid #F3F8F7;
-
- .icon{
- image{
- width: 36rpx;
- height: 36rpx;
- }
- }
- .text{
- margin-left: 20rpx;
- font-size: 32rpx;
- }
- }
- }
- }
- </style>
|