在以下文件中需要添加相应代码
app/controller/CollageProduct.php
app/view/designer_page/designer_editor.html
app/view/designer_page/designer.html
app/controller/Freight.php
app\controller\Business.php
app\controller\DesignerPage.php
只有这样才能保证https://map.qq.com/api/js?v=2.exp&key={$sysset_webinfo.map_key_qq}中正确获取到{$sysset_webinfo.map_key_qq}的值,有些需要添加进入if ($record) {中}
app\controller\Mendian.php
// 从sysset表中查询name为'webinfo'的记录
$record = db('sysset')->where('name', 'webinfo')->find();
if ($record) {
// 如果查询到记录,则将值赋给$sysset_webinfo
$sysset_webinfo = $record['value']; // 假设数据是存储在'value'字段中
} else {
// 如果没有查询到记录,可以根据需要设置默认值或进行处理
$sysset_webinfo = null;
}
$sysset_webinfo=json_decode($sysset_webinfo, true);
// 以下是使用$sysset_webinfo的代码,例如传递到视图
// 从sysset表中查询name为'webinfo'的记录
$record = Db::table('ddwx_sysset')->where('name', 'webinfo')->find();
if ($record) {
// 如果查询到记录,则将值赋给$sysset_webinfo
$sysset_webinfo = $record['value']; // 假设数据是存储在'value'字段中
} else {
// 如果没有查询到记录,可以根据需要设置默认值或进行处理
$sysset_webinfo = null;
}
$sysset_webinfo=json_decode($sysset_webinfo, true);
// 以下是使用$sysset_webinfo的代码,例如传递到视图
View::assign('sysset_webinfo', $sysset_webinfo);
// 如果查询到记录,则将值赋给$sysset_webinfo
$sysset_webinfo = $record['value']; // 假设数据是存储在'value'字段中
} else {
// 如果没有查询到记录,可以根据需要设置默认值或进行处理
$sysset_webinfo = null;
}
$sysset_webinfo=json_decode($sysset_webinfo, true);
// 以下是使用$sysset_webinfo的代码,例如传递到视图
View::assign('sysset_webinfo', $sysset_webinfo);
app\controller\Mpfans.php
订阅模板消息修改条件:if($k2!=0 && $k2!=count($fields)-1)
foreach($tmpllist as $k=>$v){
if($v['title']=='订阅模板消息'){
unset($tmpllist[$k]);
}else{
$fields = explode('!^!',str_replace(["\r\n","\r","\n"],'!^!',$v['content']));
//dump($fields);
$fieldarr = [];
foreach($fields as $k2=>$v2){
if($k2!=0 && $k2!=count($fields)-1){
$v2 = str_replace('.DATA}}','',$v2);
$fieldarr[] = explode('{{',$v2);
}
}
//dump($fieldarr);
$tmpllist[$k]['fields'] = $fieldarr;
}
}