diff --git a/lib/zin/wg/thinkresult/css/v1.css b/lib/zin/wg/thinkresult/css/v1.css new file mode 100644 index 0000000000..2817e84ea4 --- /dev/null +++ b/lib/zin/wg/thinkresult/css/v1.css @@ -0,0 +1,2 @@ +.think-result-content .form-control {background: #fff;} +.think-result-content .step-title>div>* {display: none;} diff --git a/lib/zin/wg/thinkresult/v1.php b/lib/zin/wg/thinkresult/v1.php index 321ab40a0a..d9467cc84d 100644 --- a/lib/zin/wg/thinkresult/v1.php +++ b/lib/zin/wg/thinkresult/v1.php @@ -12,6 +12,11 @@ class thinkResult extends wg 'steps?: array', // 所有问题步骤数据 ); + public static function getPageCSS(): ?string + { + return file_get_contents(__DIR__ . DS . 'css' . DS . 'v1.css'); + } + protected function buildModel(): wg|array { list($wizard, $mode, $blocks, $steps) = $this->prop(array('wizard', 'mode', 'blocks', 'steps'));