移除 max 9999 限制

This commit is contained in:
z9130 2024-10-08 11:27:25 +08:00
parent 4ffd6dfb64
commit 0ed2928c19
11 changed files with 5 additions and 18 deletions

View File

@ -144,7 +144,6 @@ export function getFormSchema(params: any = {}) {
vModel: 'value', vModel: 'value',
class: 'w-full', class: 'w-full',
min: 0, min: 0,
max: 9999,
disabled: readOnly, disabled: readOnly,
}, },
}, },

View File

@ -92,7 +92,6 @@ export function getFormSchema(params: any = {}) {
vModel: 'value', vModel: 'value',
class: 'w-full', class: 'w-full',
min: 0, min: 0,
max: 9999,
}, },
}, },
priceType: { priceType: {

View File

@ -108,7 +108,6 @@ export function getFormSchema(params: any = {}) {
vModel: 'value', vModel: 'value',
class: 'w-full', class: 'w-full',
min: 0, min: 0,
max: 9999,
}, },
}, },
priceType: { priceType: {

View File

@ -98,7 +98,6 @@ export function getFormSchema(params: any = {}) {
vModel: 'value', vModel: 'value',
class: 'w-full', class: 'w-full',
min: 0, min: 0,
max: 9999,
disabled: true, disabled: true,
}, },
}, },

View File

@ -221,7 +221,6 @@ export function getFormSchema(params: any = {}): any {
vModel: 'value', vModel: 'value',
class: 'w-full', class: 'w-full',
min: 0, min: 0,
max: 9999,
}, },
conditionalRender: { conditionalRender: {
match({ form }) { match({ form }) {

View File

@ -236,7 +236,6 @@ export function getFormSchema(params: any = {}) {
vModel: 'value', vModel: 'value',
class: 'w-full', class: 'w-full',
min: 0, min: 0,
max: 9999,
}, },
conditionalRender: { conditionalRender: {
match({ form }) { match({ form }) {

View File

@ -249,7 +249,6 @@ export function getFormSchemaByBusiness(params: any = {}) {
vModel: 'value', vModel: 'value',
class: 'w-full', class: 'w-full',
min: 0, min: 0,
max: 9999,
}, },
conditionalRender: { conditionalRender: {
match({ form }) { match({ form }) {

View File

@ -95,7 +95,6 @@ const formBinding = ref({
name: 'a-input-number', name: 'a-input-number',
allowClear: true, allowClear: true,
min: 0, min: 0,
max: 9999,
}, },
}, },
status: { status: {

View File

@ -134,7 +134,6 @@ function openModal(type) {
name: 'a-input-number', name: 'a-input-number',
vModel: 'value', vModel: 'value',
min: 0, min: 0,
max: 9999,
addonAfter: '元', addonAfter: '元',
}, },
}, },
@ -152,7 +151,6 @@ function openModal(type) {
name: 'a-input-number', name: 'a-input-number',
vModel: 'value', vModel: 'value',
min: 0, min: 0,
max: 9999,
addonAfter: '元', addonAfter: '元',
}, },
}, },
@ -171,7 +169,6 @@ function openModal(type) {
name: 'a-input-number', name: 'a-input-number',
vModel: 'value', vModel: 'value',
min: 0, min: 0,
max: 9999,
addonAfter: '元', addonAfter: '元',
}, },
}, },
@ -189,7 +186,6 @@ function openModal(type) {
name: 'a-input-number', name: 'a-input-number',
vModel: 'value', vModel: 'value',
min: 0, min: 0,
max: 9999,
addonAfter: '元', addonAfter: '元',
}, },
}, },

View File

@ -95,7 +95,6 @@ const formBinding = ref({
name: 'a-input-number', name: 'a-input-number',
allowClear: true, allowClear: true,
min: 0, min: 0,
max: 9999,
}, },
}, },
status: { status: {

View File

@ -30,14 +30,14 @@ export default defineConfig(async () => {
changeOrigin: true, changeOrigin: true,
rewrite: (path) => path.replace(/^\/api\/app/, '/'), rewrite: (path) => path.replace(/^\/api\/app/, '/'),
// target: `http://10.71.220.24:8083/rl`, // target: `http://10.71.220.24:8083/rl`,
target: `http://192.168.147.164:8083/rl`, target: `http://192.168.148.88:8083/rl`,
ws: true, ws: true,
}, },
'/api/uc': { '/api/uc': {
changeOrigin: true, changeOrigin: true,
rewrite: (path) => path.replace(/^\/api\/uc/, '/'), rewrite: (path) => path.replace(/^\/api\/uc/, '/'),
// target: `http://10.71.220.24:8082`, // target: `http://10.71.220.24:8082`,
target: `http://192.168.147.164:8082`, target: `http://192.168.148.88:8082`,
ws: true, ws: true,
}, },
'/api/czg/app': { '/api/czg/app': {
@ -51,7 +51,7 @@ export default defineConfig(async () => {
changeOrigin: true, changeOrigin: true,
rewrite: (path) => path.replace(/^\/api\/czg\/uc/, '/'), rewrite: (path) => path.replace(/^\/api\/czg\/uc/, '/'),
// mock代理目标地址 // mock代理目标地址
target: `http://192.168.147.164:8082`, target: `http://192.168.148.88:8082`,
ws: true, ws: true,
}, },
'/api/zp/app': { '/api/zp/app': {
@ -65,7 +65,7 @@ export default defineConfig(async () => {
changeOrigin: true, changeOrigin: true,
rewrite: (path) => path.replace(/^\/api\/zp\/uc/, '/'), rewrite: (path) => path.replace(/^\/api\/zp\/uc/, '/'),
// mock代理目标地址 // mock代理目标地址
target: `http://192.168.147.164:8082`, target: `http://192.168.148.88:8082`,
ws: true, ws: true,
}, },
'/api/xmh/app': { '/api/xmh/app': {
@ -80,7 +80,7 @@ export default defineConfig(async () => {
changeOrigin: true, changeOrigin: true,
rewrite: (path) => path.replace(/^\/api\/xmh\/uc/, '/'), rewrite: (path) => path.replace(/^\/api\/xmh\/uc/, '/'),
// mock代理目标地址 // mock代理目标地址
target: `http://192.168.147.164:8082`, target: `http://192.168.148.88:8082`,
ws: true, ws: true,
}, },
}, },