|
@@ -100,7 +100,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="j-footer" v-show="listShow">
|
|
|
+ <div class="j-footer" :class="{ free: vSwitch === 'f' }" v-show="listShow">
|
|
|
<van-notice-bar
|
|
|
class="footer-tip center"
|
|
|
color="#2abed1"
|
|
@@ -110,16 +110,17 @@
|
|
|
任意1组关键词组匹配成功即推送相关信息
|
|
|
</van-notice-bar>
|
|
|
<div class="j-button-group" v-if="batchDeleteState">
|
|
|
- <button class="j-button-confirm" @click="batchDelete" :disabled="this.selectedCount <= 0">
|
|
|
+ <button class="j-button-confirm" :class="{ 'white-bg': vSwitch === 'f' }" @click="batchDelete" :disabled="this.selectedCount <= 0">
|
|
|
<span class="info-text">删除</span>
|
|
|
<span class="sub-text">(已选中${ selectedCount }项)</span>
|
|
|
</button>
|
|
|
</div>
|
|
|
<div class="j-button-group" v-else>
|
|
|
- <button class="j-button-confirm" @click="clickAddKeyWordButton" :disabled="fullKeys && vSwitch !== 'f'">
|
|
|
+ <button class="j-button-confirm white-bg" @click="clickAddKeyWordButton" :disabled="fullKeys && vSwitch !== 'f'">
|
|
|
<span class="info-text">${ addNewKeyButtonText }</span>
|
|
|
<span class="sub-text">(${ totalKeywordsCount } / ${ conf.keywordMax })</span>
|
|
|
</button>
|
|
|
+ <button v-if="vSwitch === 'f'" class="j-button-confirm" @click="completeToEdit">完成</button>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|