作者 lyh

变更数据

... ... @@ -56,11 +56,11 @@ class GeoConfirm extends Base
* @method :post
* @time :2025/10/31 10:10
*/
public static function typeDesc()
public static function typeDesc($num = 10)
{
return [
self::TYPE_TITLE => '需选择确认10个文章标题,后续根据您确认的文章标题整理文章内容;如有补充展会、资质证书等资料,可一并提供。',
self::TYPE_KEYWORD => '需选择确认10个核心关键词问题,后续根据您确认的核心关键词问题整理文章标题;建议提供展会、资质证书等资料。'
self::TYPE_TITLE => '需选择确认'.$num.'个文章标题,后续根据您确认的文章标题整理文章内容;如有补充展会、资质证书等资料,可一并提供。',
self::TYPE_KEYWORD => '需选择确认'.$num.'个核心关键词问题,后续根据您确认的核心关键词问题整理文章标题;建议提供展会、资质证书等资料。'
];
}
... ... @@ -120,7 +120,7 @@ class GeoConfirm extends Base
$seo_plan_name = 'GEO';
$content_array = [
'title' => "【{$company} {$seo_plan_name}】".self::typeMapping()[$data->type],
'desc' => self::typeDesc()[$data->type],
'desc' => self::typeDesc($data->max_num)[$data->type],
'size' => 0,
'thumbSize' => 0,
'thumbUrl' => 'https://hub.globalso.com/logocm.png',
... ...
... ... @@ -98,7 +98,7 @@ class GeoWritings extends Base
$token = Crypt::encrypt($param);
$content_array = [
'title' => "【{$company} {$seo_plan_name}】核心文章已整理,请查看并确认",
'desc' => '需选择确认10篇文章,后续根据您确认的文章进行外链发布。',
'desc' => '需选择确认文章,后续根据您确认的文章进行外链发布。',
'size' => 0,
'thumbSize' => 0,
'thumbUrl' => 'https://hub.globalso.com/logocm.png',
... ...