Home Web Front-end uni-app How to publish Uniapp project to Enterprise WeChat

How to publish Uniapp project to Enterprise WeChat

Apr 25, 2023 am 10:47 AM

With the development of mobile Internet, Enterprise WeChat has become an important tool for internal communication in many companies. Pushing company business and information on corporate WeChat has become an essential skill for most companies. In recent years, with the rapid development of mobile terminal technology, Uniapp has become the first choice for many enterprises in mobile terminal development. So, how to publish the Uniapp project to Enterprise WeChat? Let’s take a look at the detailed steps below.

1. Prerequisites

Before publishing Uniapp to Enterprise WeChat, you need to prepare the following prerequisites:

1. Apply for Enterprise WeChat developer Account and pass enterprise authentication

2. Create an application in the enterprise WeChat backend

3. Configure the basic information of the enterprise WeChat application

4. Integrate the enterprise in Uniapp WeChat Mini Program SDK

5. Install WeChat Developer Tools locally

6. Install Enterprise WeChat Assistant

All the above conditions need to be prepared in advance before proceeding to the next step operate.

2. Integrate the Enterprise WeChat Mini Program SDK

1. Download the Enterprise WeChat Mini Program SDK

In the Uniapp project, you need to download the Enterprise WeChat Mini Program SDK first. You can Download on GitHub. Place the downloaded file into the static folder of the Uniapp project, or other appropriate location.

2. Reference the Enterprise WeChat Mini Program SDK in app.vue

In the app.vue file of the Uniapp project, you need to reference the Enterprise WeChat Mini Program SDK you just downloaded. The specific code is as follows:

import 'static/wxwork-jsapi-master/wwopen-jsapi.js'
Copy after login

3. Initialize the enterprise WeChat applet SDK

In the mounted life cycle of the app.vue file of the Uniapp project, the enterprise WeChat applet SDK needs to be initialized. The following code is shown:

mounted() {
    setTimeout(() => {
        wx.config({
            corpid: 'YOUR CORPID',
            agentid: 'YOUR AGENTID',
            timestamp: 1544738316,
            nonceStr: 'sgzljsmwhre123kadfk',
            signature: 'bf20ab6bad95ac9c910b6d89b6e4ba6bbad9423a',
            jsApiList: ['checkJsApi', 'onMenuShareAppMessage', 'getCurExternalChat', 'openEnterpriseChat']
        })
    }, 2000)
},
Copy after login

Among them, corpid and agentid need to be replaced with the ID information of your own enterprise WeChat application.

3. Use WeChat developer tools to debug

1. Use WeChat developer tools to open the Uniapp project

After installing the WeChat developer tools locally, open the Uniapp project HBuilderX IDE tool. Click Run->Run to Browser->WeChat Developer Tools in the toolbar to debug the Uniapp project in WeChat Developer Tools.

2. Debugging in the WeChat Developer Tools

In the WeChat Developer Tools, select the Enterprise WeChat applet, enter the correct corpid and agentid information, and check the debugging basic library The latest version option allows you to debug the effect of the Uniapp project in Enterprise WeChat.

4. Publish the Uniapp project to Enterprise WeChat

1. Package the Uniapp project

Before publishing, the Uniapp project needs to be packaged. You can complete the packaging function in the HBuilderX IDE tool by selecting Run -> Run to mobile phone or Run -> Cloud packaging.

2. Upload the project to the Enterprise WeChat backend

After completing the packaging of the Uniapp project, you need to upload the packaged files to the Enterprise WeChat backend. Select Application Management->Create Application->Upload Application in the Enterprise WeChat backend to upload the packaged Uniapp project to the Enterprise WeChat backend.

3. Download the Enterprise WeChat QR code

After uploading the Uniapp project, you can download the QR code of the application in the Enterprise WeChat background, which is convenient for users to scan, install and use.

After completing the above three steps, you can successfully publish the Uniapp project to Enterprise WeChat. After the release, the company's business and information can be pushed through Enterprise WeChat to facilitate internal communication and collaboration within the enterprise.

The above is the detailed content of How to publish Uniapp project to Enterprise WeChat. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What are the different types of testing that you can perform in a UniApp application? What are the different types of testing that you can perform in a UniApp application? Mar 27, 2025 pm 04:59 PM

The article discusses various testing types for UniApp applications, including unit, integration, functional, UI/UX, performance, cross-platform, and security testing. It also covers ensuring cross-platform compatibility and recommends tools like Jes

What debugging tools are available for UniApp development? What debugging tools are available for UniApp development? Mar 27, 2025 pm 05:05 PM

The article discusses debugging tools and best practices for UniApp development, focusing on tools like HBuilderX, WeChat Developer Tools, and Chrome DevTools.

How can you reduce the size of your UniApp application package? How can you reduce the size of your UniApp application package? Mar 27, 2025 pm 04:45 PM

The article discusses strategies to reduce UniApp package size, focusing on code optimization, resource management, and techniques like code splitting and lazy loading.

How can you optimize images for web performance in UniApp? How can you optimize images for web performance in UniApp? Mar 27, 2025 pm 04:50 PM

The article discusses optimizing images in UniApp for better web performance through compression, responsive design, lazy loading, caching, and using WebP format.

How can you use lazy loading to improve performance? How can you use lazy loading to improve performance? Mar 27, 2025 pm 04:47 PM

Lazy loading defers non-critical resources to improve site performance, reducing load times and data usage. Key practices include prioritizing critical content and using efficient APIs.

What are some common patterns for managing complex data structures in UniApp? What are some common patterns for managing complex data structures in UniApp? Mar 25, 2025 pm 02:31 PM

The article discusses managing complex data structures in UniApp, focusing on patterns like Singleton, Observer, Factory, and State, and strategies for handling data state changes using Vuex and Vue 3 Composition API.

What are computed properties in UniApp? How are they used? What are computed properties in UniApp? How are they used? Mar 25, 2025 pm 02:23 PM

UniApp's computed properties, derived from Vue.js, enhance development by providing reactive, reusable, and optimized data handling. They automatically update when dependencies change, offering performance benefits and simplifying state management co

How does UniApp handle global configuration and styling? How does UniApp handle global configuration and styling? Mar 25, 2025 pm 02:20 PM

UniApp manages global configuration via manifest.json and styling through app.vue or app.scss, using uni.scss for variables and mixins. Best practices include using SCSS, modular styles, and responsive design.

See all articles