Home > Article > Web Front-end > How to publish Uniapp project to Enterprise WeChat
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'
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) },
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!