|
@@ -138,7 +138,7 @@ const header = props => {
|
138
|
138
|
render: (x, row) => (
|
139
|
139
|
<>
|
140
|
140
|
<AuthButton name="admin.SignList.get" noRight={null}>
|
141
|
|
- {(row.activityStatus === 0 || row.activityStatus === 2) && <span style={{ color: '#1990FF',marginRight: '20px', cursor: 'pointer' }} onClick={getSignList.bind(this, row.dynamicId)}>{row.isEnlist == '1' ? '报名记录' : ''}{ (row.isEnlist==1) && <Icon type="snippets" className={styles.shoppingCart} />}</span>}
|
|
141
|
+ {(row.activityStatus === 0 || row.activityStatus === 2) && <span style={{ color: '#1990FF',marginRight: '20px', cursor: 'pointer' }} onClick={getSignList.bind(this, row.dynamicId)}>报名记录{<Icon type="snippets" className={styles.shoppingCart} />}</span>}
|
142
|
142
|
</AuthButton>
|
143
|
143
|
<AuthButton name="admin.buildingDynamic.send.dynamicId.put" noRight={null}>
|
144
|
144
|
<span style={{ color: '#1990FF',marginRight: '20px', cursor: 'pointer' }} onClick={sendOrPublicDynamic.bind(this, row)}>{row.status === 1 ? '取消发布' : '发布'}<Icon type="close-circle" className={styles.edit} /></span>
|
|
@@ -150,7 +150,7 @@ const header = props => {
|
150
|
150
|
<span style={{ color: '#1990FF', marginRight: '20px', cursor: 'pointer' }} onClick={topDynamic(row)}>{row.weight === 1 ? '取消标签' : '添加标签'}<Icon type="vertical-align-top" className={styles.edit} /></span>
|
151
|
151
|
{(row.activityStatus === 0 || row.activityStatus === 1) && <span style={{ color: '#FF925C',marginRight: '20px', cursor: 'pointer' }} onClick={toEditGoods(row.dynamicId)}>编辑<Icon type="form" className={styles.edit} /></span>}
|
152
|
152
|
</AuthButton>
|
153
|
|
- {(row.activityStatus === 0 || row.activityStatus === 2) &&<span style={{ color: '#1990FF', marginRight: '20px', cursor: 'pointer' }} onClick={newQrcode.bind(this, row)}>{row.isEnlist === 1 && '下载二维码'} {row.isEnlist === 1 && <Icon type="qrcode" className={styles.shoppingCart} />}</span>}
|
|
153
|
+ {(row.activityStatus === 0 || row.activityStatus === 2) &&<span style={{ color: '#1990FF', marginRight: '20px', cursor: 'pointer' }} onClick={newQrcode.bind(this, row)}>{'下载二维码'} {<Icon type="qrcode" className={styles.shoppingCart} />}</span>}
|
154
|
154
|
</>
|
155
|
155
|
),
|
156
|
156
|
},
|
|
@@ -166,7 +166,7 @@ const header = props => {
|
166
|
166
|
|
167
|
167
|
const finishDynamic = row => {
|
168
|
168
|
Modal.confirm({
|
169
|
|
- title: '活动会被强制结束,小程序端无法再发起或参与此拼团,如果不想让客户看到活动,请再点击取消发布按钮',
|
|
169
|
+ title: '活动会被强制结束,小程序端无法再发起或参与此活动,如果不想让客户看到活动,请再点击取消发布按钮',
|
170
|
170
|
okText: '确定',
|
171
|
171
|
cancelText: '取消',
|
172
|
172
|
onOk () {
|