diff --git a/src/pages.json b/src/pages.json index 80e6a8d..8aa1c8b 100644 --- a/src/pages.json +++ b/src/pages.json @@ -142,8 +142,8 @@ "list": [ { "pagePath": "pages/imaotai/iuser/list", - "iconPath": "static/images/tabbar/work.png", - "selectedIconPath": "static/images/tabbar/work_.png", + "iconPath": "static/images/tabbar/home.png", + "selectedIconPath": "static/images/tabbar/home_.png", "text": "账号管理" }, { @@ -152,12 +152,12 @@ "selectedIconPath": "static/images/tabbar/statistic_.png", "text": "预约记录" }, - // { - // "pagePath": "pages/imaotai/iitem/list", - // "iconPath": "static/images/tabbar/statistic.png", - // "selectedIconPath": "static/images/tabbar/statistic_.png", - // "text": "商品" - // }, + { + "pagePath": "pages/imaotai/iitem/list", + "iconPath": "static/images/tabbar/work.png", + "selectedIconPath": "static/images/tabbar/work.png", + "text": "商品" + }, // { // "pagePath": "pages/imaotai/ishop/list", // "iconPath": "static/images/tabbar/statistic.png", diff --git a/src/pages/imaotai/iitem/list.vue b/src/pages/imaotai/iitem/list.vue index 5f6345c..1c11d78 100644 --- a/src/pages/imaotai/iitem/list.vue +++ b/src/pages/imaotai/iitem/list.vue @@ -12,7 +12,7 @@ + :text="item.title+'('+item.itemCode+')'" size="30rpx" color="#333333" :bold="true"> diff --git a/src/pages/imaotai/iuser/add.vue b/src/pages/imaotai/iuser/add.vue index 500fd31..2d4508c 100644 --- a/src/pages/imaotai/iuser/add.vue +++ b/src/pages/imaotai/iuser/add.vue @@ -23,7 +23,7 @@ inputAlign="right" border="none"> - diff --git a/src/pages/imaotai/iuser/edit.vue b/src/pages/imaotai/iuser/edit.vue index fc5f4d9..cd18515 100644 --- a/src/pages/imaotai/iuser/edit.vue +++ b/src/pages/imaotai/iuser/edit.vue @@ -20,7 +20,7 @@ inputAlign="right" border="none"> - @@ -97,6 +97,7 @@ import {reactive ,toRefs,ref,computed ,getCurrentInstance }from "vue"; const title = ref("账号添加") const itemSelect = ref([]) +const modelValue = ref([]) const provinceNameList = ref([]) const showProvinceName = ref(false) @@ -226,11 +227,13 @@ function getData() { itemSelect.value = [] if (form.value.itemCode.indexOf('@') == -1 && form.value.itemCode !== '') { itemSelect.value.push(form.value.itemCode) + modelValue.value.push(form.value.itemCode) } else { const arr = form.value.itemCode.split('@') arr.forEach((e) => { if (e !== '') { itemSelect.value.push(e) + modelValue.value.push(e) } }) }