| | |
| | | /* |
| | | * @Description: file content |
| | | * @Description: 打印模板方法数据相关 |
| | | * @Author: Ben Lin |
| | | * @version: |
| | | * @Date: 2024-06-13 16:18:39 |
| | | * @LastEditors: your name |
| | | * @LastEditTime: 2024-06-13 22:47:11 |
| | | * @LastEditTime: 2024-06-17 11:27:09 |
| | | */ |
| | | import { h, unref } from "vue"; |
| | | import { ActionItem, BasicColumn, FormSchema } from "/@/components/Table"; |
| | |
| | | |
| | | export const secondColumns: BasicColumn[] = []; |
| | | |
| | | let isShow = true; |
| | | let isShow = false; |
| | | export const firstFormSchemas: FormSchema[] = [ |
| | | { |
| | | field: 'ID', |
| | |
| | | }, |
| | | }, |
| | | { |
| | | field:"BAS_LABEL_PV1PSelect_0", |
| | | field:"BAS_LABEL_PV1PSelect_0", //按低代码配置的规则,实体名+序号+PSelect_0,序号用来区分多个的时候,PSelect_0这是个固定后缀 |
| | | label:"1", |
| | | defaultValue:"BAS_LABEL_PV", |
| | | component:"Input", |
| | | colProps:{"span":4}, |
| | | ifShow: ({ values }) => isShow, |
| | | colSlot:"BAS_LABEL_PV1add" |
| | | colSlot:"BAS_LABEL_PV1add" //按低代码配置的规则,实体名+序号+add,序号用来区分多个的时候,add这是个固定后缀 |
| | | }, |
| | | { |
| | | field: 'REMARK', |
| | |
| | | secondTabName:'', //'标签过程变量', |
| | | firstTitle: '模板变量', |
| | | secondTitle: '', //'过程变量', |
| | | pageTitle: '标签模板变量', //详情页面标题 |
| | | contentStr: '这里是标签模板变量管理页面,可以管理标签的模板变量或者打印过程中的变量', |
| | | detailName: `模板[${record.LABEL_NAME}]`, |
| | | others: { LABEL_ID: record.ID }, |
| | |
| | | ], |
| | | tableName: 'BAS_LABEL_PV', |
| | | rowKey: 'VAR_CODE', |
| | | searchInfo: {TABLE_NAME: 'BAS_LABEL_PV'} |
| | | }); |
| | | } |
| | | |