Skip to content

Commit

Permalink
update js and css fileter
Browse files Browse the repository at this point in the history
  • Loading branch information
Sjj1024 committed Nov 10, 2024
1 parent 85e06aa commit a5e2c9c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/lang/zh_cn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default {
englishName: '请输入纯英文项目名称',
preEnvironment: '准备环境...',
back: '返回',
configProject: '配置项目',
configProject: '项目配置',
configProjectTips:
'配置当前项目网站地址、APP显示名称、英文名称、APP标识等。',
relHistore: '发布历史',
Expand Down
6 changes: 4 additions & 2 deletions src/pages/edit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@
<el-form-item label="脚本文件" prop="icon" class="formItem">
<el-input
:value="iconFileName"
readonly
@click="uploadIcon"
class="iconInput"
:placeholder="`${t('onlyPng')}`"
Expand Down Expand Up @@ -175,13 +174,14 @@
</el-form-item>
<el-form-item label="过滤元素" prop="desc">
<el-input
v-model="appForm.filterCss"
type="textarea"
autocomplete="off"
autoCapitalize="off"
autoCorrect="off"
spellCheck="false"
:rows="3"
:placeholder="t('desTips')"
placeholder="请输入xpath选择器,以英文分号分割"
/>
</el-form-item>
<el-form-item :label="t('appDes')" prop="desc">
Expand Down Expand Up @@ -296,10 +296,12 @@ const appForm = reactive({
showName: store.currentProject.showName,
appid: store.currentProject.appid,
icon: store.currentProject.icon,
jsFile: '',
version: store.currentProject.version,
platform: store.currentProject.platform || 'desktop',
width: store.currentProject.width || 800,
height: store.currentProject.height || 600,
filterCss: '',
desc: store.currentProject.desc,
})
const iconFileName = ref('')
Expand Down

0 comments on commit a5e2c9c

Please sign in to comment.