更新页面
This commit is contained in:
@ -39,6 +39,7 @@
|
||||
<DictTag :tag="false" :value="row.czzt" :options="D_GS_XS_CZZT" />
|
||||
</template>
|
||||
<template #shzt="{row}">
|
||||
<!-- 采纳(将这条信息推送到情报管理),退回! -->
|
||||
<DictTag :tag="false" :value="row.shzt" :options="D_BZ_XSSHZT" @clickTag="clickTag(row.shzt)" />
|
||||
</template>
|
||||
<!-- 操作 -->
|
||||
@ -92,7 +93,6 @@
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import * as MOSTY from "@/components/MyComponents/index";
|
||||
import PageTitle from "@/components/aboutTable/PageTitle.vue";
|
||||
import MyTable from "@/components/aboutTable/MyTable.vue";
|
||||
import Pages from "@/components/aboutTable/Pages.vue";
|
||||
@ -171,7 +171,7 @@ const cancel = (row) =>{
|
||||
const handleSumbit = (row) =>{
|
||||
rules.bhyy = !chooseRow.value.bhyy ? true :false;
|
||||
if(chooseRow.value.shzt == '01' && rules.bhyy) return false;
|
||||
let data = { ...chooseRow.value ,cjLx:'01'}
|
||||
let data = { ...chooseRow.value }
|
||||
qcckPost(data,'/mosty-gsxt/qbcj/updateByXssh').then(res=>{
|
||||
row.visible = false;
|
||||
proxy.$message({ type: "success", message: "审核成功" });
|
||||
@ -199,7 +199,7 @@ const changeSize = (val) =>{
|
||||
// 获取列表
|
||||
const getList = () =>{
|
||||
pageData.tableConfiger.loading = true;
|
||||
let data = { ...pageData.pageConfiger, ...queryFrom.value };
|
||||
let data = { ...pageData.pageConfiger, ...queryFrom.value,cjLx:'0' };
|
||||
qcckGet(data,'/mosty-gsxt/qbcj/selectPage').then(res=>{
|
||||
pageData.tableData = res.records || [];
|
||||
pageData.total = res.total;
|
||||
@ -226,7 +226,7 @@ const addEdit = (type, row) => {
|
||||
};
|
||||
|
||||
const clickTag = (val) =>{
|
||||
if(val == '01') router.push('/IntelligenceManagement');
|
||||
if(val == '02') router.push('/IntelligenceManagement');
|
||||
}
|
||||
|
||||
// 表格高度计算
|
||||
|
Reference in New Issue
Block a user