index.vue 2.69 KB
<template>
  <view class="about-container">
    <view class="header-section text-center">
      <image style="width: 300rpx;" src="/static/logo201.png" mode="widthFix">
      </image>
      <uni-title type="h2" title="楚江销售系统"></uni-title>
    </view>

    <view class="content-section">
      <view class="menu-list">
        <view class="list-cell">
          <view class="menu-item-box">
            <view>办公地址</view>
            <view class="text-right">安徽省芜湖市鸠江区龙腾路88号</view>
          </view>
        </view>
        <view class="list-cell">
          <view class="menu-item-box">
            <view>官方邮箱</view>
            <view class="text-right">truchum@sina.com</view>
          </view>
        </view>
        <view class="list-cell">
          <view class="menu-item-box">
            <view>传真</view>
            <view class="text-right">0553-5313377</view>
          </view>
        </view>
        <view class="list-cell">
          <view class="menu-item-box">
            <view>综合事务电话</view>
            <view class="text-right">0553-5313232</view>
          </view>
        </view>
        <view class="list-cell">
          <view class="menu-item-box">
            <view>投资调研电话</view>
            <view class="text-right">0553-5315978</view>
          </view>
        </view>
        <view class="list-cell">
          <view class="menu-item-box">
            <view>应聘求职电话</view>
            <view class="text-right">0553-5315055</view>
          </view>
        </view>
        <view class="list-cell list-cell-arrow">
          <view class="menu-item-box">
            <view>公司网站</view>
            <view class="text-right">
              <uni-link href="http://www.ahcjxc.com" :text="url" showUnderLine="false">http://www.ahcjxc.com</uni-link>
            </view>
          </view>
        </view>
      </view>
    </view>

    <view class="copyright">
      <view>Copyright &copy; 2020 楚江ERP</view>
    </view>
  </view>
</template>

<script>
  export default {
    data() {
      return {
        url: getApp().globalData.config.appInfo.site_url,
        version: getApp().globalData.config.appInfo.version
      }
    },
    onShow() {
      const color = getApp().globalData.config.themeColor
      uni.setNavigationBarColor({
        frontColor: '#ffffff',
        backgroundColor: color
      })
    }
  }
</script>

<style lang="scss">
  page {
    background-color: #f8f8f8;
  }

  .copyright {
    margin-top: 50rpx;
    text-align: center;
    line-height: 60rpx;
    color: #999;
  }

  .header-section {
    display: flex;
    padding: 30rpx 0 0;
    flex-direction: column;
    align-items: center;
  }
</style>