|
@@ -8,7 +8,7 @@
|
|
|
:inline="true"
|
|
:inline="true"
|
|
|
label-width="68px"
|
|
label-width="68px"
|
|
|
>
|
|
>
|
|
|
- <el-form-item label="表单ID" prop="tbId">
|
|
|
|
|
|
|
+ <el-form-item label="表单ID" prop="tbId" v-if="queryParams.tbId">
|
|
|
<el-input
|
|
<el-input
|
|
|
v-model="queryParams.tbId"
|
|
v-model="queryParams.tbId"
|
|
|
placeholder="请输入表单ID"
|
|
placeholder="请输入表单ID"
|
|
@@ -123,7 +123,7 @@
|
|
|
<!-- 列表 -->
|
|
<!-- 列表 -->
|
|
|
<ContentWrap>
|
|
<ContentWrap>
|
|
|
<el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true" :border="true">
|
|
<el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true" :border="true">
|
|
|
- <el-table-column label="表单ID" align="center" prop="tbId" />
|
|
|
|
|
|
|
+<!-- <el-table-column label="表单ID" align="center" prop="tbId" />-->
|
|
|
<el-table-column label="字段名称" align="center" prop="colName" />
|
|
<el-table-column label="字段名称" align="center" prop="colName" />
|
|
|
<el-table-column label="字段范围" align="center" prop="colRound">
|
|
<el-table-column label="字段范围" align="center" prop="colRound">
|
|
|
<template #default="scope">
|
|
<template #default="scope">
|
|
@@ -289,7 +289,7 @@ const queryParams = reactive({
|
|
|
pageSize: 10,
|
|
pageSize: 10,
|
|
|
tbId: undefined,
|
|
tbId: undefined,
|
|
|
colName: undefined,
|
|
colName: undefined,
|
|
|
- colRound: undefined,
|
|
|
|
|
|
|
+ colRound: 3,
|
|
|
colCode: undefined,
|
|
colCode: undefined,
|
|
|
colValType: undefined,
|
|
colValType: undefined,
|
|
|
isEdit: true,
|
|
isEdit: true,
|
|
@@ -363,7 +363,7 @@ const batchDialogVisible = ref(false)
|
|
|
const batchForm = reactive({
|
|
const batchForm = reactive({
|
|
|
tbId: queryParams.tbId,
|
|
tbId: queryParams.tbId,
|
|
|
colName: '',
|
|
colName: '',
|
|
|
- colRound: 1,
|
|
|
|
|
|
|
+ colRound: 3,
|
|
|
colCode: '',
|
|
colCode: '',
|
|
|
colValType: 1,
|
|
colValType: 1,
|
|
|
isEdit: true,
|
|
isEdit: true,
|