WeChat applet development realizes the home page pop-up box activity guidance function

WeChat applet development realizes the home page pop-up box activity guidance function

1. Demand

The event time can be configured in the background. During the event, the event picture will be automatically displayed in a pop-up window on the mini program homepage. Users can turn off the display of active images.

1. In the management backend, you can add activity time periods, whether to display pop-up boxes, pop-up box pictures, and whether to enable activities.

2. When entering the mini program, request whether there is a pop-up box activity in the background. If so, a pop-up box will display the activity picture.

2. Database Design

Since the mini program pop-up activity is an item in the system configuration, the public system configuration is directly used to store the pop-up activity configuration.

The public system configuration table structure is as follows:

CREATE TABLE `sys_config` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'Primary key',
  `configName` varchar(255) DEFAULT NULL COMMENT 'Configuration name',
  `configInfo` longtext COMMENT 'Configuration information',
  PRIMARY KEY (`id`)
)ENGINE=MyISAM DEFAULT CHARSET=utf8;

3.Java background configuration implementation

public class SysConfig extends CommonBean {
 
    public static String NAME_SECKILL="config_seckill"; //Seckill configuration private Long id;
    private String configName; // Configuration name private String configInfo; // Configuration information public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getConfigName() {
        return configName;
    }
 
    public void setConfigName(String configName) {
        this.configName = configName;
    }
 
    public String getConfigInfo() {
        return configInfo;
    }
 
    public void setConfigInfo(String configInfo) {
        this.configInfo = configInfo;
    }
}
@Service("sysConfigService")
public class SysConfigServiceImpl<T> implements SysConfigService<T> {
 
    @Autowired
    private SysConfigDao sysConfigDao;
    // Update configuration public int update(SysConfig sysConfig){
        return sysConfigDao.update(sysConfig);
    }
 
    // Get configuration information based on configuration name @Override
    public T getConfigByName(Class t, String configname) {
        SysConfig sysConfig = sysConfigDao.getConfigByName(configname);
        if (sysConfig == null) {
            return null;
        }
        T result = (T) new Gson().fromJson(sysConfig.getConfigInfo(), t);
        return result;
    }
 
    // Save configuration public int saveConfig(T t, String configname) {
        SysConfig sysConfig = new SysConfig();
        sysConfig.setConfigName(configname);
        Gson gson = new GsonBuilder().setDateFormat("yyyy-MM-dd HH:mm:ss").create();
        String json = gson.toJson(t);
        sysConfig.setConfigInfo(json);
        // Determine whether it has been added, if yes, update, if no, add if (sysConfigDao.getConfigByName(configname) == null) {
            int result = sysConfigDao.add(sysConfig);
            return result;
        } else {
            int result = sysConfigDao.update(sysConfig);
            return result;
        }
    }
 
}

The effect after implementation is:

4. WeChat applet front-end implementation

Mini Program JS Implementation

             getSysConfigSecKill() {
               app.$post(app.API_SysConfigSecKill, {}, (res) => {
                 if (res.statusCode == 0) {
                   let data = res.data;
                   if (data.openIndexPopWindow) {
                     this.setData({
                       seckillispopwindow: true,
                       seckillurl: data.popWindowPic
                     })
                   }
                 }
               })

             },

Mini Program Style

/*Activity pop-up window*/
.seckill{position: fixed;width:325px;height:164px;top:100px;right: 20px;}
.seckill-close{position: fixed;width:32px;height:32px;top:250px;right:160px;}

Front-end display

<!--Activity pop-up box-->
<view wx:if="{{seckillispopwindow}}">
  <view>
    <image bindtap='seckill_go' class="seckill" src="{{seckillurl}}"></image>
    <image bindtap='seckill_close' class="seckill-close" src="../../images/close.png"></image>
  </view>
</view>

Summarize

This concludes this article about the development of WeChat mini-programs to implement the homepage pop-up box activity guidance function. For more relevant WeChat mini-program pop-up box activity guidance content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of the 3 common pop-up prompts used in WeChat applets
  • WeChat Mini Program Practice: Custom Modal Pop-up Window (8)
  • How to implement custom modal pop-up window encapsulation in WeChat applet
  • WeChat applet implements custom picker selector pop-up content
  • WeChat applet achieves beautiful pop-up effect
  • Detailed explanation of WeChat applet custom pop-up window implementation (universal)
  • How to implement the WeChat applet vant pop-up component
  • WeChat applet pop-up window custom example code
  • WeChat applet form pop-up example
  • Detailed explanation of WeChat applet custom modal pop-up component

<<:  Detailed steps and problem solving methods for installing MySQL 8.0.19 on Linux

>>:  Detailed explanation of the knowledge points of using TEXT/BLOB types in MySQL

Recommend

HTML drag and drop function implementation code

Based on Vue The core idea of ​​this function is ...

Introduction to the three essential logs for MySQL database interviews

Table of contents 1. redo log (transaction log of...

Detailed explanation of the basic functions and usage of MySQL foreign keys

This article uses examples to illustrate the basi...

Vue.js implements music player

This article shares the specific code of Vue.js t...

HTML Tutorial: DOCTYPE Abbreviation

When writing HTML code, the first line should be ...

Detailed steps and problem solving methods for installing MySQL 8.0.19 on Linux

I recently bought a Tencent Cloud server and buil...

Implementing a simple Christmas game with JavaScript

Table of contents Preface Achieve results Code CS...

Detailed explanation of how Node.js middleware works

Table of contents What is Express middleware? Req...

How to modify mysql permissions to allow hosts to access

Enable remote access rights for mysql By default,...

Native JS to achieve digital table special effects

This article shares a digital clock effect implem...

In-depth analysis of MySQL 8.0 redo log

Table of contents Preface Generation of redo log ...

Vue custom component implements two-way binding

Scenario: The interaction methods between parent ...