|
@@ -53,6 +53,13 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-form-item label="filterResource">
|
|
|
+ <el-input v-model="formData.filterResource" placeholder="多个以英文逗号隔开"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
</el-form>
|
|
|
|
|
|
<el-tabs v-model="activeName" class="demo-tabs">
|
|
@@ -315,6 +322,8 @@ const formData = ref({
|
|
|
// 爬虫状态
|
|
|
state: 0,
|
|
|
|
|
|
+ filterResource: '',
|
|
|
+
|
|
|
// list-css-tab
|
|
|
listBodyCss: '',
|
|
|
listItemCss: '',
|
|
@@ -556,6 +565,7 @@ const getPageData = () => {
|
|
|
contentJs: formDataValue.contentJs || '',
|
|
|
|
|
|
initList,
|
|
|
+ filterResource: formDataValue.filterResource || '',
|
|
|
|
|
|
maxPages: Number(formDataValue.maxPages || defaultFormValue.maxPages)
|
|
|
}
|