|
@@ -206,7 +206,7 @@
|
|
|
class="common-input-long"
|
|
|
v-model="configForm.creativeWebUrl"
|
|
|
placeholder="请输入应用下载详情页"
|
|
|
- disabled
|
|
|
+ :disabled="modalTitle === 'edit'"
|
|
|
/>
|
|
|
<span style="margin-left: 10px;"><a :disabled="modalTitle === 'edit'" @click="handleHaveWebUrl">使用已有</a></span>
|
|
|
</a-form-model-item>
|
|
@@ -970,12 +970,13 @@
|
|
|
<a-input v-model="weburlModel" placeholder="请输入落地页名称关键字"/>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
- <a-col :span="4">
|
|
|
+ <a-col :span="8">
|
|
|
<a-button type="primary" style="position: relative;top: 4px;" @click="handleWebUrlSearch">搜索</a-button>
|
|
|
+ <a-button type="primary" style="position: relative;top: 4px;margin-left: 15px;" @click="handleWebUrlUpdate">重置</a-button>
|
|
|
</a-col>
|
|
|
</a-row>
|
|
|
<div class="viedo-content-class">
|
|
|
- <div class="viedo-content-group">
|
|
|
+ <div v-if="viedoDefaultList.length" class="viedo-content-group">
|
|
|
<li
|
|
|
class="content-modal-li"
|
|
|
v-for="(item, index) in viedoDefaultList"
|
|
@@ -988,6 +989,9 @@
|
|
|
<div class="checkbox-select-time">ID:{{ item.siteId }}</div>
|
|
|
</li>
|
|
|
</div>
|
|
|
+ <div v-else class="no-data-group">
|
|
|
+ 暂无数据
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</a-modal>
|
|
@@ -1681,6 +1685,7 @@ export default {
|
|
|
handleViedoListClick(data) {
|
|
|
this.landingPageShowData = data;
|
|
|
this.configForm.creativeWebUrl = data.creativeWebUrl;
|
|
|
+ this.weburlModel = '';
|
|
|
this.isWebUrl = false;
|
|
|
},
|
|
|
handleWebUrlSearch() {
|
|
@@ -1692,8 +1697,12 @@ export default {
|
|
|
});
|
|
|
this.viedoDefaultList = defaultList;
|
|
|
},
|
|
|
+ handleWebUrlUpdate() {
|
|
|
+ this.viedoDefaultList = [...this.viedoDefaultListUpdate];
|
|
|
+ this.weburlModel = '';
|
|
|
+ },
|
|
|
handleCancelAll() {
|
|
|
- console.log('素材取消按钮');
|
|
|
+ this.handleWebUrlUpdate();
|
|
|
this.isWebUrl = false;
|
|
|
},
|
|
|
handleHaveWebUrl() {
|