作者 王智

修改

@@ -657,10 +657,11 @@ class Index extends Api @@ -657,10 +657,11 @@ class Index extends Api
657 } 657 }
658 $IsAgreement = Db::name('stor') 658 $IsAgreement = Db::name('stor')
659 ->alias('r') 659 ->alias('r')
  660 + ->where('r.id', $params['id'])
660 ->join('seller s', 'r.user_id=s.user_id') 661 ->join('seller s', 'r.user_id=s.user_id')
661 ->join('agreement a', 'a.seller_id=s.id') 662 ->join('agreement a', 'a.seller_id=s.id')
662 ->where('a.user_id', $UserId) 663 ->where('a.user_id', $UserId)
663 - ->where('a.status',1) 664 + ->where('a.status', 1)
664 ->find(); 665 ->find();
665 if (empty($IsAgreement)) { 666 if (empty($IsAgreement)) {
666 $this->error('请先签订协议', '', '99998'); 667 $this->error('请先签订协议', '', '99998');