|
@@ -50,13 +50,13 @@
|
|
<view class="list-cell" style="color: #666666; line-height: 25px; margin: 10px 0; width: auto; " v-for="(base, index) in state.dataList" :key="index" @click="toDetail(base)">
|
|
<view class="list-cell" style="color: #666666; line-height: 25px; margin: 10px 0; width: auto; " v-for="(base, index) in state.dataList" :key="index" @click="toDetail(base)">
|
|
<view class="content-area-top menu-item">
|
|
<view class="content-area-top menu-item">
|
|
<view class="content-area-top-name" @click="toProjectMange(base.id)">{{ base.createBy + '提交的' + proxy.$common.mapping("formName", "formSign", base.docNo.split("-")[0], state.formList) }} </view>
|
|
<view class="content-area-top-name" @click="toProjectMange(base.id)">{{ base.createBy + '提交的' + proxy.$common.mapping("formName", "formSign", base.docNo.split("-")[0], state.formList) }} </view>
|
|
- <view class="content-area-top-time" >{{ base.submitDate}} </view>
|
|
|
|
|
|
+ <view class="content-area-top-time">{{ state.queryParams.queryType!=4 ? base.submitDate : base.createTime.replace(/T/g," ") }} </view>
|
|
</view>
|
|
</view>
|
|
<view class="content-area-row_wrap menu-item">
|
|
<view class="content-area-row_wrap menu-item">
|
|
<view class="content-area-row_wrap-view">单据编号:{{ base.docNo }} </view>
|
|
<view class="content-area-row_wrap-view">单据编号:{{ base.docNo }} </view>
|
|
<view class="content-area-row_wrap-view">类型:{{ proxy.$common.mapping("formName", "formSign", base.docNo.split("-")[0], state.formList) }}</view>
|
|
<view class="content-area-row_wrap-view">类型:{{ proxy.$common.mapping("formName", "formSign", base.docNo.split("-")[0], state.formList) }}</view>
|
|
- <view class="content-area-row_wrap-view" style="display: block">
|
|
|
|
- <span :style="{ color: proxy.$common.mapping('elTagClass', 'value', base.approvalStatus, form_status) }" >{{ proxy.$common.mapping("label", "value", base.approvalStatus, form_status) }} </span>
|
|
|
|
|
|
+ <view class="content-area-row_wrap-view" style="display: block" >
|
|
|
|
+ <span :style="{ color: proxy.$common.mapping('elTagClass', 'value', state.queryParams.queryType!=4 ? base.approvalStatus : base.docStatus, form_status) }" >{{ proxy.$common.mapping("label", "value", state.queryParams.queryType!=4 ? base.approvalStatus : base.docStatus, form_status) }} </span>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
@@ -72,7 +72,7 @@ import { onLoad, onShow, onReady, onHide, onLaunch, onNavigationBarButtonTap, on
|
|
import { ref, reactive, computed, getCurrentInstance, toRefs, inject, watchEffect } from "vue";
|
|
import { ref, reactive, computed, getCurrentInstance, toRefs, inject, watchEffect } from "vue";
|
|
/*----------------------------------接口引入-----------------------------------*/
|
|
/*----------------------------------接口引入-----------------------------------*/
|
|
import { getToDoPageList } from "@/api/oa/todo/index.js";
|
|
import { getToDoPageList } from "@/api/oa/todo/index.js";
|
|
-import { getFormName } from "@/api/oa/approval/index.js";
|
|
|
|
|
|
+import { getFormName, myApplication } from "@/api/oa/approval/index.js";
|
|
/*----------------------------------组件引入-----------------------------------*/
|
|
/*----------------------------------组件引入-----------------------------------*/
|
|
/*----------------------------------store引入-----------------------------------*/
|
|
/*----------------------------------store引入-----------------------------------*/
|
|
/*----------------------------------公共方法引入-----------------------------------*/
|
|
/*----------------------------------公共方法引入-----------------------------------*/
|
|
@@ -87,6 +87,7 @@ const state = reactive({
|
|
{ name: "待处理", value: 1 },
|
|
{ name: "待处理", value: 1 },
|
|
{ name: "已处理", value: 2 },
|
|
{ name: "已处理", value: 2 },
|
|
{ name: "我收到的", value: 3 },
|
|
{ name: "我收到的", value: 3 },
|
|
|
|
+ { name: "我发起的", value: 4 },
|
|
],
|
|
],
|
|
queryParams:{
|
|
queryParams:{
|
|
docNo: undefined,
|
|
docNo: undefined,
|
|
@@ -129,24 +130,45 @@ function selectListApi(type) {
|
|
state.loading = true;
|
|
state.loading = true;
|
|
getFormName().then((res) => {
|
|
getFormName().then((res) => {
|
|
state.formList = res.data;
|
|
state.formList = res.data;
|
|
- getToDoPageList(state.queryParams)
|
|
|
|
- .then((requset) => {
|
|
|
|
- if(type){
|
|
|
|
- if(requset.data.records.length>0){
|
|
|
|
- state.dataList.push(...requset.data.records);
|
|
|
|
- state.total += requset.data.total;
|
|
|
|
|
|
+ if(state.queryParams.queryType !=4){
|
|
|
|
+ getToDoPageList(state.queryParams)
|
|
|
|
+ .then((requset) => {
|
|
|
|
+ if(type){
|
|
|
|
+ if(requset.data.records.length>0){
|
|
|
|
+ state.dataList.push(...requset.data.records);
|
|
|
|
+ state.total += requset.data.total;
|
|
|
|
+ }else{
|
|
|
|
+ state.queryParams.pageNum--
|
|
|
|
+ }
|
|
}else{
|
|
}else{
|
|
- state.queryParams.pageNum--
|
|
|
|
|
|
+ state.dataList = requset.data.records;
|
|
|
|
+ state.total = requset.data.total;
|
|
}
|
|
}
|
|
- }else{
|
|
|
|
- state.dataList = requset.data.records;
|
|
|
|
- state.total = requset.data.total;
|
|
|
|
- }
|
|
|
|
- state.loading = false;
|
|
|
|
- })
|
|
|
|
- .catch((err) => {
|
|
|
|
- state.loading = false;
|
|
|
|
- });
|
|
|
|
|
|
+ state.loading = false;
|
|
|
|
+ })
|
|
|
|
+ .catch((err) => {
|
|
|
|
+ state.loading = false;
|
|
|
|
+ });
|
|
|
|
+ }else{
|
|
|
|
+ myApplication({pageNum:state.queryParams.pageNum,pageSize:state.queryParams.pageSize}).then((requset) => {
|
|
|
|
+ if(type){
|
|
|
|
+ if(requset.data.records.length>0){
|
|
|
|
+ state.dataList.push(...requset.data.records);
|
|
|
|
+ state.total += requset.data.total;
|
|
|
|
+ }else{
|
|
|
|
+ state.queryParams.pageNum--
|
|
|
|
+ }
|
|
|
|
+ }else{
|
|
|
|
+ state.dataList = requset.data.records;
|
|
|
|
+ state.total = requset.data.total;
|
|
|
|
+ }
|
|
|
|
+ state.loading = false;
|
|
|
|
+ })
|
|
|
|
+ .catch((err) => {
|
|
|
|
+ state.loading = false;
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
|
|
@@ -169,7 +191,7 @@ function refresh() {
|
|
* @param row
|
|
* @param row
|
|
*/
|
|
*/
|
|
function toDetail(row){
|
|
function toDetail(row){
|
|
- proxy.$tab.navigateTo(`/pages/business/oa/toDo/detail?docNo=${row.docNo}&approvalStatus=${row.approvalStatus}&id=${row.id}`);
|
|
|
|
|
|
+ proxy.$tab.navigateTo(`/pages/business/oa/toDo/detail?docNo=${row.docNo}&approvalStatus=${state.queryParams.queryType !=4 ?row.approvalStatus : row.docStatus}&id=${row.id}`);
|
|
}
|
|
}
|
|
/**
|
|
/**
|
|
* 返回上级页面
|
|
* 返回上级页面
|