index.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. <template>
  2. <u-navbar :autoBack="false" :placeholder="true" :safeAreaInsetTop="true" :bgColor="proxy.$settingStore.themeColor.color">
  3. <template #left>
  4. <u-icon name="arrow-left" size="20" color="#fff" @click="returnTo('index')"></u-icon>
  5. </template>
  6. <template #center>
  7. <text class="grid-area_center_item_title" style="color: #fff;">我的申请</text>
  8. </template>
  9. </u-navbar>
  10. <oa-scroll
  11. customClass="scroll-height"
  12. :customStyle="{ height: `calc(100vh - (104px + ${proxy.$settingStore.StatusBarHeight} + ${proxy.$settingStore.tabBarHeight}))` }"
  13. :refresherLoad="false"
  14. :refresherEnabled="true"
  15. :refresherEnabledTitle="false"
  16. :refresherDefaultStyle="'none'"
  17. :refresherThreshold="44"
  18. :refresherBackground="'#f5f6f7'"
  19. @refresh="refresh"
  20. >
  21. <template #default>
  22. <view class="home-container">
  23. <!-- 我的宫格 -->
  24. <view class="grid-area bg-white">
  25. <view class="grid-area_center cu-list grid col-4 no-border">
  26. <view class="grid-area_center_item cu-item justify-center align-center" @click="navItemClick(1)">
  27. <text class="grid-area_center_item_num">{{ state.statistics.pendingSum }}</text>
  28. <text class="grid-area_center_item_title">待处理</text>
  29. </view>
  30. <view class="grid-area_center_item cu-item justify-center align-center" @click="navItemClick(2)">
  31. <text class="grid-area_center_item_num">{{ state.statistics.alreadySum }}</text>
  32. <text class="grid-area_center_item_title">已处理</text>
  33. </view>
  34. <view class="grid-area_center_item cu-item justify-center align-center" @click="navItemClick(4)">
  35. <text class="grid-area_center_item_num">{{ state.statistics.myInitiated }}</text>
  36. <text class="grid-area_center_item_title">已发起</text>
  37. </view>
  38. <view class="grid-area_center_item cu-item justify-center align-center" @click="navItemClick(3)">
  39. <text class="grid-area_center_item_num">{{ state.statistics.myReceived }}</text>
  40. <text class="grid-area_center_item_title">我收到的</text>
  41. </view>
  42. </view>
  43. </view>
  44. <!-- 我的宫格 -->
  45. <view class="grid-area bg-white" v-if="state.formList.length > 0">
  46. <view class="grid-area_title">我的</view>
  47. <u-icon class="grid-area_icon" name="arrow-down" color="#000" size="18" @click="splitNum(0,5)" v-if="state.appContent[0].direction == '0' && state.formList.length>5"></u-icon>
  48. <u-icon class="grid-area_icon" name="arrow-up" color="#000" size="18" @click="splitNum(0,5)" v-if="state.appContent[0].direction == '1' && state.formList.length>5"></u-icon>
  49. <view class="grid-area_center cu-list grid col-5 no-border" >
  50. <view class="grid-area_center_item cu-item align-center" v-for="(item, index) in state.appContent[0].array" :key="index" @click="toForm(item.formSign)">
  51. <!-- <image class="grid-area_center_item_image" :src="item.icon"></image> -->
  52. <img :src="item.icon" alt="" style="width: 40px;height: 40px;">
  53. <text class="grid-area_center_item_title" >{{ item.formName }}</text>
  54. </view>
  55. </view>
  56. </view>
  57. <!-- 常用功能宫格 -->
  58. <!-- <view class="grid-area bg-white">
  59. <view class="grid-area_title">人事功能</view>
  60. <view class="grid-area_center cu-list grid col-5 no-border">
  61. <view class="grid-area_center_item cu-item justify-center align-center" @tap="navItemClick(item)" v-for="(item, index) in state.cuIconList" :key="index">
  62. <image class="grid-area_center_item_image" :src="item.meta.icon"></image>
  63. <text class="grid-area_center_item_title">{{ item.meta.aliasTitle ? item.meta.aliasTitle : item.meta.title }}</text>
  64. </view>
  65. </view>
  66. </view> -->
  67. </view>
  68. </template>
  69. </oa-scroll>
  70. <oa-tabbar :tabbarValue="0" :tabbarList="proxy.$constData.oaApprovalTabbar" :isSwitchTab="false"></oa-tabbar>
  71. </template>
  72. <script setup>
  73. /*----------------------------------依赖引入-----------------------------------*/
  74. import { onReady, onLoad, onShow, onNavigationBarButtonTap, onPullDownRefresh, onReachBottom } from "@dcloudio/uni-app";
  75. import { ref, onMounted, inject, shallowRef, reactive, getCurrentInstance, toRefs, nextTick } from "vue";
  76. /*----------------------------------接口引入-----------------------------------*/
  77. import { scan_push, getHomePageData, getFunctionalModuleStatistics, getAppRouters, qrCodeSend, getMobileBanner } from "@/api/index";
  78. import { getOaFormDefinition, getFormCount } from "@/api/oa/approval/index";
  79. /*----------------------------------组件引入-----------------------------------*/
  80. /*----------------------------------store引入-----------------------------------*/
  81. import { useStores } from "@/store/modules/index";
  82. /*----------------------------------公共方法引入-----------------------------------*/
  83. import * as jwx from "@/utils/jssdk.js"; //引入js sdk的封装
  84. import config from "@/config";
  85. import { getToken, setToken, removeToken } from "@/utils/auth";
  86. import { storage, storageSystem } from "@/utils/storage"; // 公共方法引用
  87. /*----------------------------------公共变量-----------------------------------*/
  88. const { proxy } = getCurrentInstance();
  89. const useStore = useStores();
  90. /*----------------------------------变量声明-----------------------------------*/
  91. const state = reactive({
  92. dialogFlag: false,
  93. swiperBool: false,
  94. swiperIndex: 0,
  95. swiperTime: 5000,
  96. swiperList: [],
  97. cuIconList: [],
  98. recentlyUsed: [],
  99. formList:[],
  100. appContent:[
  101. {name:"my",array:[],direction:"0"},//我的app
  102. ],
  103. statistics:{
  104. "pendingSum": 0,
  105. "alreadySum": 0,
  106. "myInitiated": 0,
  107. "myReceived": 0
  108. },//头部统计
  109. });
  110. const { dialogFlag, formList, statistics,appContent } = toRefs(state);
  111. function init(){
  112. getFormList(); //获取表单列表数据
  113. getStatistics();//获取头部统计
  114. }
  115. /**
  116. * @scrollView刷新数据
  117. */
  118. function refresh() {
  119. getAppRoutersData(); //调用路由信息接口
  120. }
  121. /**
  122. * 表单权限列表
  123. */
  124. function getFormList(){
  125. console.log(config.baseUrl)
  126. var prefix = ""
  127. prefix = "https://manager.usky.cn/mobile/static/"
  128. getOaFormDefinition().then((res) => {
  129. state.formList = res.data;
  130. for(let i=0;i<state.formList.length;i++){
  131. state.formList[i].icon = prefix + `images/oa/${state.formList[i].formImage}.png`
  132. console.log(state.formList[i].icon)
  133. }
  134. state.appContent[0].array = state.formList
  135. })
  136. }
  137. function getStatistics(){
  138. getFormCount().then((res)=>{
  139. state.statistics = res.data
  140. })
  141. }
  142. /**
  143. * 返回上级页面
  144. * @param defaultPage 默认页面
  145. */
  146. function returnTo(defaultPage) {
  147. if(getCurrentPages().length > 1){
  148. uni.navigateBack()
  149. }else{
  150. uni.switchTab({
  151. url: `/pages/${defaultPage}`
  152. })
  153. }
  154. }
  155. /**
  156. * 跳转表单模版
  157. */
  158. function toForm(formSign){
  159. console.log(formSign)
  160. if(formSign == "QJD" || formSign == "JBD" || formSign == "SXSQ"){
  161. uni.navigateTo({
  162. url: `/pages/business/oa/approval/formType?formSign=${formSign}`
  163. })
  164. }
  165. }
  166. function navItemClick(index){
  167. uni.navigateTo({
  168. url: `/pages/business/oa/toDo/index?queryType=${index}`
  169. })
  170. }
  171. /**
  172. *
  173. * @param sub 数组下标
  174. * @param num 显示数量
  175. */
  176. function splitNum(sub,num) {
  177. state.appContent[sub].array = state.appContent[sub].direction == "0" ? state.formList.slice(0, num) : state.formList
  178. state.appContent[sub].direction = state.appContent[sub].direction == "0" ? 1 : "0"
  179. }
  180. /**
  181. * @获取路由信息
  182. * @api接口请求
  183. */
  184. function getAppRoutersData() {
  185. getAppRouters().then((res) => {
  186. state.cuIconList = res.data;
  187. storageSystem.set("homeList", state);
  188. });
  189. }
  190. onShow(() => {
  191. init()
  192. });
  193. </script>
  194. <style lang="scss" scoped>
  195. .home-container {
  196. font-family: "Alibaba_PuHuiTi_Regular";
  197. .transition {
  198. position: fixed;
  199. top: 0;
  200. left: 0;
  201. right: 0;
  202. bottom: 0;
  203. z-index: 1100;
  204. &-section {
  205. position: absolute;
  206. top: 10px;
  207. right: 15px;
  208. background-color: #fff;
  209. border-radius: 10px;
  210. box-shadow: 0px 0px 15px 0 rgba(0, 0, 0, 0.2);
  211. &-divider {
  212. border-bottom: 0.5px rgba(0, 0, 0, 0.1) solid;
  213. margin: 0 20px;
  214. }
  215. &-content {
  216. display: flex;
  217. padding: 15px 20px;
  218. &-icon {
  219. font-size: 18px;
  220. color: #000;
  221. }
  222. &-text {
  223. margin: 0 20px;
  224. }
  225. }
  226. &-content:first-child {
  227. padding-top: 15px;
  228. border-radius: 10px 10px 0 0;
  229. }
  230. &-content:last-child {
  231. padding-bottom: 15px;
  232. border-radius: 0 0 10px 10px;
  233. }
  234. &-content:hover {
  235. // transform: 3s;
  236. // transition: all 600ms cubic-bezier(0.3, 1, 0.2, 1);
  237. transition: all 3s cubic-bezier(0.7, -0.5, 0.2, 2);
  238. background-color: rgba(0, 0, 0, 0.1);
  239. }
  240. }
  241. }
  242. .grid-area {
  243. margin-top: 10px;
  244. width:calc(100% - 20px);
  245. margin-left:10px;
  246. border-radius: 6px;
  247. position: relative;
  248. &_title {
  249. padding: 10px 10px 5px 10px;
  250. color: #000000;
  251. font-size: $uni-font-size-base;
  252. }
  253. &_icon {
  254. position: absolute;
  255. right: 10px;
  256. top:10px;
  257. }
  258. &_center {
  259. border-radius: 6px;
  260. color:#000;
  261. &_item {
  262. &_image {
  263. width: 40px;
  264. height: 40px;
  265. }
  266. &_title {
  267. font-size: $uni-font-size-sm;
  268. word-wrap: break-word;
  269. max-width: 60px;
  270. text-align: center;
  271. }
  272. &_num {
  273. font-size: 16px;
  274. }
  275. }
  276. }
  277. }
  278. }
  279. .topReturn{
  280. width:100%;
  281. height:44px;
  282. line-height: 44px;
  283. }
  284. </style>