|
@@ -26,21 +26,14 @@
|
|
|
<!-- 业务面 -->
|
|
|
<div class="pbn-box">
|
|
|
<div class="scroll-box">
|
|
|
- <div
|
|
|
- class="pbn__item"
|
|
|
- v-for="(item, idx) in renderList"
|
|
|
- :key="idx"
|
|
|
- @click="handleGoApplyOfState(item)"
|
|
|
- >
|
|
|
+ <div class="pbn__item" v-for="(item, idx) in renderList" :key="idx" @click="handleGoApplyOfState(item)">
|
|
|
<div class="pbn__item__pic">
|
|
|
<img :src="item.pic" :alt="item.tit">
|
|
|
</div>
|
|
|
<div class="pbn__item__tit">{{ item.tit }}</div>
|
|
|
<div class="pbn__item__ignore">
|
|
|
<div class="pbn__item__msg" v-show="item.msgNum >= 1"><span>待处理{{ item.msgNum }}条</span></div>
|
|
|
- <div class="pbn__item__icon-arrow-right">
|
|
|
- <van-icon name="arrow" size="18" color="#C2C2C2" />
|
|
|
- </div>
|
|
|
+ <van-icon name="arrow" size="18" color="#C2C2C2" />
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -50,7 +43,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { getUserApproveCount } from '@/api/member'
|
|
|
+import { getUserApproveCount } from '@/api/approve'
|
|
|
|
|
|
import { mapState, mapGetters } from 'vuex'
|
|
|
|
|
@@ -67,7 +60,7 @@ export default {
|
|
|
departments: 'getDepartments'
|
|
|
})
|
|
|
},
|
|
|
- data () {
|
|
|
+ data() {
|
|
|
return {
|
|
|
renderList: [],
|
|
|
list: [
|
|
@@ -118,19 +111,19 @@ export default {
|
|
|
]
|
|
|
}
|
|
|
},
|
|
|
- async created () {
|
|
|
+ async created() {
|
|
|
// NOTE: 进入当前页面更新用户信息
|
|
|
await this.$store.dispatch('user/getUserInfo')
|
|
|
this.__init__()
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
- __init__ () {
|
|
|
+ __init__() {
|
|
|
this.get_approve_count()
|
|
|
},
|
|
|
|
|
|
// NOTE: 获取待处理信息
|
|
|
- async get_approve_count () {
|
|
|
+ async get_approve_count() {
|
|
|
try {
|
|
|
const result = await getUserApproveCount()
|
|
|
if (result.code === 1) {
|
|
@@ -143,13 +136,13 @@ export default {
|
|
|
tit: item.module_text
|
|
|
}))
|
|
|
}
|
|
|
- } catch(e) {
|
|
|
+ } catch (e) {
|
|
|
console.log('get_approve_count error>', e);
|
|
|
}
|
|
|
},
|
|
|
|
|
|
// NOTE: 跳转申请状态列表
|
|
|
- handleGoApplyOfState (row) {
|
|
|
+ handleGoApplyOfState(row) {
|
|
|
this.$router.push({
|
|
|
name: 'ApplyState',
|
|
|
query: {
|
|
@@ -160,7 +153,7 @@ export default {
|
|
|
handleGoSetting() {
|
|
|
this.handleGoUserInfo()
|
|
|
},
|
|
|
- handleGoUserInfo () {
|
|
|
+ handleGoUserInfo() {
|
|
|
this.$router.push({
|
|
|
name: 'Userinfo'
|
|
|
})
|
|
@@ -180,12 +173,14 @@ export default {
|
|
|
flex-direction: column;
|
|
|
justify-items: auto;
|
|
|
user-select: none;
|
|
|
+
|
|
|
.setting {
|
|
|
text-align: right;
|
|
|
padding: 4px 0;
|
|
|
font-size: @text-secondery-size;
|
|
|
color: rgba(10, 22, 41, 1);
|
|
|
}
|
|
|
+
|
|
|
.info {
|
|
|
display: flex;
|
|
|
flex-direction: row;
|
|
@@ -193,6 +188,7 @@ export default {
|
|
|
padding-bottom: 16px;
|
|
|
border-bottom: 1px solid rgba(151, 151, 151, 0.2);
|
|
|
}
|
|
|
+
|
|
|
.pbn-box {
|
|
|
flex: 1;
|
|
|
height: 100%;
|
|
@@ -209,26 +205,31 @@ export default {
|
|
|
border-radius: 8px;
|
|
|
overflow: hidden;
|
|
|
margin-right: 15px;
|
|
|
+
|
|
|
img {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
&__infobox {
|
|
|
flex: 1;
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
|
align-items: flex-start;
|
|
|
}
|
|
|
+
|
|
|
&__name {
|
|
|
font-size: @text-common-size;
|
|
|
font-weight: 500;
|
|
|
line-height: 22px;
|
|
|
color: rgba(10, 22, 41, 1);
|
|
|
}
|
|
|
+
|
|
|
&__row {
|
|
|
font-size: 24px;
|
|
|
padding-bottom: 4px;
|
|
|
+
|
|
|
span {
|
|
|
display: inline-block;
|
|
|
font-size: 12px;
|
|
@@ -236,19 +237,23 @@ export default {
|
|
|
font-weight: 500;
|
|
|
color: rgba(114, 114, 115, 1);
|
|
|
}
|
|
|
+
|
|
|
&-schoolname {
|
|
|
margin-right: 8px;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
&__tags {
|
|
|
font-size: 10px;
|
|
|
line-height: 16px;
|
|
|
+
|
|
|
.tag {
|
|
|
display: inline-block;
|
|
|
border: 1px solid rgba(172, 172, 172, .8);
|
|
|
border-radius: 4px;
|
|
|
padding: 0 3px;
|
|
|
margin-right: 5px;
|
|
|
+
|
|
|
&:last-child {
|
|
|
margin-right: initial;
|
|
|
}
|
|
@@ -263,17 +268,21 @@ export default {
|
|
|
align-items: center;
|
|
|
border-bottom: 1px solid rgba(151, 151, 151, 0.2);
|
|
|
padding: 10px 0;
|
|
|
+
|
|
|
&:last-child {
|
|
|
border-bottom: initial;
|
|
|
}
|
|
|
+
|
|
|
&__pic {
|
|
|
margin-right: 16px;
|
|
|
+
|
|
|
img {
|
|
|
width: 24px;
|
|
|
height: 24px;
|
|
|
border-radius: 8px;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
&__tit {
|
|
|
flex: 1;
|
|
|
text-align: left;
|
|
@@ -282,14 +291,16 @@ export default {
|
|
|
color: #0A1629;
|
|
|
line-height: 20px;
|
|
|
}
|
|
|
+
|
|
|
&__ignore {
|
|
|
display: flex;
|
|
|
+ align-items: center;
|
|
|
}
|
|
|
+
|
|
|
&__msg {
|
|
|
font-size: 12px;
|
|
|
font-weight: 400;
|
|
|
color: #999999;
|
|
|
- line-height: 18px;
|
|
|
margin-right: 10px;
|
|
|
}
|
|
|
}
|
|
@@ -299,6 +310,7 @@ export default {
|
|
|
.scroll-box {
|
|
|
height: 100%;
|
|
|
overflow: auto;
|
|
|
+
|
|
|
&::-webkit-scrollbar {
|
|
|
display: none;
|
|
|
}
|