Skip to content

Commit

Permalink
bug
Browse files Browse the repository at this point in the history
  • Loading branch information
star7th committed Oct 26, 2023
1 parent 3cdf156 commit 994aacd
Show file tree
Hide file tree
Showing 14 changed files with 21 additions and 11 deletions.
2 changes: 1 addition & 1 deletion web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
'../server/index.php?s=',
// "lang" :'en'
lang: 'zh-cn'
}</script><link href=./static/css/app.ac1cfee054523448dd514b9154b01087.css rel=stylesheet></head><body class=grey-bg><div id=app></div><script type=text/javascript src=./static/js/manifest.3ad1d5771e9b13dbdad2.js></script><script type=text/javascript src=./static/js/vendor.339f5a1f86786a88b9d4.js></script><script type=text/javascript src=./static/js/app.6c24023b2ce48cf46fc7.js></script></body></html>
}</script><link href=./static/css/app.d1860452acfebd73647a538491dc0711.css rel=stylesheet></head><body class=grey-bg><div id=app></div><script type=text/javascript src=./static/js/manifest.3ad1d5771e9b13dbdad2.js></script><script type=text/javascript src=./static/js/vendor.339f5a1f86786a88b9d4.js></script><script type=text/javascript src=./static/js/app.663613a14cd12f5563d0.js></script></body></html>

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions web/static/js/app.663613a14cd12f5563d0.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion web/static/js/app.6c24023b2ce48cf46fc7.js

This file was deleted.

3 changes: 3 additions & 0 deletions web_src/src/components/catalog/Copy.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<el-form>
<el-form-item label class="text-left">
<el-select
filterable
style="width:100%;"
v-model="is_del"
:placeholder="$t('please_choose')"
Expand All @@ -20,6 +21,7 @@
</el-form-item>
<el-form-item label class="text-left">
<el-select
filterable
style="width:100%;"
v-model="to_item_id"
:placeholder="$t('please_choose')"
Expand All @@ -36,6 +38,7 @@

<el-form-item label class="text-left">
<el-select
filterable
style="width:100%;"
v-model="new_p_cat_id"
:placeholder="$t('please_choose')"
Expand Down
2 changes: 1 addition & 1 deletion web_src/src/components/catalog/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
></el-input>
</el-form-item>
<el-form-item :label="$t('parent_cat_name') + ' : '">
<el-select v-model="MyForm.parent_cat_id" :placeholder="$t('none')">
<el-select filterable v-model="MyForm.parent_cat_id" :placeholder="$t('none')">
<el-option
v-for="item in belong_to_catalogs"
:key="item.cat_id"
Expand Down
1 change: 1 addition & 0 deletions web_src/src/components/catalog/Select.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
<el-form>
<el-form-item :label="$t('select_catalog')" class="text-left">
<el-select
filterable
style="width:100%;"
v-model="new_p_cat_id"
:placeholder="$t('select_catalog')"
Expand Down
1 change: 1 addition & 0 deletions web_src/src/components/item/add/Copy.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
>
<el-form-item label class="text-left">
<el-select
filterable
style="width:100%;"
v-model="copy_item_id"
:placeholder="$t('please_choose')"
Expand Down
3 changes: 2 additions & 1 deletion web_src/src/components/item/export/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
v-if="export_format == 'word' && export_type == 2"
>
<el-select
filterable
:placeholder="$t('catalog')"
class="cat"
v-model="cat_id"
Expand All @@ -56,7 +57,7 @@
label
v-if="export_format == 'word' && export_type == 2"
>
<el-select class="cat" v-model="page_id" v-if="pages">
<el-select filterable class="cat" v-model="page_id" v-if="pages">
<el-option
v-for="page in pages"
:key="page.page_title"
Expand Down
8 changes: 4 additions & 4 deletions web_src/src/components/item/group/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ export default {
this.geList()
this.dialogFormVisible = false
this.multipleSelection = []
this.$nextTick(() => {
setTimeout(() => {
this.toggleSelection(this.multipleSelection)
})
}, 500)
this.MyForm.id = ''
this.MyForm.group_name = ''
}
Expand All @@ -148,9 +148,9 @@ export default {
})
})
this.dialogFormVisible = true
this.$nextTick(() => {
setTimeout(() => {
this.toggleSelection(this.multipleSelection)
})
}, 500)
},
del(id) {
Expand Down
3 changes: 2 additions & 1 deletion web_src/src/components/item/setting/Member.vue
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@
</el-form-item>
<el-form-item label v-show="MyForm.member_group_id < 2">
<el-select
filterable
style="width:100%"
v-model="MyForm.cat_id"
:placeholder="$t('all_cat2')"
Expand Down Expand Up @@ -192,7 +193,7 @@
<div>
<el-form>
<el-form-item :label="$t('c_team')">
<el-select class v-model="MyForm2.team_id">
<el-select filterable class v-model="MyForm2.team_id">
<el-option
v-for="team in teams"
:key="team.team_name"
Expand Down
1 change: 1 addition & 0 deletions web_src/src/components/page/edit/SortPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
class="select-cat"
v-model="cat_id"
v-if="belong_to_catalogs"
filterable
>
<el-option
v-for="cat in belong_to_catalogs"
Expand Down
1 change: 1 addition & 0 deletions web_src/src/components/page/edit/TemplateList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
>
<el-form>
<el-select
filterable
multiple
v-model="shareItemId"
:placeholder="$t('please_choose')"
Expand Down
1 change: 1 addition & 0 deletions web_src/src/components/team/Item.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
<el-form>
<el-select
multiple
filterable
v-model="MyForm.item_id"
:placeholder="$t('please_choose')"
>
Expand Down

0 comments on commit 994aacd

Please sign in to comment.