Kaynağa Gözat

更新提货信息创建

shen 4 yıl önce
ebeveyn
işleme
0c111b6d49

+ 1 - 2
go/gopath/src/fohow.com/apps/controllers/pick_address_controller/pick_address_controller.go

@@ -51,13 +51,12 @@ func (self *PickAddressController) DefaultPickAddress() {
 func (self *PickAddressController) CreatePickAddress() {
 	contact := self.GetString("contact")
 	tel := self.GetString("tel")
-	pic_address := self.GetString("pic_address")
 	setDefault, _ := self.GetInt64("set_default")
 
 	if len(tel) != 11 {
 		self.ReturnError(404, apps.PhoneInvalid, "", nil)
 	}
-	if pic_address == "" || contact == "" || tel == "" {
+	if contact == "" || tel == "" {
 		self.ReturnError(404, apps.ParamsRequired, "", nil)
 	}
 	uId := self.GetCurrentUserId()