|
@@ -194,15 +194,19 @@
|
194
|
194
|
<el-popconfirm @confirm="remindClick(scope.row.rule_id)" :title="'猎羽将提醒未发送朋友圈的'+scope.row.unpublished_count+'名员工发朋友圈,是否确认提醒 ?'">
|
195
|
195
|
<div slot="reference" v-if="scope.row.status==1||scope.row.status==2||scope.row.status==3" class="c-00B38A pointer table_button lMar5">提醒</div>
|
196
|
196
|
</el-popconfirm>
|
|
197
|
+
|
197
|
198
|
<div :class="['pointer','table_button','lMar5',scope.row.enable == 1 ? 'c-FF604D' :'c-007AFF']" v-if="scope.row.status == 1" @click="enableForbidden(scope.row)">
|
198
|
199
|
{{scope.row.enable == 1 ? '禁用' : scope.row.enable == 0 ? '启用':''}}
|
199
|
200
|
</div>
|
|
201
|
+
|
200
|
202
|
<div class="c-00B38A pointer table_button lMar5" @click="scope.row.status == 1 ? createFriCircle('edit',scope.row.rule_id) : goDetail(scope.row.rule_id)">详情</div>
|
|
203
|
+
|
201
|
204
|
<el-popconfirm @confirm="copyDetail(scope.row)" :title="`确定复制【${scope.row.name}】朋友圈?`">
|
202
|
205
|
<div slot="reference" class="lMar5 c-00B38A pointer table_button">复制</div>
|
203
|
206
|
</el-popconfirm>
|
204
|
207
|
|
205
|
|
- <div v-if="scope.row.status == 4" class="pointer table_button c-FF604D lMar5" @click="onClickCancelSend(scope.row)">
|
|
208
|
+ <!-- 待客服确认状态的规则 支持停止群发 -->
|
|
209
|
+ <div v-if="scope.row.status == 3" class="pointer table_button c-FF604D lMar5" @click="onClickCancelSend(scope.row)">
|
206
|
210
|
停止群发
|
207
|
211
|
</div>
|
208
|
212
|
</div>
|