|
|
@@ -27,6 +27,17 @@ class ShopController extends BaseController
|
|
|
|
|
|
public $guestAccess = ['all'];
|
|
|
|
|
|
+ //修改客户微信二维码 ssh 20240714
|
|
|
+ public function actionChangeWx()
|
|
|
+ {
|
|
|
+ $get = Yii::$app->request->get();
|
|
|
+ $url = $get['url'] ?? '';
|
|
|
+ $shop = $this->shop;
|
|
|
+ $shop->superWx = $url;
|
|
|
+ $shop->save();
|
|
|
+ util::complete('修改成功');
|
|
|
+ }
|
|
|
+
|
|
|
//我的可以进入的门店 ssh 20230424
|
|
|
public function actionMyShop()
|
|
|
{
|