-
点击 File -> Project Structure(快捷键 Ctrl + Alt + Shift + s),点击Project Structure界面左侧的“Modules”显示下图界面
-
在 “Dependencies” 标签界面下,点击 “+”号,选择第一个选项“JARs or directories…”,选择相应的jar包,点“OK”,jar包添加成功。
月度归档: 2020年2月
人人商城 – 手机端多模版
目前人人商城不支持手机端页面的多模版
/addons/ewei_shopv2/core/web/sysset/index.php
function shop 添加
1 | $data [ 'mobile_default_template' ] = isset( $_POST [ 'data' ][ 'mobile_default_template' ]) && ! empty ( $_POST [ 'data' ][ 'mobile_default_template' ]) ? $_POST [ 'data' ][ 'mobile_default_template' ] : 'default' ; |
/addons/ewei_shopv2/template/web_v3/sysset/index.html
添加
1 2 3 4 5 6 7 | < div class = "form-group" > < label class = "col-lg control-label" >手机端默认模版</ label > < div class = "col-sm-9 col-xs-12" > < input class = "form-control" name = "data[mobile_default_template]" value = "{php echo isset($data['mobile_default_template']) && !empty($data['mobile_default_template']) ? $data['mobile_default_template'] : 'default'}" /> </ div > </ div > |
这样就能把模版名存到数据库的(ims_ewei_shop_sysset)表了,存进去的时候是序列化过的 所以存取的修改也比较简单
addons/ewei_shopv2/core/inc/page.php
line:376
有一个后端加载前端默认模版的地方
修改成
1 | $template = $_W [ 'shopset' ][ 'shop' ][ 'mobile_default_template' ]; |
然后再把模版里用到mobile/default的地方的default统一修改成“$_W['shopset']['shop']['mobile_default_template']”就可以了
CRM API submit and resubmit by VMS Verification
1 2 3 4 5 6 7 8 9 10 11 12 | # first CRM API submit and VMS resubmit or reimbruse select concat(a.prefix, a.voucher_text, a.suffix), b.* from voucher a, ( select a.submit_time, b.action_id, a.voucher_id from ( select min (a.action_time) as submit_time, a.voucher_id from voucher_action a, voucher b where a.action_id = 60 and a.user_id = 3324 and a.voucher_id = b.voucher_id group by a.voucher_id ) a left join voucher_action b on (a.voucher_id = b.voucher_id and b.action_id in (70) and b.user_id != 3324) where b.id is not null ) b where a.voucher_id = b.voucher_id |
mysql直接copy数据文件 导致Table doesn’t exist的解决办法
服务器迁移后把原来的mysql data复制进去后大部分表是可以访问的,但是有几个表提示表不存在:
error: 1146: Table 'a_content' doesn't exist
这种情况就是要把原来mysql安装目录data里的 ibdata1 也要拷贝过去
INNODB是MYSQL数据库一种流行的数据库引擎,支持事务(行级),在企业级应用上成为可能
ibdata用来储存文件的数据,而库名的文件夹里面的那些表文件只是结构而已,由于新版的mysql默认试innodb,所以ibdata1文件默认就存在了,少了这个文件有的数据表就会出错。