明树Git Lab

Commit 33cec7e4 authored by zfp1's avatar zfp1

立项、决策字段调整

parent d22c977e
registry=https://registry.npmmirror.com
\ No newline at end of file
This diff is collapsed.
...@@ -2,7 +2,7 @@ import axios from "axios"; ...@@ -2,7 +2,7 @@ import axios from "axios";
import { ElMessage } from "element-plus"; import { ElMessage } from "element-plus";
import windowConfig from "@/window"; import windowConfig from "@/window";
axios.interceptors.request.use(function (config) { axios.interceptors.request.use(function (config) {
let token = "8681f75e775447f7903708c55a35634e"; let token = "bcb6deadbe9e4b28b00a81d37a4487a5";
if (token) { if (token) {
config.headers.Authorization = token; config.headers.Authorization = token;
} }
......
This diff is collapsed.
...@@ -23,8 +23,8 @@ ...@@ -23,8 +23,8 @@
<template #operations="{ row, index }"> <template #operations="{ row, index }">
<el-button link type="primary" size="small" @click="fillProject(row)">继续填报</el-button> <el-button link type="primary" size="small" @click="fillProject(row)">继续填报</el-button>
<el-button link type="primary" size="small" <el-button link type="primary" size="small"
:loading="row.loading" @click="approvalProject(row)" :loading="row.loading" @click="fillProject(row)"
>发起审批</el-button> >发起决策审批</el-button>
</template> </template>
</common-table> </common-table>
</div> </div>
......
...@@ -53,6 +53,17 @@ ...@@ -53,6 +53,17 @@
label: "项目编号", label: "项目编号",
showOverflowTooltip: true showOverflowTooltip: true
}, },
{
prop: "projectLzType",
label: "状态",
width: 120,
align: "center",
formatter: (data) => {
return data.projectLzType === 1 ? "待立项" : data.projectLzType === 3 ? "立项审批中" :
data.projectLzType === 5 ? "已立项" : data.projectLzType === 7 ? "决策填报中" :
data.projectLzType === 8 ? "决策审批中" : data.projectLzType === 9 ? "已决策" : "待立项"
}
},
{ {
prop: "operations", prop: "operations",
label: "操作", label: "操作",
......
...@@ -60,6 +60,17 @@ ...@@ -60,6 +60,17 @@
label: "项目编号", label: "项目编号",
showOverflowTooltip: true showOverflowTooltip: true
}, },
{
prop: "projectLzType",
label: "状态",
width: 120,
align: "center",
formatter: (data) => {
return data.projectLzType === 1 ? "待立项" : data.projectLzType === 3 ? "立项审批中" :
data.projectLzType === 5 ? "已立项" : data.projectLzType === 7 ? "决策填报中" :
data.projectLzType === 8 ? "决策审批中" : data.projectLzType === 9 ? "已决策" : "待立项"
}
},
{ {
prop: "operations", prop: "operations",
label: "操作", label: "操作",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment