|
@@ -262,6 +262,7 @@ const firstTaskStatus = async () => {
|
|
}
|
|
}
|
|
//查询状态
|
|
//查询状态
|
|
const NodeStatus = ref('1')
|
|
const NodeStatus = ref('1')
|
|
|
|
+const queryNodeStatusId=ref('')
|
|
const { contractType } = contractInfo.value;
|
|
const { contractType } = contractInfo.value;
|
|
const authBtnTabKey = ref(contractType===2?'2':'1')
|
|
const authBtnTabKey = ref(contractType===2?'2':'1')
|
|
const queryNodeStatus = async () => {
|
|
const queryNodeStatus = async () => {
|
|
@@ -272,7 +273,8 @@ const queryNodeStatus = async () => {
|
|
// classify: 1
|
|
// classify: 1
|
|
// primaryKeyId: authBtnTabKey.value==1 ? info['id'] : info['primaryKeyId'],
|
|
// primaryKeyId: authBtnTabKey.value==1 ? info['id'] : info['primaryKeyId'],
|
|
primaryKeyId:info.primaryKeyId,
|
|
primaryKeyId:info.primaryKeyId,
|
|
- classify: authBtnTabKey.value
|
|
|
|
|
|
+ classify: authBtnTabKey.value,
|
|
|
|
+ id:queryNodeStatusId.value
|
|
|
|
|
|
})
|
|
})
|
|
//1 未填报,2待上报,3已上报
|
|
//1 未填报,2待上报,3已上报
|
|
@@ -563,6 +565,7 @@ const saveBussData = async () => {
|
|
// window?.location?.reload() //刷新页面
|
|
// window?.location?.reload() //刷新页面
|
|
if (res) {
|
|
if (res) {
|
|
pdfId.value=res
|
|
pdfId.value=res
|
|
|
|
+ queryNodeStatusId.value=res
|
|
queryNodeStatus()
|
|
queryNodeStatus()
|
|
await getBussPdfInfo(res)
|
|
await getBussPdfInfo(res)
|
|
|
|
|