biz9-logic 4.8.302 → 4.8.304
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/biz9_config +1 -1
- package/index.js +0 -12
- package/package.json +1 -1
package/biz9_config
CHANGED
package/index.js
CHANGED
|
@@ -1910,48 +1910,36 @@ static get_process_list = (upload_dir,image_filename) =>{
|
|
|
1910
1910
|
path_filename:upload_dir+"/"+FieldType.IMAGE_SIZE_THUMB+"_"+image_filename,
|
|
1911
1911
|
size:250,
|
|
1912
1912
|
is_square:false,
|
|
1913
|
-
post_file:false,
|
|
1914
|
-
post_cdn:false
|
|
1915
1913
|
},
|
|
1916
1914
|
{
|
|
1917
1915
|
image_filename:FieldType.IMAGE_SIZE_MID+"_"+image_filename,
|
|
1918
1916
|
path_filename:upload_dir+"/"+FieldType.IMAGE_SIZE_MID+"_"+image_filename,
|
|
1919
1917
|
size:720,
|
|
1920
1918
|
is_square:false,
|
|
1921
|
-
post_file:false,
|
|
1922
|
-
post_cdn:false
|
|
1923
1919
|
},
|
|
1924
1920
|
{
|
|
1925
1921
|
image_filename:FieldType.IMAGE_SIZE_LARGE+"_"+image_filename,
|
|
1926
1922
|
path_filename:upload_dir+"/"+FieldType.IMAGE_SIZE_LARGE+"_"+image_filename,
|
|
1927
1923
|
size:1000,
|
|
1928
1924
|
is_square:false,
|
|
1929
|
-
post_file:false,
|
|
1930
|
-
post_cdn:false
|
|
1931
1925
|
},
|
|
1932
1926
|
{
|
|
1933
1927
|
image_filename:FieldType.IMAGE_SIZE_SQUARE_THUMB+"_"+image_filename,
|
|
1934
1928
|
path_filename:upload_dir+"/"+FieldType.IMAGE_SIZE_SQUARE_THUMB+"_"+image_filename,
|
|
1935
1929
|
size:250,
|
|
1936
1930
|
is_square:true,
|
|
1937
|
-
post_file:false,
|
|
1938
|
-
post_cdn:false
|
|
1939
1931
|
},
|
|
1940
1932
|
{
|
|
1941
1933
|
image_filename:FieldType.IMAGE_SIZE_SQUARE_MID+"_"+image_filename,
|
|
1942
1934
|
path_filename:upload_dir+"/"+FieldType.IMAGE_SIZE_SQUARE_MID+"_"+image_filename,
|
|
1943
1935
|
size:720,
|
|
1944
1936
|
is_square:true,
|
|
1945
|
-
post_file:false,
|
|
1946
|
-
post_cdn:false
|
|
1947
1937
|
},
|
|
1948
1938
|
{
|
|
1949
1939
|
image_filename:FieldType.IMAGE_SIZE_SQUARE_LARGE+"_"+image_filename,
|
|
1950
1940
|
path_filename:upload_dir+"/"+FieldType.IMAGE_SIZE_SQUARE_LARGE+"_"+image_filename,
|
|
1951
1941
|
size:1000,
|
|
1952
1942
|
is_square:true,
|
|
1953
|
-
post_file:false,
|
|
1954
|
-
post_cdn:false
|
|
1955
1943
|
},
|
|
1956
1944
|
];
|
|
1957
1945
|
}
|