This commit is contained in:
wangshiming
2022-04-22 10:23:21 +08:00
parent b30258718f
commit 08f1f7b527
2 changed files with 5 additions and 2 deletions

View File

@ -4,7 +4,7 @@
* @Author : Shiming * @Author : Shiming
* @Date : 2022-01-18 09:51:21 * @Date : 2022-01-18 09:51:21
* @LastEditors : Shiming * @LastEditors : Shiming
* @LastEditTime : 2022-04-20 14:18:40 * @LastEditTime : 2022-04-22 10:05:01
* @FilePath : \\tms-obc-web\\proxy.conf.js * @FilePath : \\tms-obc-web\\proxy.conf.js
* Copyright (C) 2022 huzhenhong. All rights reserved. * Copyright (C) 2022 huzhenhong. All rights reserved.
*/ */
@ -30,7 +30,7 @@ module.exports = {
// }, // },
'//api': { '//api': {
target: { target: {
host: 'tms-api-test.eascs.com', host: 'tms-api-dev.eascs.com',
protocol: 'https:', protocol: 'https:',
port: 443 port: 443
}, },

View File

@ -463,15 +463,18 @@ export class PartnerListComponent {
}, },
{ {
text: '修改返佣模板', text: '修改返佣模板',
iif: item => item.id,
click: item => this.editTemplateAction(item) click: item => this.editTemplateAction(item)
}, },
{ {
text: '修改渠道销售', text: '修改渠道销售',
iif: item => item.id,
click: item => this.editCannelAction(item) click: item => this.editCannelAction(item)
}, },
{ {
text: '重发CRM流程', text: '重发CRM流程',
click: item => item.id && this.reSendCRM(item), click: item => item.id && this.reSendCRM(item),
iif: item => item.crmStatus === 10
} }
] ]
} }