File:services.xmls
Method:query.getRow(columns,*where,*order)
未指定的错误
越界或超过范围
services.xmls
$out main(){
$shell.running();
$shell.layout(pages/services.htm);
@num=$http.argv(0);

@address=$util.config(base,Address);
@tel=$util.config(base,Tel);
@mail=$util.config(base,Mail);
@icp=$util.config(base,Icp);
@yejiao=$util.config(base,foot);
@query=$query(content,news);
@query[CatalogId]=71;
@
rows=@query.getRow(*,['CatalogId={*CatalogId}']);
@ContentId=@rows[ContentId];

@query=$query(extend,news);
@query[ContentId]=@ContentId;
@list=@query.getList(['ExtendId,Pic'],['ContentId={*ContentId} and ExtendType=0'],['Grade desc']);
}

$out getdata(){
@query=$query(content,news);
@query[CatalogId]=$http.get(cataid);
@row=@query.getRow(*,['CatalogId={*CatalogId}']);
$shell.json(status,ok);
$shell.json(data,@row[Body]);
}

$out getvisalist(){
@query=$query(content,news);
@li...