Commit 6159e26f authored by Bill's avatar Bill

Merge branch 'dev' into test

parents 745f864e d04b5fba
...@@ -209,7 +209,6 @@ const viewProducts: React.FC<{}> = () => { ...@@ -209,7 +209,6 @@ const viewProducts: React.FC<{}> = () => {
} }
/* 品类类型&商品类型 */ /* 品类类型&商品类型 */
//1-实物商品、2-虚拟商品、3-服务商品
const renderCustomerCategoryType = (type: number) => { const renderCustomerCategoryType = (type: number) => {
if(type === 1 ) return '实物商品' if(type === 1 ) return '实物商品'
if(type === 2 ) return '虚拟商品' if(type === 2 ) return '虚拟商品'
......
...@@ -199,7 +199,6 @@ const viewProducts: React.FC<{}> = () => { ...@@ -199,7 +199,6 @@ const viewProducts: React.FC<{}> = () => {
} }
/* 品类类型&商品类型 */ /* 品类类型&商品类型 */
//1-实物商品、2-虚拟商品、3-服务商品
const renderCustomerCategoryType = (type: number) => { const renderCustomerCategoryType = (type: number) => {
if(type === 1 ) return '实物商品' if(type === 1 ) return '实物商品'
if(type === 2 ) return '虚拟商品' if(type === 2 ) return '虚拟商品'
......
...@@ -217,7 +217,7 @@ const RuleSetting:React.FC<RuleSettingProps> = (props) => { ...@@ -217,7 +217,7 @@ const RuleSetting:React.FC<RuleSettingProps> = (props) => {
// 会员弹框筛选select值 // 会员弹框筛选select值
const fetchSelectOptions = async () => { const fetchSelectOptions = async () => {
const res = await PublicApi.getMemberManagePageitems() const res = await PublicApi.getMemberManagePageitems({roleTypeEnum: '1'})
if (res.code === 1000) { if (res.code === 1000) {
const { data = {} }: any = res const { data = {} }: any = res
const { const {
......
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