diff --git a/rest/project.http b/rest/project.http
index bae2841..eba6bf1 100644
--- a/rest/project.http
+++ b/rest/project.http
@@ -1,5 +1,5 @@
# @tall = {{url}}/tall/v1.0
-@tall = http://www.sxwikionline.com/gateway/tall/v1.0
+@tall = https://www.tall.wiki/gateway/tall/v1.0
@greenvalley = http://www.sxwikionline.com/gateway/greenvalley
@type = content-type: application/json;charset=utf-8
@@ -13,8 +13,8 @@ POST {{tall}}/users/signin
"client": 1,
"type": 3,
"data": {
- "identifier": "song",
- "credential": "999999"
+ "identifier": "whj",
+ "credential": "123456"
}
}
@@ -40,17 +40,12 @@ POST {{tall}}/users/signin
### 根据团队id查看研发团队相关信息
-POST {{greenvalley}}/researchTeam/selectTeam
+POST {{greenvalley}}/user/userSer
{{type}}
Authorization: Bearer {{login.response.body.$.data.token}}
{
"param": {
- "company": "",
- "researchDirection": "",
- "teamId": 0,
- "teamIntroduce": "",
- "teamLeaderName": "",
- "teamName": ""
+
}
}
diff --git a/src/assets/jiagou.png b/src/assets/jiagou.png
new file mode 100644
index 0000000..97fd08b
Binary files /dev/null and b/src/assets/jiagou.png differ
diff --git a/src/assets/zckj01.png b/src/assets/zckj01.png
deleted file mode 100644
index c8268f0..0000000
Binary files a/src/assets/zckj01.png and /dev/null differ
diff --git a/src/assets/zckj02.png b/src/assets/zckj02.png
deleted file mode 100644
index b288452..0000000
Binary files a/src/assets/zckj02.png and /dev/null differ
diff --git a/src/assets/zckj03.png b/src/assets/zckj03.png
deleted file mode 100644
index 08c031a..0000000
Binary files a/src/assets/zckj03.png and /dev/null differ
diff --git a/src/components/Introduce/DeriveEnterprise.vue b/src/components/Introduce/DeriveEnterprise.vue
index b3ecfdb..58177e7 100644
--- a/src/components/Introduce/DeriveEnterprise.vue
+++ b/src/components/Introduce/DeriveEnterprise.vue
@@ -36,6 +36,7 @@
@change="onChange"
show-less-items
v-model="current"
+ v-show="newPartners.length > 6"
/>
diff --git a/src/components/PlatformList/Fruit.vue b/src/components/PlatformList/Fruit.vue
index 8711ba7..f987fa0 100644
--- a/src/components/PlatformList/Fruit.vue
+++ b/src/components/PlatformList/Fruit.vue
@@ -1,24 +1,25 @@
-
-
{{ item.name }}
-
编号:{{ item.identifier }}
+
+
{{ item.name }}
+
编号:{{ item.identifier }}
-
+
diff --git a/src/components/PlatformList/PlatformList.vue b/src/components/PlatformList/PlatformList.vue
index 78de792..ff13122 100644
--- a/src/components/PlatformList/PlatformList.vue
+++ b/src/components/PlatformList/PlatformList.vue
@@ -17,6 +17,7 @@
class="pagination"
show-less-items
show-quick-jumper
+ v-show="total > 8"
/>
diff --git a/src/config/api.js b/src/config/api.js
index fca8b65..5da508d 100644
--- a/src/config/api.js
+++ b/src/config/api.js
@@ -87,6 +87,10 @@ export const SearchCar = params => axios.post(`${service}/SearchCar`, params);
export const serviceApply = params => axios.post(`${service}/serviceApply`, params);
// 加入购物车
export const addCar = params => axios.post(`${service}/addCar`, params);
+export const searchCar = params => axios.post(`${service}/SearchCar`, params);
+
+// 加入购物车后购买
+export const carAndBuy = params => axios.post(`${service}/CarAndBuy`, params);
// 登录人信息
export const getUserSer = params => axios.post(`${user}/userSer`, params);
diff --git a/src/store/modules/home/actions.js b/src/store/modules/home/actions.js
index 0d5a49d..ce6811a 100644
--- a/src/store/modules/home/actions.js
+++ b/src/store/modules/home/actions.js
@@ -125,11 +125,12 @@ const actions = {
*/
async getUserSer({ commit }) {
try {
+ const token = sessionStorage.getItem('anyringToken');
+ if (!token) return;
const params = { param: {} };
const res = await getUserSer(params);
const { code, msg, data } = res.data;
if (code === 200) {
- console.log('setUserSer: ', data);
commit('setUserSer', data);
} else {
message.error(msg || '查询失败');
diff --git a/src/views/About/Children/Organ.vue b/src/views/About/Children/Organ.vue
index 2f83375..4fd1e20 100644
--- a/src/views/About/Children/Organ.vue
+++ b/src/views/About/Children/Organ.vue
@@ -5,7 +5,13 @@
-
+
+
+
+ 公司下设行政事业部、创新事业部、孵化事业部和产业事业部。联系人:小武 电话:0351-5223175
+
+

+
@@ -15,11 +21,11 @@
import Banner from 'components/Banner/Banner.vue';
import HNav from './../components/HNav.vue';
import BreadCrumb from 'components/BreadCrumb/BreadCrumb.vue';
-import RichText from 'components/Introduce/RichText.vue';
+// import RichText from 'components/Introduce/RichText.vue';
export default {
name: 'Introduce',
- components: { Banner, HNav, BreadCrumb, RichText },
+ components: { Banner, HNav, BreadCrumb },
data() {
return {
title: '组织机构',
diff --git a/src/views/Activity/Activity.vue b/src/views/Activity/Activity.vue
index 59e9340..0c019bc 100644
--- a/src/views/Activity/Activity.vue
+++ b/src/views/Activity/Activity.vue
@@ -45,6 +45,7 @@
class="pagination"
show-less-items
show-quick-jumper
+ v-show="total > 5"
/>
diff --git a/src/views/Cart/Cart.vue b/src/views/Cart/Cart.vue
index b26d71d..77a6737 100644
--- a/src/views/Cart/Cart.vue
+++ b/src/views/Cart/Cart.vue
@@ -10,26 +10,21 @@
-
-
+
+
{{ list.title }}
-
+
{{ item.title }}
@@ -37,9 +32,10 @@
-
-
@@ -47,54 +43,28 @@
+
+
diff --git a/src/views/Challenge/Children/Notice.vue b/src/views/Challenge/Children/Notice.vue
index 9405037..db03976 100644
--- a/src/views/Challenge/Children/Notice.vue
+++ b/src/views/Challenge/Children/Notice.vue
@@ -10,18 +10,21 @@
技术领域:
- {{ item.name }}
-
+ class="ins-name"
+ v-for="(item, index) in list"
+ >{{ item.name }}
-
+
{{ item.title }}
{{ item.content }}
时间:{{ item.time }}
@@ -30,12 +33,13 @@
diff --git a/src/views/Challenge/Children/Release.vue b/src/views/Challenge/Children/Release.vue
index 27a4f7a..e2743a6 100644
--- a/src/views/Challenge/Children/Release.vue
+++ b/src/views/Challenge/Children/Release.vue
@@ -10,18 +10,21 @@
技术领域:
- {{ item.name }}
-
+ class="ins-name"
+ v-for="(item, index) in list"
+ >{{ item.name }}
-
+
{{ item.title }}
{{ item.content }}
时间:{{ item.time }}
@@ -31,12 +34,13 @@
diff --git a/src/views/Community/Community.vue b/src/views/Community/Community.vue
index 3e3e3a3..b7568d8 100644
--- a/src/views/Community/Community.vue
+++ b/src/views/Community/Community.vue
@@ -66,6 +66,7 @@
class="pagination"
show-less-items
show-quick-jumper
+ v-show="total > 5"
/>
diff --git a/src/views/IncubationPlatform/Children/Services.vue b/src/views/IncubationPlatform/Children/Services.vue
index ffcc445..4e3e07f 100644
--- a/src/views/IncubationPlatform/Children/Services.vue
+++ b/src/views/IncubationPlatform/Children/Services.vue
@@ -9,15 +9,28 @@
服务流程
您
- 注册、登录 后通过直接申请或加入购物车进行申请服务, 直接申请后在个人中心查看, 加入
- 购物车 后可通过顶部菜单栏的购物车查看。
+ 注册、
+ 登录 后通过直接申请或加入购物车进行申请服务, 直接申请后在个人中心查看, 加入
+ 购物车 后可通过顶部菜单栏的购物车查看。
-
+
{{ item.name }}
-
了解更多→
+
了解更多→
@@ -29,6 +42,7 @@
class="pagination"
show-less-items
show-quick-jumper
+ v-show="total > 8"
/>
diff --git a/src/views/IncubationPlatform/Children/place/EntitySpace.vue b/src/views/IncubationPlatform/Children/place/EntitySpace.vue
index 0870e4e..834c6be 100644
--- a/src/views/IncubationPlatform/Children/place/EntitySpace.vue
+++ b/src/views/IncubationPlatform/Children/place/EntitySpace.vue
@@ -93,11 +93,12 @@
@@ -125,10 +126,28 @@ export default {
],
type: '1',
list: [],
- pageSize: 20,
- total: 20,
+ pageSize: 18,
current: 1,
- lists: ['XX企业', 'XX企业', 'XX企业', 'XX企业', 'XX企业', 'XX企业', 'XX企业', 'XX企业', 'XX企业'],
+ lists: [
+ 'XX企业',
+ 'XX企业',
+ 'XX企业',
+ 'XX企业',
+ 'XX企业',
+ 'XX企业',
+ 'XX企业',
+ 'XX企业',
+ 'XX企业',
+ 'XX企业',
+ 'XX企业',
+ 'XX企业',
+ 'XX企业',
+ 'XX企业',
+ 'XX企业',
+ 'XX企业',
+ 'XX企业',
+ 'XX企业',
+ ],
lists1: ['XX企业', 'XX企业', 'XX企业', 'XX企业', 'XX企业', 'XX企业', 'XX企业', 'XX企业', 'XX企业'],
};
},
diff --git a/src/views/Industry/Children/Serve.vue b/src/views/Industry/Children/Serve.vue
index 6c87f10..14db995 100644
--- a/src/views/Industry/Children/Serve.vue
+++ b/src/views/Industry/Children/Serve.vue
@@ -8,16 +8,30 @@
服务流程
- 您 注册、登录 后通过直接申请或加入购物车进行申请服务, 直接申请后在个人中心查看, 加入
- 购物车 后可通过顶部菜单栏的购物车查看。
+ 您
+ 注册、
+ 登录 后通过直接申请或加入购物车进行申请服务, 直接申请后在个人中心查看, 加入
+ 购物车 后可通过顶部菜单栏的购物车查看。
-
+
{{ item.name }}
{{ item.intro }}
-
了解更多→
+
了解更多→
diff --git a/src/views/Industry/Children/Union.vue b/src/views/Industry/Children/Union.vue
index 2902539..8529933 100644
--- a/src/views/Industry/Children/Union.vue
+++ b/src/views/Industry/Children/Union.vue
@@ -38,22 +38,28 @@
-
+
{{ index + 1 }}
{{ item }}
@@ -76,8 +82,7 @@ export default {
{ name: '产业创新联盟', url: '' },
],
list: [],
- pageSize: 20,
- total: 20,
+ pageSize: 18,
current: 1,
lists: ['XX企业', 'XX企业', 'XX企业', 'XX企业', 'XX企业', 'XX企业', 'XX企业', 'XX企业', 'XX企业'],
};
diff --git a/src/views/ItInformation/ItInformation.vue b/src/views/ItInformation/ItInformation.vue
index 0296d23..92fe255 100644
--- a/src/views/ItInformation/ItInformation.vue
+++ b/src/views/ItInformation/ItInformation.vue
@@ -6,7 +6,7 @@
-
+
{{ monthEnglish[item.time.split('-')[1] - 1] }}.
{{ item.time.split('-')[2] }}
@@ -25,13 +25,14 @@
{{ item.time }}
diff --git a/src/views/NewPlatform/Children/Service.vue b/src/views/NewPlatform/Children/Service.vue
index e7a86d9..fb1dfe0 100644
--- a/src/views/NewPlatform/Children/Service.vue
+++ b/src/views/NewPlatform/Children/Service.vue
@@ -8,16 +8,30 @@
服务流程
- 您 注册、登录 后通过直接申请或加入购物车进行申请服务, 直接申请后在个人中心查看, 加入
- 购物车 后可通过顶部菜单栏的购物车查看。
+ 您
+ 注册、
+ 登录 后通过直接申请或加入购物车进行申请服务, 直接申请后在个人中心查看, 加入
+ 购物车 后可通过顶部菜单栏的购物车查看。
-
+
{{ item.name }}
{{ item.intro }}
-
了解更多→
+
了解更多→
diff --git a/src/views/NewPlatform/Children/components/DeEnt.vue b/src/views/NewPlatform/Children/components/DeEnt.vue
index dafca33..7cddc5b 100644
--- a/src/views/NewPlatform/Children/components/DeEnt.vue
+++ b/src/views/NewPlatform/Children/components/DeEnt.vue
@@ -16,7 +16,9 @@
>
{{ item.name }}
-
{{ item.description }}
+
{{ item.description }}
@@ -54,6 +63,7 @@ export default {
data() {
return {
current: 1,
+ pageSize: 6,
showProfile: false, // 显示公司介绍
};
},
diff --git a/src/views/Policy/components/PolicyList.vue b/src/views/Policy/components/PolicyList.vue
index e884360..f3a1b96 100644
--- a/src/views/Policy/components/PolicyList.vue
+++ b/src/views/Policy/components/PolicyList.vue
@@ -64,6 +64,7 @@
class="pagination"
show-less-items
show-quick-jumper
+ v-show="total > 5"
/>
diff --git a/src/views/User/Login.vue b/src/views/User/Login.vue
index 3a67427..40f8ebf 100644
--- a/src/views/User/Login.vue
+++ b/src/views/User/Login.vue
@@ -3,11 +3,21 @@
-
+
免密登录
-
+
账号登录
@@ -17,28 +27,68 @@
-
-
+
+
-
+
-
![]()
+
获取验证码
-
+
-
-
重新发送 {{ interval }}
-
- 获取验证码
-
+
+
重新发送 {{ interval }}
+
获取验证码
-
+
绿谷
@@ -71,16 +121,31 @@
-
+
-
-
+
+
-
+
绿谷
@@ -182,6 +247,7 @@ export default {
const { identifier, credential, source } = values;
const { type } = this;
const params = { data: { identifier, credential, source }, type, client: SIGN_IN_CLIENTS.h5 };
+ console.log('params: ', params);
await this.signIn(params);
// 没有特殊情况就跳转到首页
const { query } = this.$route;