2e92dfd1 by renchao@pashanhoo.com

style:注释增加

1 parent 1e4eb294
......@@ -13,7 +13,7 @@
*    ┃   ┃ + + + +
*    ┃   ┃
*    ┃   ┃ + 神兽保佑
*    ┃   ┃ 代码无bug  
*    ┃   ┃ 代码无bug
*    ┃   ┃  +         
*    ┃    ┗━━━┓ + +
*    ┃        ┣┓
......
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-05-16 13:36:55
* @LastEditTime: 2023-05-16 15:56:15
*/
import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
// 新增平台接口
/**
* @description: 新增平台接口
* @param {*} data
* @author: renchao
*/
export function addSysInterface (data) {
return request({
url: SERVER.SERVERAPI + "/rest/system/ptjk/addSysInterface",
......@@ -16,7 +20,11 @@ export function addSysInterface (data) {
})
}
// 编辑平台接口
/**
* @description: 编辑平台接口
* @param {*} data
* @author: renchao
*/
export function editSysInterface (data) {
return request({
url: SERVER.SERVERAPI + "/rest/system/ptjk/editSysInterface",
......@@ -24,7 +32,11 @@ export function editSysInterface (data) {
data
})
}
// 接口调取
/**
* @description: 接口调取
* @param {*} data
* @author: renchao
*/
export function interfaceRetrieve (data) {
return request({
url: SERVER.SERVERAPI + "/rest/system/ptjk/interfaceRetrieve",
......@@ -33,7 +45,11 @@ export function interfaceRetrieve (data) {
})
}
// 获取平台接口列表
/**
* @description: 获取平台接口列表
* @param {*} data
* @author: renchao
*/
export function getSysInterfaceList (data) {
return request({
url: SERVER.SERVERAPI + "/rest/system/ptjk/getSysInterfaceList",
......
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-05-06 09:17:41
* @LastEditTime: 2023-05-16 15:56:42
*/
import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
const url = SERVER.LPBSERVERAPI + '/rest/zhcx/lpcx/'
/*
楼盘查询
*/
// 根据条件进行列表查询
//
/**
* @description:楼盘查询- 根据条件进行列表查询
* @param {*} data
* @author: renchao
*/
export function getLpZrz (data) {
return request({
url: 'service-lpb/rest/zhcx/lpcx/getLpZrz',
......@@ -18,21 +20,33 @@ export function getLpZrz (data) {
})
}
// 获取楼盘表
/**
* @description: 获取楼盘表
* @param {*} zrzbsm
* @author: renchao
*/
export function getLpb (zrzbsm) {
return request({
url: url + 'getLpb?scyclx=1&zrzbsm=' + zrzbsm,
method: 'get'
})
}
// 获取楼盘表房屋用途,房屋性质右侧房屋用途统计数据
/**
* @description: 获取楼盘表房屋用途,房屋性质右侧房屋用途统计数据
* @param {*} zrzbsm
* @author: renchao
*/
export function getLpbFwytAndQlxz (zrzbsm) {
return request({
url: url + 'getLpbFwytAndQlxz?scyclx=1&zrzbsm=' + zrzbsm,
method: 'get'
})
}
// 获取楼盘表缺失项统计
/**
* @description: 获取楼盘表缺失项统计
* @param {*} zrzbsm
* @author: renchao
*/
export function getLpbQsxtj (zrzbsm) {
return request({
url: url + 'getLpbQsxtj?scyclx=1&zrzbsm=' + zrzbsm,
......
......@@ -5,7 +5,11 @@
*/
import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
// 获取申请查询列表
/**
* @description: 获取申请查询列表
* @param {*} data
* @author: renchao
*/
export function getSqcxPage (data) {
return request({
url: SERVER.SERVERAPI + '/rest/sqcx/jtfc/getSqcxPage',
......@@ -14,7 +18,11 @@ export function getSqcxPage (data) {
})
}
// 新增申请查询家庭房产信息
/**
* @description: 新增申请查询家庭房产信息
* @param {*} data
* @author: renchao
*/
export function addJtfcCxjgXx (data) {
return request({
url: SERVER.SERVERAPI + '/rest/sqcx/jtfc/addJtfcCxjgXx',
......@@ -23,7 +31,11 @@ export function addJtfcCxjgXx (data) {
})
}
// 新增申请查询房屋明细信息
/**
* @description: 新增申请查询房屋明细信息
* @param {*} data
* @author: renchao
*/
export function addFwmxCxjgXx (data) {
return request({
url: SERVER.SERVERAPI + '/rest/sqcx/jtfc/addFwmxCxjgXx',
......@@ -32,7 +44,11 @@ export function addFwmxCxjgXx (data) {
})
}
// 获取申请查询记录详细信息
/**
* @description: 获取申请查询记录详细信息
* @param {*} params
* @author: renchao
*/
export function getJtfcInfo (params) {
return request({
url: SERVER.SERVERAPI + '/rest/sqcx/jtfc/getJtfcInfo/',
......@@ -54,7 +70,11 @@ export function getFwmxInfo (params) {
})
}
// 打印家庭房产
/**
* @description: 打印家庭房产
* @param {*} data
* @author: renchao
*/
export function printJtcfInfo (data) {
return request({
url: SERVER.SERVERAPI + '/rest/sqcx/jtfc/printJtcfInfo/',
......
/*
* @Description: 系统管理
* @Autor: renchao
* @LastEditTime: 2023-05-16 16:02:32
*/
import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
// 上传单个文件
/**
* @description: 上传单个文件
* @param {*} data
* @author: renchao
*/
export function upload (data) {
return request({
url: SERVER.SERVERAPI + '/rest/file/upload',
......@@ -11,10 +20,11 @@ export function upload (data) {
})
}
/*
系统管理
申请业务规则API-根据条件进行列表查询
*/
/**
* @description: 申请业务规则API-根据条件进行列表查询
* @param {*} data
* @author: renchao
*/
export function getSysSqdjywBysearch (data) {
return request({
url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/getSysSqdjywBysearch',
......@@ -22,9 +32,12 @@ export function getSysSqdjywBysearch (data) {
data
})
}
/*
获取登记类型信息-申请业务规则
*/
/**
* @description: 获取登记类型信息-申请业务规则
* @param {*} id
* @author: renchao
*/
export function getDjlxInfo (id) {
return request({
url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/getDjlxInfo?parentid=' + id,
......@@ -32,9 +45,11 @@ export function getDjlxInfo (id) {
})
}
/*
获取登记类型信息-申请业务规则
*/
/**
* @description: 获取登记类型信息-申请业务规则
* @param {*} id
* @author: renchao
*/
export function getQllxByBsmSqyw (id) {
return request({
url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/getQllxByBsmSqyw?bsmSqyw=' + id,
......@@ -51,9 +66,11 @@ export function getSqdjywDetail (bsmSqyw) {
method: 'get'
})
}
/*
保存登记业务信息-申请业务规则
*/
/**
* @description: 保存登记业务信息-申请业务规则
* @param {*} data
* @author: renchao
*/
export function saveSqdjyw (data) {
return request({
url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/saveSqdjyw',
......@@ -62,9 +79,12 @@ export function saveSqdjyw (data) {
})
}
/*
其他及附记模板-列表详情
*/
/**
* @description: 其他及附记模板-列表详情
* @param {*} data
* @author: renchao
*/
export function sysSqywmbszSearch (data) {
return request({
url: SERVER.SERVERAPI + '/rest/system/sysSqywmbsz/search',
......@@ -72,18 +92,23 @@ export function sysSqywmbszSearch (data) {
data
})
}
/*
其他及附记模板-读取明细
*/
/**
* @description: 其他及附记模板-读取明细
* @param {*} id
* @author: renchao
*/
export function getSysSqywmbszDetailById (id) {
return request({
url: SERVER.SERVERAPI + '/rest/system/sysSqywmbsz/getSysSqywmbszDetailById?id=' + id,
method: 'get'
})
}
/*
其他及附记模板-修改申请业务模板设置
*/
/**
* @description: 其他及附记模板-修改申请业务模板设置
* @param {*} data
* @author: renchao
*/
export function updateSysSqywmbsz (data) {
return request({
url: SERVER.SERVERAPI + '/rest/system/sysSqywmbsz/updateSysSqywmbsz',
......@@ -92,8 +117,11 @@ export function updateSysSqywmbsz (data) {
})
}
// 通知
// 新增系统通知
/**
* @description: 新增系统通知
* @param {*} data
* @author: renchao
*/
export function addSysNotice (data) {
return request({
url: SERVER.SERVERAPI + '/rest/system/sysNotice/addSysNotice',
......@@ -102,7 +130,11 @@ export function addSysNotice (data) {
})
}
//编辑系统通知
/**
* @description: 编辑系统通知
* @param {*} data
* @author: renchao
*/
export function updateSysNotice (data) {
return request({
url: SERVER.SERVERAPI + '/rest/system/sysNotice/updateSysNotice',
......@@ -112,6 +144,11 @@ export function updateSysNotice (data) {
}
// 获取通知列表
/**
* @description:
* @param {*} data
* @author: renchao
*/
export function getSysNoticeList (data) {
return request({
url: SERVER.SERVERAPI + '/rest/system/sysNotice/getSysNoticeList',
......@@ -120,7 +157,11 @@ export function getSysNoticeList (data) {
})
}
//获取法律法规列表
/**
* @description: 获取法律法规列表
* @param {*} data
* @author: renchao
*/
export function getSysPolicyList (data) {
return request({
url: SERVER.SERVERAPI + '/rest/system/sysNotice/getSysPolicyList',
......@@ -129,7 +170,11 @@ export function getSysPolicyList (data) {
})
}
//删除系统通知
/**
* @description: 删除系统通知
* @param {*} params
* @author: renchao
*/
export function deleteSysNotice (params) {
return request({
url: SERVER.SERVERAPI + '/rest/system/sysNotice/deleteSysNotice',
......@@ -138,7 +183,11 @@ export function deleteSysNotice (params) {
})
}
//发布通知
/**
* @description: 发布通知
* @param {*} params
* @author: renchao
*/
export function publishNotice (params) {
return request({
url: SERVER.SERVERAPI + '/rest/system/sysNotice/publishNotice',
......@@ -147,7 +196,11 @@ export function publishNotice (params) {
})
}
//取消发布通知
/**
* @description: 取消发布通知
* @param {*} params
* @author: renchao
*/
export function unPublishNotice (params) {
return request({
url: SERVER.SERVERAPI + '/rest/system/sysNotice/unPublishNotice',
......@@ -156,7 +209,11 @@ export function unPublishNotice (params) {
})
}
//设置已读状态
/**
* @description: 设置已读状态
* @param {*} params
* @author: renchao
*/
export function setReadStatus (params) {
return request({
url: SERVER.SERVERAPI + '/rest/system/sysNotice/setReadStatus',
......@@ -165,7 +222,10 @@ export function setReadStatus (params) {
})
}
//一键设置已读
/**
* @description: 一键设置已读
* @author: renchao
*/
export function setAllRead () {
return request({
url: SERVER.SERVERAPI + '/rest/system/sysNotice/setAllRead',
......@@ -173,7 +233,11 @@ export function setAllRead () {
})
}
//获取打印模板列表
/**
* @description: 获取打印模板列表
* @param {*} data
* @author: renchao
*/
export function selectPrintTemplateList (data) {
return request({
url: SERVER.SERVERAPI + '/rest/system/print/selectPrintTemplateList',
......@@ -182,7 +246,11 @@ export function selectPrintTemplateList (data) {
})
}
//新增打印模板列表
/**
* @description: 新增打印模板列表
* @param {*} data
* @author: renchao
*/
export function addPrintTemplate (data) {
return request({
url: SERVER.SERVERAPI + '/rest/system/print/addPrintTemplate',
......@@ -191,7 +259,11 @@ export function addPrintTemplate (data) {
})
}
//编辑打印模板列表
/**
* @description: 编辑打印模板列表
* @param {*} data
* @author: renchao
*/
export function editPrintTemplate (data) {
return request({
url: SERVER.SERVERAPI + '/rest/system/print/editPrintTemplate',
......@@ -200,7 +272,11 @@ export function editPrintTemplate (data) {
})
}
//删除打印模板列表
/**
* @description: 删除打印模板列表
* @param {*} params
* @author: renchao
*/
export function delPrintTemplate (params) {
return request({
url: SERVER.SERVERAPI + '/rest/system/print/delPrintTemplate',
......@@ -209,7 +285,11 @@ export function delPrintTemplate (params) {
})
}
//根据模板编号获取打印模板
/**
* @description: 根据模板编号获取打印模板
* @param {*} params
* @author: renchao
*/
export function getPrintTemplateByCode (params) {
return request({
url: SERVER.SERVERAPI + '/rest/system/print/getPrintTemplateByCode',
......
/*
* @Description:
* @Description: 用户首页
* @Autor: renchao
* @LastEditTime: 2023-05-16 13:50:12
* @LastEditTime: 2023-05-16 16:06:51
*/
import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
// 用户首页
// 获取首页通知公告列表
/**
* @description: 获取首页通知公告列表
* @author: renchao
*/
export function getHomeNoticeList () {
return request({
url: SERVER.SERVERAPI + '/rest/workBench/getHomeNoticeList',
......@@ -25,7 +27,10 @@ export function getHomeTodoList () {
})
}
//获取首页已办事项
/**
* @description: 获取首页已办事项
* @author: renchao
*/
export function getHomeDoneList () {
return request({
url: SERVER.SERVERAPI + '/rest/workBench/getHomeDoneList',
......@@ -33,7 +38,10 @@ export function getHomeDoneList () {
})
}
//获取首页常办项目
/**
* @description: 获取首页常办项目
* @author: renchao
*/
export function getHomeFrequentProjects () {
return request({
url: SERVER.SERVERAPI + '/rest/workBench/getHomeFrequentProjects',
......@@ -41,7 +49,11 @@ export function getHomeFrequentProjects () {
})
}
//保存常办项目
/**
* @description: 保存常办项目
* @param {*} data
* @author: renchao
*/
export function saveFrequentProjectsList (data) {
return request({
url: SERVER.SERVERAPI + '/rest/workBench/saveFrequentProjectsList',
......@@ -51,7 +63,10 @@ export function saveFrequentProjectsList (data) {
}
// 获取用户信息
/**
* @description: 获取用户信息
* @author: renchao
*/
export function getUserInfo () {
return request({
url: SERVER.SERVERAPI + '/rest/user/getUserInfo',
......@@ -59,16 +74,21 @@ export function getUserInfo () {
})
}
// 获取菜单信息
/**
* @description: 获取菜单信息
* @author: renchao
*/
export function getMenuInfo () {
return request({
url: SERVER.SERVERAPI + '/rest/user/getUserAuthorizationMenus',
method: 'get',
})
}
/*
获取全部字典数据
*/
/**
* @description: 获取全部字典数据
* @author: renchao
*/
export function getAllDict () {
return request({
url: SERVER.SERVERAPI + '/rest/sys/dict/getAllDict',
......@@ -82,9 +102,12 @@ export function getQlxxDictList (data) {
data
})
}
/*
获取字典子级列表
*/
/**
* @description: 获取字典子级列表
* @param {*} bsmDict
* @author: renchao
*/
export function getChildDictList (bsmDict) {
return request({
url: SERVER.SERVERAPI + '/rest/sys/dict/getChildDictList',
......@@ -94,9 +117,12 @@ export function getChildDictList (bsmDict) {
}
})
}
/*
编辑字典数据
*/
/**
* @description: 编辑字典数据
* @param {*} data
* @author: renchao
*/
export function editDictNode (data) {
return request({
url: SERVER.SERVERAPI + '/rest/sys/dict/editDictNode',
......@@ -105,9 +131,11 @@ export function editDictNode (data) {
})
}
/*
刷新字典缓存
*/
/**
* @description: 刷新字典缓存
* @author: renchao
*/
export function refreshDictCache () {
return request({
url: SERVER.SERVERAPI + '/rest/sys/dict/refreshDictCache',
......
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-05-16 16:07:10
*/
import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
/*
系统监控 -获取错误日志列表
*/
/**
* @description: 系统监控 -获取错误日志列表
* @param {*} data
* @author: renchao
*/
export function getErrorLogList (data) {
return request({
url: SERVER.SERVERAPI + '/rest/xtjk/view/getErrorLogList',
......@@ -11,9 +18,12 @@ export function getErrorLogList (data) {
})
}
/*
系统监控 -获取操作日志列表
*/
/**
* @description: 系统监控 -获取操作日志列表
* @param {*} data
* @author: renchao
*/
export function getOperationLogList (data) {
return request({
url: SERVER.SERVERAPI + '/rest/xtjk/view/getOperationLogList',
......@@ -22,9 +32,10 @@ export function getOperationLogList (data) {
})
}
/*
系统监控 -主机监控
*/
/**
* @description: 系统监控 -主机监控
* @author: renchao
*/
export function getServerInfo () {
return request({
url: SERVER.SERVERAPI + '/rest/xtjk/view/getServerInfo',
......
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-05-16 16:08:38
*/
import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
/*
业务办理-获取收藏业务集合
*/
/**
* @description: 业务办理-获取收藏业务集合
* @author: renchao
*/
export function getCollectBiz () {
return request({
url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getCollectBiz',
......@@ -11,18 +18,22 @@ export function getCollectBiz () {
})
}
/*
业务办理-获取左侧菜单
*/
/**
* @description: 业务办理-获取左侧菜单
* @author: renchao
*/
export function getleftMenu () {
return request({
url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getleftMenu',
method: 'post'
})
}
/*
业务办理-获取下个节点内容
*/
/**
* @description: 业务办理-获取下个节点内容
* @param {*} bsmSqyw
* @author: renchao
*/
export function getNextNode (bsmSqyw) {
return request({
url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getNextNode?parentid=' + bsmSqyw,
......@@ -30,9 +41,11 @@ export function getNextNode (bsmSqyw) {
})
}
/*
业务办理-选择单元-根据条件进行列表查询-国有建设用地使用权、房屋所有权(首次登记)
*/
/**
* @description: 业务办理-选择单元-根据条件进行列表查询-国有建设用地使用权、房屋所有权(首次登记)
* @param {*} data
* @author: renchao
*/
export function selectScBdcdy (data) {
return request({
url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectScBdcdy',
......@@ -53,7 +66,11 @@ export function selectScBdcdy (data) {
// })
// }
// 待办箱列表查询接口
/**
* @description: 待办箱列表查询接口
* @param {*} data
* @author: renchao
*/
export function searchTaskToDo (data) {
return request({
url: SERVER.SERVERAPI + '/rest/workBox/search/searchTaskToDo',
......@@ -61,7 +78,11 @@ export function searchTaskToDo (data) {
data
})
}
// 待办箱/不动产单元删除接口
/**
* @description: 待办箱/不动产单元删除接口
* @param {*} data
* @author: renchao
*/
export function deleteFlow (data) {
return request({
url: SERVER.SERVERAPI + '/rest/business/workFlow/deleteFlow',
......@@ -69,9 +90,11 @@ export function deleteFlow (data) {
data
})
}
/*
业务办理-发起业务申请流程
*/
/**
* @description: 业务办理-发起业务申请流程
* @param {*} data
* @author: renchao
*/
export function startBusinessFlow (data) {
return request({
url: SERVER.SERVERAPI + '/rest/business/workFlow/startBusinessFlow',
......@@ -79,9 +102,12 @@ export function startBusinessFlow (data) {
data
})
}
/*
已办箱列表查询接口
*/
/**
* @description: 已办箱列表查询接口
* @param {*} data
* @author: renchao
*/
export function searchTaskDone (data) {
return request({
url: SERVER.SERVERAPI + '/rest/workBox/search/searchTaskDone',
......@@ -89,9 +115,11 @@ export function searchTaskDone (data) {
data
})
}
/*
业务办理-选择权利信息-根据条件进行列表查询
*/
/**
* @description: 业务办理-选择权利信息-根据条件进行列表查询
* @param {*} data
* @author: renchao
*/
export function selectQlxx (data) {
return request({
url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectQlxx',
......
/*
* @Description: 项目权限
* @Autor: renchao
* @LastEditTime: 2023-05-16 14:10:26
*/
import Vue from 'vue'
import router from './router'
import store from './store'
......
/*
* @Description: 全局路由
* @Autor: renchao
* @LastEditTime: 2023-05-16 14:09:37
*/
import Vue from 'vue'
import Router from 'vue-router'
Vue.use(Router)
/* Layout */
import Layout from '@/layout'
/* Router Modules */
// import componentsRouter from './modules/components'
......@@ -24,7 +27,6 @@ export const constantRoutes = [
]
},
// 业务流程框架
// 业务流程框架
{
path: '/workFrame',
component: () => import('@/views/workflow/workFrame.vue'),
......
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-05-16 14:10:49
*/
module.exports = {
title: '爬山虎不动产登记平台',
/**
* @type {boolean} true | false
* @description Whether show the settings right-panel
......
/*
* @Description: 项目vuex管理
* @Autor: renchao
* @LastEditTime: 2023-05-16 14:10:05
*/
import Vue from 'vue'
import Vuex from 'vuex'
import getters from './getters'
......
/*
* @Description: 动态路由
* @Autor: renchao
* @LastEditTime: 2023-05-16 14:08:42
*/
import Layout from '@/layout'
/**
* @description:
* @param {*} routers
* @author: renchao
*/
export default function filterAsyncRouter (routers) {
routers.forEach(item => {
if (!item.children) {
......
/*
* @Description:
* @Description: 此文件主要创建 axios 实例,然后添加请求拦截器和响应拦截器
* @Autor: renchao
* @LastEditTime: 2023-05-16 09:17:28
*/
/**
* 此文件主要创建 axios 实例,然后添加请求拦截器和响应拦截器
* @LastEditTime: 2023-05-16 14:07:58
*/
import axios from 'axios'
import { Message } from 'element-ui'
......
/*
* @Description: 定义全局loading
* @Autor: renchao
* @LastEditTime: 2023-05-16 14:08:10
*/
import Loading from '@/components/Loading/index.js';
// 定义 loading
let loading
......@@ -11,7 +17,6 @@ function startLoading (loadingText = '正在加载中...') {
target: document.querySelector('.loadingtext')
})
}
// loading结束 方法
function endLoading () {
loading.close()
......
<template>
<div class="clmlmx-box">
<div class="title">申请材料目录</div>
<lb-table :column="column" :key="key" :heightNum="150" :pagination="false" :data="formData.data">
<lb-table :column="column" :key="key" :heightNumSetting="true" :pagination="false" :data="formData.data">
</lb-table>
<div class="text-center">
<el-button @click="$popupCacel">取消</el-button>
......@@ -9,7 +9,7 @@
</div>
</template>
<script>
import { mapGetters } from "vuex";
import store from '@/store/index.js'
import { InitClml, saveClml, deleteSjClml, moveClml } from "@/api/clxx.js";
export default {
props: {
......@@ -25,41 +25,13 @@
column: [
{
width: "50",
renderHeader: (h, scope) => {
return (
<div>
{
''
}
</div>
)
},
render: (h, scope) => {
return (
<div>
{
this.$route.query.viewtype || scope.row.sfxjcl == '0' ? <span>{ }</span> :
<i class="el-icon-minus pointer"
onClick={() => {
this.handleDelete(scope.$index, scope.row);
}}
></i>
}
</div>
)
}
},
{
width: "50",
label: '序号',
render: (h, scope) => {
return <span>{scope.$index + 1}</span>
}
type: 'index'
},
{
prop: "isrequired",
label: "是否必选",
width: "50",
width: "80",
render: (h, scope) => {
if (scope.row.sfxjcl === "1") {
return (
......@@ -120,7 +92,7 @@
},
{
label: "扫描页数",
width: "50",
width: "80",
render: (h, scope) => {
if (scope.row.children && scope.row.children.length > 0) {
return (
......@@ -170,8 +142,8 @@
tableData: []
}
},
computed: {
...mapGetters(["dictData"])
created () {
console.log(this.formData.data, 'formData');
},
methods: {
// 材料目录明细初始化
......@@ -234,7 +206,6 @@
message: '下移成功',
type: 'success'
})
this.$parent.setTableData(this.data)
}
} else {
this.$message.error(res.message);
......@@ -257,7 +228,7 @@
message: "删除成功",
type: "success",
})
this.$parent.setTableData(this.data)
// this.$parent.setTableData(this.data)
}
}
})
......@@ -270,7 +241,7 @@
},
// 字典
dicStatus (val, code) {
let data = this.$store.getters.dictData[code],
let data = store.getters.dictData[code],
name = "暂无";
if (data) {
data.map((item) => {
......
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-05-04 10:29:45
* @LastEditTime: 2023-05-16 15:55:45
-->
<template>
<div class="from-clues">
......@@ -51,12 +51,12 @@
ysxlh: '',
zsh: '',
qlr: '',
bsmSldy: '',
bsmSldy: ''
},
tableData: {
total: 0,
columns: datas.columns().fzgrid,
data: [],
data: []
},
dialogVisible: false
}
......@@ -66,12 +66,12 @@
this.ruleForm.bsmSlsq = this.$route.query.bsmSlsq;
getCertificateList(this.ruleForm).then(res => {
if (res.code === 200) {
this.tableData.data = res.result;
this.tableData.data = res.result ? res.result : []
}
})
},
zslqClick () {
this.$popupDialog("不动产权证领取", "workflow/components/dialog/zslq", {}, '80%', true);
this.$popupDialog("不动产权证领取", "workflow/components/dialog/zslq", {}, '80%', true)
}
}
}
......
......@@ -201,6 +201,7 @@
Init(formdata).then((res) => {
this.$nextTick(() => {
that.ruleForm = res.result;
console.log(that.ruleForm, 'that.ruleFormthat.ruleFormthat.ruleForm');
that.$endLoading();
that.isShow = true;
this.czrOptions = this.ruleForm.qlrList;
......