@@ -185,6 +190,7 @@
import {mapActions, mapState} from 'vuex'
export default {
+ customNavigation: true,
data() {
return {
appId: '',
@@ -203,7 +209,11 @@ export default {
selectShow: false,
id: '',
appId: '',
- query: {}
+ query: {},
+ backgroundNavbar: {
+ background: 'url(https://cdn.sinoecare.com/i/2024/07/12/6690a1309c7d3.png) no-repeat',
+ backgroundSize: 'cover',
+ },
}
},
computed: {
@@ -221,17 +231,6 @@ export default {
this.appId = e.appId || ''
this.query = {...e}
},
- onShow() {
- if (this.isEdit) {
- uni.setNavigationBarTitle({
- title: '编辑人员',
- })
- } else {
- uni.setNavigationBarTitle({
- title: '新增人员',
- })
- }
- },
methods: {
// ...mapActions(['selectEnterpriseContact']),
handleSelectUser(fieldDbName) {
@@ -525,7 +524,22 @@ export default {