ee11c388 by 任超
2 parents 865e3bd0 70432711
......@@ -49,7 +49,7 @@ export const asyncRoutes = [
},
{
path: '/ywbl',
id: '3',
id: '2',
parentId: null,
component: Layout,
meta: { title: '业务办理', icon: 'ywbl' },
......@@ -59,24 +59,24 @@ export const asyncRoutes = [
children: [
{
path: 'ywsq',
id: '4',
parentId: '3',
id: '21',
parentId: '2',
component: () => import('@/views/ywbl/ywsq/ywsq.vue'),
name: 'ywsq',
meta: { title: '业务申请' }
},
{
path: 'dbx',
id: '5',
parentId: '3',
id: '22',
parentId: '2',
component: () => import('@/views/ywbl/dbx/dbx.vue'),
name: 'dbx',
meta: { title: '待办箱' }
},
{
path: 'ybx',
id: '6',
parentId: '3',
id: '23',
parentId: '2',
component: () => import('@/views/ywbl/ybx/ybx.vue'),
name: 'ybx',
meta: { title: '已办箱' }
......@@ -85,7 +85,7 @@ export const asyncRoutes = [
},
{
path: '/sqcx',
id: '9',
id: '3',
parentId: null,
component: Layout,
meta: { title: '申请查询', icon: 'sqcx' },
......@@ -95,24 +95,24 @@ export const asyncRoutes = [
children: [
{
path: 'jtfc',
id: '10',
parentId: '9',
id: '31',
parentId: '3',
component: () => import('@/views/sqcx/jtfc/jtfc.vue'),
name: 'jtfc',
meta: { title: '家庭房产' }
},
{
path: 'dydjb',
id: '12',
parentId: '9',
id: '32',
parentId: '3',
component: () => import('@/views/sqcx/dydjb/dydjb.vue'),
name: 'dydjb',
meta: { title: '打印登记薄' }
},
{
path: 'sqcxjl',
id: '11',
parentId: '9',
id: '33',
parentId: '3',
component: () => import('@/views/sqcx/sqcxjl/sqcxjl.vue'),
name: 'cxjl',
meta: { title: '申请查询记录' }
......@@ -121,7 +121,7 @@ export const asyncRoutes = [
},
{
path: '/zhcx',
id: '13',
id: '4',
parentId: null,
component: Layout,
meta: { title: '综合查询', icon: 'zhcx' },
......@@ -131,24 +131,24 @@ export const asyncRoutes = [
children: [
{
path: 'jdcx',
id: '14',
parentId: '13',
id: '41',
parentId: '4',
component: () => import('@/views/zhcx/jdcx/jdcx.vue'),
name: 'jdcx',
meta: { title: '进度查询' }
},
{
path: 'djbcx',
id: '15',
parentId: '13',
id: '42',
parentId: '4',
component: () => import('@/views/zhcx/djbcx/djbcx.vue'),
name: 'djbcx',
meta: { title: '登记簿查询' }
},
{
path: 'lpcx',
id: '16',
parentId: '13',
id: '43',
parentId: '4',
component: () => import('@/views/zhcx/lpcx/lpcx.vue'),
name: 'lpcx',
meta: { title: '楼盘查询' }
......@@ -157,7 +157,7 @@ export const asyncRoutes = [
},
{
path: '/zsgl',
id: '17',
id: '5',
parentId: null,
component: Layout,
meta: { title: '证书管理', icon: 'zsgl' },
......@@ -167,24 +167,24 @@ export const asyncRoutes = [
children: [
{
path: 'zsrk',
id: '18',
parentId: '17',
id: '51',
parentId: '5',
component: () => import('@/views/zsgl/zsrk/zsrk.vue'),
name: 'zsrk',
meta: { title: '证书入库' }
},
{
path: 'zsff',
id: '19',
parentId: '17',
id: '52',
parentId: '5',
component: () => import('@/views/zsgl/zsff/zsff.vue'),
name: 'zsff',
meta: { title: '证书分发' }
},
{
path: 'zssyjl',
id: '20',
parentId: '17',
id: '53',
parentId: '5',
component: () => import('@/views/zsgl/zssyjl/zssyjl.vue'),
name: 'zssyjl',
meta: { title: '证书使用记录' }
......@@ -193,7 +193,7 @@ export const asyncRoutes = [
},
{
path: '/system',
id: '21',
id: '9',
parentId: null,
component: Layout,
meta: { title: '系统管理', icon: 'system' },
......@@ -203,11 +203,19 @@ export const asyncRoutes = [
children: [
{
path: 'dictionaries',
id: '22',
parentId: '21',
id: '91',
parentId: '9',
component: () => import('@/views/system/dictionaries.vue'),
name: 'dictionaries',
meta: { title: '字典管理' }
},
{
path: 'sqywgz',
id: '92',
parentId: '9',
component: () => import('@/views/system/sqywgz/sqywgz.vue'),
name: 'sqywgz',
meta: { title: '申请业务规则' }
}
]
}
......
<template>
<div class="from-clues">
<!-- 表单部分 -->
<div class="from-clues-header">
<el-form :model="queryForm" ref="queryForm">
<el-row>
<el-col :span="6">
<el-form-item label="权利类型">
<el-select
v-model="queryForm.qllx"
filterable
clearable
placeholder="请选择权利类型"
>
<el-option
v-for="item in qllxs"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="登记业务编码">
<el-input
placeholder="请输入登记业务编码"
v-model="queryForm.djywbm"
clearable
class="width200px"
>
</el-input>
</el-form-item>
</el-col>
<el-col :span="6">
</el-col>
<el-col :span="6" class="btnCol">
<el-form-item>
<el-button type="primary" @click="queryClick()">查询</el-button>
<el-button @click="moreQueryClick()">高级查询</el-button>
</el-form-item>
</el-col>
</el-row>
</el-form>
</div>
<!-- 表格 -->
<div class="from-clues-content">
<lb-table
:page-size="pageData.size"
@sort-change="handleSort"
:current-page.sync="pageData.current"
:total="pageData.total"
@selection-change="handleSelectionChange"
@size-change="handleSizeChange"
@p-current-change="handleCurrentChange"
:column="tableData.columns"
:data="tableData.data"
>
</lb-table>
</div>
</div>
</template>
<script>
import table from "@/utils/mixin/table";
import { datas, sendThis } from "./sqywgzdata";
export default {
name: "djbcx",
components: {},
mixins: [table],
mounted() {
sendThis(this);
},
data() {
return {
queryForm: {
qllx: "",
djywbm: "",
},
pageData: {
current: 1,
size: 10,
total: 2,
},
ywlys: datas.ywlys(),
tableData: {
columns: datas.columns(),
data: [
{
slsj: "2022-5-12",
},
{
slsj: "2022-5-13",
},
],
},
};
},
methods: {
// 初始化数据
fetchData() {},
handleSort(name, sort) {
console.log(name, sort);
},
openDialog() {
console.log(999999999999999);
},
editClick(){
alert("edit");
}
},
};
</script>
<style scoped lang="scss">
@import "~@/styles/public.scss";
</style>
import filter from '@/utils/filter.js'
let vm = null
const sendThis = (_this) => {
vm = _this
}
class data extends filter {
constructor() {
super()
}
columns () {
return [
{
label: '序号',
type: 'index',
width: '50'
},
// {
// label: "权属状态",
// render: (h, scope) => {
// return (
// <div>
// <span>{scope.row.qszt}</span>
// </div>
// )
// }
// },
{
prop: "sqfl",
label: "申请分类",
},
{
prop: "djywbm",
label: "登记业务编码",
},
{
prop: "qllx",
label: "权利类型",
},
{
prop: "djlx",
label: "登记类型",
},
{
prop: "fqywdylx",
label: "发起业务单元类型",
},
{
prop: "sfqy",
label: "是否启用",
},
{
prop: "czsj",
label: "最近操作时间"
},
{
prop: "czr",
label: "最近操作人"
},
{
label: '操作',
width: '150',
align: 'center',
fixed: 'right',
render: (h, scope) => {
return (
<div>
<el-button type="text" icon="el-icon-edit-outline" onClick={() => { vm.editClick (scope) }}>修改</el-button>
</div>
)
}
}
]
}
ywlys () {
return [
{ value: 1, label: "办事大厅" },
{ value: 2, label: "微信小程序" },
{ value: 3, label: "法院端" },
{ value: 4, label: "银行端" },
]
}
}
let datas = new data()
export {
datas,
sendThis
}