Commit 53be0daa authored by TZW's avatar TZW

bug

parent 5a96565d
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: Li Hanlin * @Author: Li Hanlin
* @Date: 2022-11-29 14:03:07 * @Date: 2022-11-29 14:03:07
* @Last Modified by: Li Hanlin * @Last Modified by: Li Hanlin
* @Last Modified time: 2022-12-12 15:00:10 * @Last Modified time: 2022-12-12 15:08:23
*/ */
import { doFetch } from '@/utils/doFetch'; import { doFetch } from '@/utils/doFetch';
...@@ -42,6 +42,10 @@ const App = ({ ...@@ -42,6 +42,10 @@ const App = ({
case 4: case 4:
return { return {
valueType: 'select', valueType: 'select',
fieldProps: {
placeholder: '请选择',
mode: 'multiple',
},
options, options,
}; };
default: default:
......
...@@ -69,6 +69,7 @@ function getcolumns(setdrawer) { ...@@ -69,6 +69,7 @@ function getcolumns(setdrawer) {
title: '地址', title: '地址',
dataIndex: 'address', dataIndex: 'address',
key: 'address', key: 'address',
search: false,
width: 320, width: 320,
formItemProps: { formItemProps: {
rules: [ rules: [
...@@ -83,6 +84,7 @@ function getcolumns(setdrawer) { ...@@ -83,6 +84,7 @@ function getcolumns(setdrawer) {
title: '状态', title: '状态',
dataIndex: 'status', dataIndex: 'status',
key: 'status', key: 'status',
search: false,
valueType: 'radio', valueType: 'radio',
formItemProps: { formItemProps: {
rules: [ rules: [
...@@ -148,6 +150,7 @@ function getcolumns(setdrawer) { ...@@ -148,6 +150,7 @@ function getcolumns(setdrawer) {
title: '备注', title: '备注',
dataIndex: 'remark', dataIndex: 'remark',
key: 'remark', key: 'remark',
search: false,
valueType: 'textarea', valueType: 'textarea',
width: 300, width: 300,
fieldProps: { fieldProps: {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment