| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326 |
- <template>
- <div class="content" :class="{ 'margin-bottom-80': isMar }" v-if="isShow">
- <div class="title">
- <div class="logo">
- <img :src="'https://kiq.xazhima.com' + info.pic_url" alt="" />
- </div>
- <div class="name">
- {{ info.name }}
- </div>
- </div>
- <view class="enterprise-item-box">
- <view
- v-for="(item, idx) in titleList"
- :key="idx"
- :class="{ active: active === idx }"
- class="enterprise-item-name"
- @click="change(idx)"
- >
- {{ item }}
- </view>
- </view>
- <div class="baseInfo" v-if="active === 0">
- <div class="card-title">{{ model.title }}</div>
- <div class="item-list">
- <div v-for="(item, idx) in model.item" :key="idx" class="term">
- <div class="term-name">{{ item.name }}:</div>
- <div class="term-value-group">
- <p
- v-for="(value, idx) in item.value"
- :key="idx"
- class="term-value-item"
- :class="{ blue: item.name == '电话' }"
- >
- {{ value }}
- </p>
- </div>
- </div>
- </div>
- </div>
- <div v-else-if="active === 1" class="proInfo">
- <div class="products">
- <div class="product" @click="toDetail(1)">
- <div class="img">
- <img src="/static/enterprise/product.jpg" />
- </div>
- <div class="name">硬件销售</div>
- </div>
- <div class="product">
- <div class="img">
- <img src="/static/enterprise/product.jpg" />
- </div>
- <div class="name">硬件销售</div>
- </div>
- <div class="product">
- <div class="img">
- <img src="/static/enterprise/product.jpg" />
- </div>
- <div class="name">硬件销售</div>
- </div>
- </div>
- </div>
- <div style="width: 100%">
- <footer-share
- style="width: 100%"
- :isCollection="true"
- @collectionPages="collectionPage"
- @sharePages="sharePage"
- ></footer-share>
- </div>
- </div>
- </template>
- <script>
- import md5 from "@/common/md5.js";
- export default {
- data() {
- return {
- id: "",
- scrollTop: 0,
- titleList: ["基本信息", "产品信息"],
- active: 0,
- info: {},
- model:{},
- isShow: false,
- };
- },
- onLoad(option) {
- let id = option.id;
- this.getCompanyInfo(id);
- },
- methods: {
- collectionPage() {
- console.log("已收藏");
- },
- sharePage() {
- console.log("分享");
- uni.showShareMenu({
- title: "园区XXX",
- path: "pages/park/park_detail",
- success(res) {
- console.log(res);
- },
- });
- },
- change(idx) {
- this.active = idx;
- },
- toDetail(index) {
- uni.navigateTo({
- url: "/pages/enterprise/product_detail?id=" + index,
- });
- },
- getCompanyInfo(id) {
- let md5Sign = md5(
- "method=" +
- "common" +
- "×tamp=" +
- getApp().globalData.globalTimestamp +
- "&secret=" +
- getApp().globalData.secret
- );
- let url =
- getApp().globalData.shareUrl +
- "api/api.php" +
- "?method=common&source=company&action=info_by_id×tamp=" +
- getApp().globalData.globalTimestamp +
- "&sign=" +
- md5Sign;
- uni.request({
- url: url,
- method: "POST",
- header: {
- "content-type": "application/x-www-form-urlencoded",
- },
- data: { id },
- success: (res) => {
- if (res.data.code === 200) {
- let {
- name,
- pic_url,
- representative,
- found_date,
- capital,
- code,
- industry_name,
- park_name,
- work_address,
- rigiser_address,
- web_url,
- contact,
- } = res.data.data;
- console.log(res.data.data);
- this.info = {
- name,
- pic_url,
- representative,
- found_date,
- capital,
- code,
- industry_name,
- park_name,
- work_address,
- rigiser_address,
- web_url,
- contact,
- };
- this.model = {
- title: this.info.name,
- item: [
- {
- name: "法定代表人",
- value: [this.info.representative],
- },
- {
- name: "成立日期",
- value: [this.info.found_date],
- },
- {
- name: "注册资本",
- value: [this.info.capital],
- },
- {
- name: "统一社会信用代码",
- value: [this.info.code],
- },
- {
- name: "所属行业",
- value: [this.info.industry_name],
- },
- {
- name: "所属园区",
- value: [this.info.park_name],
- },
- {
- name: "经营地址",
- value: [this.info.work_address],
- },
- {
- name: "经营范围",
- value: [
- "一、提供国内、地区和国际定期及不定期航空客、货、邮、行李运输服务;二、提供通用航空服务;三、提供航空器维修服务;四、经营国内外航空公司的代理业务;五、提供航空配餐服务(仅限分支机构经营);六、进行其他航空业务及相关业务,包括为该等业务进行广告宣传;",
- ],
- },
- {
- name: "地址",
- value: [this.info.rigiser_address],
- },
- {
- name: "网址",
- value: [this.info.web_url],
- },
- {
- name: "电话",
- value: [this.info.contact],
- },
- ],
- };
- this.isShow = true;
- }
- },
- fail: () => {
- console.log("连接失败");
- },
- });
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .content {
- padding: 4%;
- font-size: 30rpx;
- .blue {
- color: #02a7f0;
- }
- .title {
- display: flex;
- align-items: center;
- border-radius: 10rpx;
- margin-bottom: 50rpx;
- box-shadow: rgba(0, 0, 0, 0.35) 0rpx 5rpx 15rpx;
- .logo {
- image {
- width: 200rpx;
- height: 100rpx;
- margin: 0 30rpx;
- }
- }
- }
- .baseInfo {
- margin-bottom: 50rpx;
- .card-title {
- padding: 20rpx 20rpx 0rpx 20rpx;
- font-weight: 600;
- }
- .item-list {
- margin-left: 20rpx;
- display: flex;
- flex-direction: column;
- .term {
- display: flex;
- .term-name {
- font-size: 27rpx;
- width: 30%;
- display: flex;
- margin: 20rpx;
- color: #7f7f7f;
- }
- .term-value-group {
- flex: 1;
- display: flex;
- flex-direction: column;
- font-size: 27rpx;
- .term-value-item {
- margin: 20rpx;
- }
- }
- }
- }
- }
- .proInfo {
- font-size: 25rpx;
- .products {
- width: 100%;
- display: flex;
- padding: 4%;
- flex-wrap: wrap;
- .product {
- margin: 2%;
- padding: 2%;
- border-radius: 30rpx;
- box-shadow: rgba(0, 0, 0, 0.35) 0rpx 5rpx 15rpx;
- width: 40%;
- height: 30%;
- display: flex;
- flex-flow: column;
- justify-content: space-between;
- align-items: center;
- img {
- width: 250rpx;
- height: 200rpx;
- }
- }
- }
- }
- .enterprise-item-box {
- display: flex;
- justify-content: space-evenly;
- margin: 0 20rpx;
- margin-top: 10rpx;
- .enterprise-item-name {
- padding-bottom: 10rpx;
- font-size: 27rpx;
- }
- .active {
- font-weight: 600;
- border-bottom: 7rpx solid #02a7f0;
- }
- }
- }
- .margin-bottom-80 {
- margin-bottom: 80rpx;
- }
- </style>
|