Commit 3fa94ff2 by 齐伟伦

关闭官网代码

修改实收数量应收数量不显示的问题
新增捆号字段
parent f893bed0
...@@ -44,7 +44,7 @@ VITE_GLOB_API_URL_PREFIX = ...@@ -44,7 +44,7 @@ VITE_GLOB_API_URL_PREFIX =
VITE_USE_PWA = false VITE_USE_PWA = false
# 是否启用官网代码 # 是否启用官网代码
VITE_GLOB_PRODUCTION = true VITE_GLOB_PRODUCTION = false
# 帆软服务地址 # 帆软服务地址
VITE_GLOB_FINE_REPORT_URL = http://127.0.0.1:8075 VITE_GLOB_FINE_REPORT_URL = http://127.0.0.1:8075
...@@ -44,7 +44,7 @@ VITE_GLOB_API_URL_PREFIX = ...@@ -44,7 +44,7 @@ VITE_GLOB_API_URL_PREFIX =
VITE_USE_PWA = false VITE_USE_PWA = false
# 是否启用官网代码 # 是否启用官网代码
VITE_GLOB_PRODUCTION = true VITE_GLOB_PRODUCTION = false
# 帆软服务地址 # 帆软服务地址
VITE_GLOB_FINE_REPORT_URL = http://127.0.0.1:8075 VITE_GLOB_FINE_REPORT_URL = http://127.0.0.1:8075
...@@ -1200,7 +1200,7 @@ export const formProps: FormProps = { ...@@ -1200,7 +1200,7 @@ export const formProps: FormProps = {
key: '36635cbf40d14baf96358f8fa129ce0f', key: '36635cbf40d14baf96358f8fa129ce0f',
title: '实收数量', title: '实收数量',
dataIndex: 'sssl', dataIndex: 'sssl',
componentType: 'Computation', componentType: 'Input',
defaultValue: 0, defaultValue: 0,
componentProps: { componentProps: {
span: '', span: '',
...@@ -1229,7 +1229,7 @@ export const formProps: FormProps = { ...@@ -1229,7 +1229,7 @@ export const formProps: FormProps = {
key: '5e4377f941cd450ba40bbc1f9d26ff27', key: '5e4377f941cd450ba40bbc1f9d26ff27',
title: '应收数量', title: '应收数量',
dataIndex: 'yssl', dataIndex: 'yssl',
componentType: 'Computation', componentType: 'Input',
defaultValue: 0, defaultValue: 0,
componentProps: { componentProps: {
span: '', span: '',
...@@ -1614,7 +1614,7 @@ export const formButtons = [ ...@@ -1614,7 +1614,7 @@ export const formButtons = [
index: 2, index: 2,
type: 1, type: 1,
}, },
{ /* {
key: 'cancel', key: 'cancel',
code: 'cancel', code: 'cancel',
name: '取消', name: '取消',
...@@ -1623,7 +1623,7 @@ export const formButtons = [ ...@@ -1623,7 +1623,7 @@ export const formButtons = [
isShow: true, isShow: true,
index: 1, index: 1,
type: 1, type: 1,
}, },*/
{ {
key: 'reset', key: 'reset',
code: 'reset', code: 'reset',
......
...@@ -112,6 +112,19 @@ export const columns: BasicColumn[] = [ ...@@ -112,6 +112,19 @@ export const columns: BasicColumn[] = [
{ {
resizable: true, resizable: true,
dataIndex: 'kh',
title: '捆号',
componentType: 'input',
fixed: false,
sorter: true,
styleConfig: undefined,
listStyle: '',
},
{
resizable: true,
dataIndex: 'bgsl', dataIndex: 'bgsl',
title: '报工数量', title: '报工数量',
componentType: 'number', componentType: 'number',
......
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