基于crmeb的二开教程---3.x版本增加备案信息

news/2025/2/23 5:41:58

本文是crmeb简单二开教程 源码地址:直通车》》》

 
修改
h5/src/views/home/Index.vue
  1. <Coupon-window
            :coupon-list="couponList"
            v-if="showCoupon"
            @checked="couponClose"
            @close="couponClose"
    ></Coupon-window>

     

上方增加以下代码
  1. <div style="height:0.5rem;padding-top:0rem;text-align: center;">
        <a target="_blank" href="http://beian.miit.gov.cn/" style="margin-left: 0.1rem;">备案号</a>
    </div>

     

修改备案号三个字为实际备案号 
然后重新编译H5并上传到服务器

http://www.niftyadmin.cn/n/908826.html

相关文章

Linux-NoSQL之Redis(一)

1.Redis介绍 redis是一个key-value存储系统。和Memcached类似&#xff0c;它支持存储的value类型相对更多&#xff0c;包括string(字符串)、list(链表)、set(集合)、zset(sorted set --有序集合)和hash&#xff08;哈希类型&#xff09;。这些数据类型都支持push/pop、add/remo…

swoole系列之---定时器的简单理解和应用

实际应用项目&#xff1a;http://github.crmeb.net/u/long 学习 Swoole 之前&#xff0c;最好先了解下底层知识&#xff0c;比如&#xff0c;线程/进程、IO、TCP/IP协议 等。 Timer的定时器主要有以下三个方法 swoole_timer_tick 间隔的时钟控制器 swoole_timer_after 指定的…

【python cookbook】【数据结构与算法】5.实现优先级队列

问题&#xff1a;要实现一个队列&#xff0c;它能够以给定的优先级对元素排序&#xff0c;且每次pop操作时都会返回优先级最高的那个元素&#xff1b; 解决方案&#xff1a;采用heapq模块实现一个简单的优先级队列 # example.py # # Example of a priority queueimport heapqcl…

前端vue开发之----vue组件详解(一)

实际应用项目&#xff1a;http://github.crmeb.net/u/long 主要内容: 1. 组件的基本使用 2. 全局组件和局部组件 3. 父组件和子组件 4. 组件语法糖的写法 5. 组件data关联的写法 6. 父子组件的通信 组件系统是 Vue 的一个重要概念&#xff0c;因为它是一种抽象&#xff…

前端vue开发之二---双向绑定,父子组件访问

实际应用项目&#xff1a;http://github.crmeb.net/u/long 本文主要说两件事 1. 如何实现父子组件之间的双向绑定 2. 父组件如何访问子组件的data,method, 子组件如何访问父组件的data,method等 一. 如何实现父子组件之间的双向绑定 案例描述: 父子组件双向绑定 父组件有一…

[Log]ASP.NET之HttpModule拦截404异常

Httpmodule代码&#xff1a; public class Error404Module : IHttpModule{public void Init(HttpApplication context){context.Error new EventHandler(Context_Error);}protected void Context_Error(object sender, EventArgs e){HttpContext ctx HttpContext.Current;Htt…

supervisor守护进程配置

实际应用项目&#xff1a;http://github.crmeb.net/u/long 软硬件环境 centos7.6.1810 64bit cat /etc/redhat-release #查看系统版本 supervisor 3.4.0 python 2.7.5 supervisor简介 supervisor是一个用python语言编写的进程管理工具&#xff0c;它可以很方便的监听、启动…

Java compiler level does not match the version of the installed Java project facet.

问题原因&#xff1a; Facted Project 中的Java 版本设定与项目的Java编译器的compliance level设定不一致。 解决办法&#xff1a; 把两者设置成相同。 转载于:https://www.cnblogs.com/starxing/p/5751778.html