diff --git a/jeecgboot-vue3-master/src/views/annualCompPoint/committee/components/AnnualCompPointForm.vue b/jeecgboot-vue3-master/src/views/annualCompPoint/committee/components/AnnualCompPointForm.vue index 07fb9419..58a8e3bd 100644 --- a/jeecgboot-vue3-master/src/views/annualCompPoint/committee/components/AnnualCompPointForm.vue +++ b/jeecgboot-vue3-master/src/views/annualCompPoint/committee/components/AnnualCompPointForm.vue @@ -90,7 +90,7 @@ - 设置 + 队伍比值配置 @@ -101,9 +101,7 @@ - - - + @@ -341,10 +340,12 @@ import {Form} from 'ant-design-vue'; import { JVxeTable } from '/@/components/jeecg/JVxeTable'; import { JVxeTypes, JVxeColumn} from '/@/components/jeecg/JVxeTable/types'; const dataSource = ref([]) -const columns = ref([ +// 列配置,控制表格显示的列 +const columns = ref([ + // { key: 'num', title: '序号', width: 80, type: JVxeTypes.normal }, { - title: '单行文本', - key: 'input', + title: '比值', + key: 'raito', type: JVxeTypes.input, width: 180, defaultValue: '', @@ -354,14 +355,14 @@ const columns = ref([ required: true, // 必填 message: '请输入${title}', // 显示的文本 }, - { - pattern: /^[a-z|A-Z][a-z|A-Z\d_-]*$/, // 正则 - message: '必须以字母开头,可包含数字、下划线、横杠', - }, - { - unique: true, - message: '${title}不能重复', - }, + // { + // pattern: /^[a-z|A-Z][a-z|A-Z\d_-]*$/, // 正则 + // message: '必须以字母开头,可包含数字、下划线、横杠', + // }, + // { + // unique: true, + // message: '${title}不能重复', + // }, { handler({ cellValue, row, column }, callback, target) { // cellValue 当前校验的值 @@ -422,7 +423,7 @@ const props = defineProps({ const [register, { openModal }] = useModal(); // const [register, { closeModal, setModalProps,openModal }] = useModalInner(); const showModel = () => { - console.log(1111) + // console.log(1111) openModal() } diff --git a/jeecgboot-vue3-master/src/views/demo/jeecg/JVxeTableDemo/func-demo/JSBCDemo.vue b/jeecgboot-vue3-master/src/views/demo/jeecg/JVxeTableDemo/func-demo/JSBCDemo.vue index b44d4efe..2b421f6d 100644 --- a/jeecgboot-vue3-master/src/views/demo/jeecg/JVxeTableDemo/func-demo/JSBCDemo.vue +++ b/jeecgboot-vue3-master/src/views/demo/jeecg/JVxeTableDemo/func-demo/JSBCDemo.vue @@ -59,7 +59,7 @@ const dataSource = ref([]); // 列配置,控制表格显示的列 const columns = ref([ - { key: 'num', title: '序号', width: 80, type: JVxeTypes.normal }, + { key: 'num', title: '序号22', width: 80, type: JVxeTypes.normal }, { // 字段key,跟后台数据的字段名匹配 key: 'ship_name',