Merge branch 'addMenu-v1.4' of https://codeup.aliyun.com/5f9118049cffa29cfdd3be1c/marketing/frontend into addMenu-v1.4
This commit is contained in:
commit
b756ef8075
|
@ -1142,7 +1142,7 @@ export default class addKnockGold extends Component {
|
|||
this.onHandleChange([], 'fixed_time')
|
||||
this.onHandleChange([[]], 'irregularDate')
|
||||
this.onHandleChange([[]], 'irregularTime')
|
||||
this.onHandleChange([[]], 'ruleWeek')
|
||||
this.onHandleChange([], 'ruleWeek')
|
||||
this.onHandleChange([[]], 'ruleDate')
|
||||
}}>
|
||||
<Radio value='received'>领取后</Radio>
|
||||
|
@ -1193,7 +1193,7 @@ export default class addKnockGold extends Component {
|
|||
this.onHandleChange('', 'effect_date')
|
||||
this.onHandleChange([[]], 'irregularDate')
|
||||
this.onHandleChange([[]], 'irregularTime')
|
||||
this.onHandleChange([[]], 'ruleWeek')
|
||||
this.onHandleChange([], 'ruleWeek')
|
||||
this.onHandleChange([[]], 'ruleDate')
|
||||
}}>
|
||||
<Radio value='fiexd'>固定时间</Radio>
|
||||
|
@ -1286,7 +1286,7 @@ export default class addKnockGold extends Component {
|
|||
this.onHandleChange('', 'effect_date_type')
|
||||
this.onHandleChange('', 'effect_date')
|
||||
this.onHandleChange([[]], 'fixed_time')
|
||||
this.onHandleChange([[]], 'ruleWeek')
|
||||
this.onHandleChange([], 'ruleWeek')
|
||||
this.onHandleChange([[]], 'ruleDate')
|
||||
}}>
|
||||
<Radio value='irregular'>有效期内,不规则日期可用</Radio>
|
||||
|
|
|
@ -168,7 +168,6 @@ export default class acclist extends React.Component {
|
|||
})
|
||||
})
|
||||
})
|
||||
|
||||
let model = {
|
||||
title: req.plan_title,
|
||||
style: req.style,
|
||||
|
@ -177,7 +176,7 @@ export default class acclist extends React.Component {
|
|||
allow_loss: req.allow_loss,
|
||||
merge_stock: req.merge_stock,
|
||||
code_batch: req.code_batch,
|
||||
batch_name: `${req.batch_name}_${req.copyCount}`,
|
||||
batch_name: `${req.batch_name}_${++req.copy_count}`,
|
||||
copy_code_batch_id: req.id
|
||||
}
|
||||
let codeInfo = {
|
||||
|
|
|
@ -186,10 +186,14 @@ export default class acclist extends React.Component {
|
|||
}
|
||||
|
||||
/* 处理可复制数据逻辑 */
|
||||
copyElementFunction({ key_batch_id, status, end_time, discard }) {
|
||||
copyElementFunction({ key_batch_id, status, end_time, keyBatch }) {
|
||||
const today = moment().format('yyyy-MM-DD HH:mm:ss')
|
||||
let element = ''
|
||||
if (![-1, 6, 7].includes(status) && end_time > today && discard === 0) {
|
||||
if (
|
||||
![-1, 6, 7].includes(status) &&
|
||||
end_time > today &&
|
||||
keyBatch.discard === 0
|
||||
) {
|
||||
element = (
|
||||
<span
|
||||
className='grid-link'
|
||||
|
|
Loading…
Reference in New Issue