商品编辑
This commit is contained in:
parent
7ddd6ec107
commit
8df482d949
@ -46,7 +46,7 @@ class Product extends BaseController
|
||||
'/admin/product.product/adds',
|
||||
'/admin/product.product/edit',
|
||||
'/admin/product.product/delete',
|
||||
'/admin/product.product/index',
|
||||
'/admin/product.product/read',
|
||||
];
|
||||
}
|
||||
|
||||
@ -281,6 +281,7 @@ class Product extends BaseController
|
||||
if (request()->isAjax()) {
|
||||
$param = get_params();
|
||||
$data=$param;
|
||||
halt($data);
|
||||
$data['mer_id'] = 4;
|
||||
$data['status'] = 1;
|
||||
$data['mer_status'] =1;
|
||||
@ -641,6 +642,7 @@ class Product extends BaseController
|
||||
// $extension_status = systemConfig('extension_status');
|
||||
$extension_status = 0;
|
||||
if ($isUpdate) {
|
||||
$where = ['product_id' => $productId];
|
||||
$product = Db::connect('shop')->table('eb_store_product_attr_value')
|
||||
->when(isset($where['product_id']) && $where['product_id'] !== '',function($query)use($where){
|
||||
$query->where('product_id',$where['product_id']);
|
||||
@ -739,9 +741,9 @@ class Product extends BaseController
|
||||
public function detailAttrValue($data, $userInfo, $productType = 0, $artiveId = null, $svipInfo = [])
|
||||
{
|
||||
$sku = [];
|
||||
$make_presll = app()->make(ProductPresellSkuRepository::class);
|
||||
$make_assist = app()->make(ProductAssistSkuRepository::class);
|
||||
$make_group = app()->make(ProductGroupSkuRepository::class);
|
||||
// $make_presll = app()->make(ProductPresellSkuRepository::class);
|
||||
// $make_assist = app()->make(ProductAssistSkuRepository::class);
|
||||
// $make_group = app()->make(ProductGroupSkuRepository::class);
|
||||
foreach ($data as $value) {
|
||||
$_value = [
|
||||
'sku' => $value['sku'],
|
||||
@ -758,32 +760,32 @@ class Product extends BaseController
|
||||
$_value['ot_price'] = $value['ot_price'];
|
||||
$_value['svip_price'] = $value['svip_price'];
|
||||
}
|
||||
if ($productType == 2) {
|
||||
$_sku = $make_presll->getSearch(['product_presell_id' => $artiveId, 'unique' => $value['unique']])->find();
|
||||
if (!$_sku) continue;
|
||||
$_value['price'] = $_sku['presell_price'];
|
||||
$_value['stock'] = $_sku['stock'];
|
||||
$_value['down_price'] = $_sku['down_price'];
|
||||
}
|
||||
//助力
|
||||
if ($productType == 3) {
|
||||
$_sku = $make_assist->getSearch(['product_assist_id' => $artiveId, 'unique' => $value['unique']])->find();
|
||||
if (!$_sku) continue;
|
||||
$_value['price'] = $_sku['assist_price'];
|
||||
$_value['stock'] = $_sku['stock'];
|
||||
}
|
||||
//拼团
|
||||
if ($productType == 4) {
|
||||
$_sku = $make_group->getSearch(['product_group_id' => $artiveId, 'unique' => $value['unique']])->find();
|
||||
if (!$_sku) continue;
|
||||
$_value['price'] = $_sku['active_price'];
|
||||
$_value['stock'] = $_sku['stock'];
|
||||
}
|
||||
// if ($productType == 2) {
|
||||
// $_sku = $make_presll->getSearch(['product_presell_id' => $artiveId, 'unique' => $value['unique']])->find();
|
||||
// if (!$_sku) continue;
|
||||
// $_value['price'] = $_sku['presell_price'];
|
||||
// $_value['stock'] = $_sku['stock'];
|
||||
// $_value['down_price'] = $_sku['down_price'];
|
||||
// }
|
||||
// //助力
|
||||
// if ($productType == 3) {
|
||||
// $_sku = $make_assist->getSearch(['product_assist_id' => $artiveId, 'unique' => $value['unique']])->find();
|
||||
// if (!$_sku) continue;
|
||||
// $_value['price'] = $_sku['assist_price'];
|
||||
// $_value['stock'] = $_sku['stock'];
|
||||
// }
|
||||
// //拼团
|
||||
// if ($productType == 4) {
|
||||
// $_sku = $make_group->getSearch(['product_group_id' => $artiveId, 'unique' => $value['unique']])->find();
|
||||
// if (!$_sku) continue;
|
||||
// $_value['price'] = $_sku['active_price'];
|
||||
// $_value['stock'] = $_sku['stock'];
|
||||
// }
|
||||
//推广员
|
||||
if ($this->getUserIsPromoter($userInfo)) {
|
||||
$_value['extension_one'] = $value->bc_extension_one;
|
||||
$_value['extension_two'] = $value->bc_extension_two;
|
||||
}
|
||||
// if ($this->getUserIsPromoter($userInfo)) {
|
||||
// $_value['extension_one'] = $value->bc_extension_one;
|
||||
// $_value['extension_two'] = $value->bc_extension_two;
|
||||
// }
|
||||
$sku[$value['sku']] = $_value;
|
||||
}
|
||||
return $sku;
|
||||
@ -801,56 +803,67 @@ class Product extends BaseController
|
||||
|
||||
if (request()->isAjax()) {
|
||||
|
||||
$params = get_params();
|
||||
$param = get_params();
|
||||
$data=$param;
|
||||
$data['mer_id'] = 4;
|
||||
$data['status'] = 1;
|
||||
$data['mer_status'] =1;
|
||||
$data['rate'] = 3;
|
||||
$data['spec_type'] = $data['is_attribute'];//规格 0单 1多
|
||||
if (!$data['spec_type']) {
|
||||
if (isset($data['skus']) && count($data['skus']) > 1) throw new ValidateException('单规格商品属性错误');
|
||||
}
|
||||
|
||||
$data['id'] = $params['id']; // 当前ID
|
||||
$data['user_id'] = $this->adminInfo['id']; // 操作用户ID
|
||||
$data['name'] = $params['title']; // 团队名称
|
||||
$data['tel'] = $params['phone']; // 联系电话
|
||||
$data['mer_id_list'] = isset($params['mer_id']) ? json_encode($params['mer_id']) : null; // 已选商户
|
||||
$data['street_id'] = $params['street_id']; // 街道ID
|
||||
$street = GeoStreet::where('street_id', $data['street_id'])->find(); // 街道数据
|
||||
$data['lng'] = $street['lng']; // 经度
|
||||
$data['lat'] = $street['lat']; // 纬度
|
||||
$area = $street->area; // 区数据
|
||||
$data['area_id'] = $area['area_id']; // 区县id
|
||||
$city = $area->city; // 获取市级
|
||||
$data['address'] = $city['city_name'] . $area['area_name'] . $street['street_name']; // 实际地址
|
||||
$data['create_time'] = date('Y-m-d H:i:s');
|
||||
|
||||
// 数据更新
|
||||
$supplyChain = SupplyChain::with(['linkMerchant'])->find($data['id']);
|
||||
$res = $supplyChain->update($data);
|
||||
|
||||
// 获取关联数据一对一---曲线救国
|
||||
$linkMerchant = $supplyChain['linkMerchant'];
|
||||
// $linkMerchantArr = $linkMerchant->column('id');
|
||||
if($data['spec_type'] == 0){
|
||||
$attr_data[0]['price'] = $data['price'];
|
||||
$attr_data[0]['cost'] = $data['cost'];
|
||||
$attr_data[0]['ot_price'] = $data['ot_price'];
|
||||
$attr_data[0]['stock'] = $data['stock'];
|
||||
$attr_data[0]['bar_code'] = $data['bar_code'];
|
||||
$attr_data[0]['weight'] = $data['weight'];
|
||||
$attr_data[0]['volume'] = $data['volume'];
|
||||
$new_attr = [];
|
||||
$data['attrValue'] = $attr_data;
|
||||
}
|
||||
|
||||
// 先删除关联数据-- 曲线救国
|
||||
$linkMerchant->delete();
|
||||
|
||||
// 关联商户状态
|
||||
if($data['mer_id_list'])
|
||||
{
|
||||
// 再重新将关联数据入库
|
||||
foreach ($params['mer_id'] as $v) {
|
||||
|
||||
$dataLink = [
|
||||
'eb_merchant_id' => $v, // 商户ID
|
||||
'user_id' => $data['user_id'],
|
||||
'create_time' => $data['create_time'],
|
||||
];
|
||||
|
||||
$supplyChain->linkMerchant()->save($dataLink);
|
||||
// halt($data);
|
||||
if($data['spec_type'] == 1){
|
||||
$new_attr = [];
|
||||
if($data['attr']){
|
||||
$attr = json_decode($data['attr'],1);
|
||||
foreach ($attr as $k => $v){
|
||||
$new_attr[$k]['value'] = $v['title'];
|
||||
$new_attr[$k]['detail'] = array_column($v['child'],'title');
|
||||
}
|
||||
}
|
||||
$skus = $data['skus'];
|
||||
foreach ($skus as $k => $v){
|
||||
foreach ($data['kk'] as $key => $val){
|
||||
$detail[$val] = $v['value'.$key];
|
||||
}
|
||||
$v['detail'] = $detail;
|
||||
$new_sku[] = $v;
|
||||
}
|
||||
$data['attrValue'] = $new_sku;
|
||||
}
|
||||
|
||||
if ($res){
|
||||
return to_assign(0,'操作成功',['aid'=>$res]);
|
||||
}
|
||||
unset($data['skus']);
|
||||
$data['attr'] = $new_attr;
|
||||
$data['params'] = [];
|
||||
$data['mer_labels'] = [];
|
||||
$data['mer_id'] = $this->mer_id;
|
||||
|
||||
return to_assign(1, '操作失败,原因:'.$res);
|
||||
$content = [
|
||||
'content' => $data['content'] ,
|
||||
'type' => 0
|
||||
];
|
||||
$productType=0;
|
||||
$conType=0;
|
||||
|
||||
$product = $this->setProduct($data);
|
||||
$data['mer_cate_id'] = [$data['mer_cate_id']];
|
||||
$this->edit_product($id, $data, $this->mer_id, 0);
|
||||
to_assign(0, '操作成功!');
|
||||
}else{
|
||||
|
||||
$supplyChain = SupplyChain::with(['merchant', 'street', 'area'])->find($id); // 取出当前供应链数据
|
||||
@ -867,13 +880,100 @@ class Product extends BaseController
|
||||
View::assign('arealist', $arealist);
|
||||
View::assign('merchant', $merchant);
|
||||
View::assign('url', $this->url);
|
||||
$getAdminOneProduct = $this->getAdminOneProduct($id,null);
|
||||
View::assign('Product', $getAdminOneProduct);
|
||||
$getAdminOneProduct = $this->getAdminOneProduct((int)$id,null);
|
||||
//dump($getAdminOneProduct);
|
||||
View::assign('product', $getAdminOneProduct);
|
||||
return view();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public function edit_product(int $id, array $data, int $merId, int $productType, $conType = 0)
|
||||
{
|
||||
if (!$data['spec_type']) {
|
||||
$data['attr'] = [];
|
||||
if (count($data['attrValue']) > 1) throw new ValidateException('单规格商品属性错误');
|
||||
}
|
||||
$spuData = $product = $this->setProduct($data);
|
||||
$settleParams = $this->setAttrValue($data, $id, $productType, 1);
|
||||
$settleParams['cate'] = $this->setMerCate($data['mer_cate_id'], $id, $merId);
|
||||
$settleParams['attr'] = $this->setAttr($data['attr'], $id);
|
||||
$content = [
|
||||
'content' => $conType ? json_encode($data['content']) : $data['content'] ,
|
||||
'type' => $conType
|
||||
];
|
||||
$spuData['price'] = $settleParams['data']['price'];
|
||||
$spuData['mer_id'] = $merId;
|
||||
$spuData['mer_labels'] = $data['mer_labels'];
|
||||
|
||||
Db::transaction(function () use ($id, $data, $productType, $settleParams,$content,$product,$spuData,$merId) {
|
||||
$this->save($id, $settleParams, $content, $product, $productType);
|
||||
// if ($productType == 1) { //秒杀商品
|
||||
// $dat = $this->setSeckillProduct($data);
|
||||
// app()->make(StoreSeckillActiveRepository::class)->updateByProduct($id, $dat);
|
||||
// }
|
||||
if ($productType == 0) {
|
||||
$make = Db::connect('shop')->table('eb_parameter_value');
|
||||
$make->where('product_id',$id)->delete();
|
||||
$this->parameter_create($id, $data['params'] ?? [], $data['mer_id']);
|
||||
}
|
||||
$this->baseUpdate($spuData, $id, 0, $productType);
|
||||
});
|
||||
}
|
||||
|
||||
public function baseUpdate(array $param, int $productId, int $activityId, $productType = 0)
|
||||
{
|
||||
// if ($productType == 1) {
|
||||
// $make = app()->make(StoreSeckillActiveRepository::class);
|
||||
// $activityId = $make->getSearch(['product_id' => $productId])->value('seckill_active_id');
|
||||
// }
|
||||
$where = [
|
||||
'product_id' => $productId,
|
||||
'activity_id' => $activityId,
|
||||
'product_type' => $productType,
|
||||
];
|
||||
$ret = Db::connect('shop')->table('eb_store_spu')->where($where)->find();
|
||||
if (!$ret) {
|
||||
$this->setparam($param, $productId, $activityId, $productType);
|
||||
|
||||
} else {
|
||||
$data = $this->setparams($param, $productId, $activityId, $productType);
|
||||
|
||||
$value = $data['mer_labels'];
|
||||
if (!empty($value)) {
|
||||
if (!is_array($value)) {
|
||||
$data['mer_labels'] = ',' . $value . ',';
|
||||
} else {
|
||||
$data['mer_labels'] = ',' . implode(',', $value) . ',';
|
||||
}
|
||||
}
|
||||
return Db::connect('shop')->table('eb_store_spu')->where($where)->update($data);
|
||||
}
|
||||
}
|
||||
|
||||
public function setparams(array $param, $productId, $activityId, $productType)
|
||||
{
|
||||
|
||||
$data = [
|
||||
'product_id' => $productId,
|
||||
'product_type' => $productType ?? 0,
|
||||
'activity_id' => $activityId,
|
||||
'store_name' => $param['store_name'],
|
||||
'keyword' => $param['keyword'] ?? '',
|
||||
'image' => $param['image'],
|
||||
'price' => $param['price'],
|
||||
'status' => 0,
|
||||
'rank' => $param['rank'] ?? 0,
|
||||
'temp_id' => $param['temp_id'],
|
||||
'sort' => $param['sort'] ?? 0,
|
||||
'mer_labels' => $param['mer_labels'] ?? '',
|
||||
];
|
||||
if (isset($param['mer_id'])) $data['mer_id'] = $param['mer_id'];
|
||||
return $data;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* TODO 后台管理需要的商品详情
|
||||
* @param int $id
|
||||
@ -884,100 +984,118 @@ class Product extends BaseController
|
||||
*/
|
||||
public function getAdminOneProduct(int $id, ?int $activeId, $conType = 0)
|
||||
{
|
||||
$with = ['attr', 'attrValue', 'oldAttrValue', 'merCateId.category', 'storeCategory', 'brand', 'temp', 'seckillActive',
|
||||
'content' => function($query) use($conType){
|
||||
$query->where('type',$conType);
|
||||
},
|
||||
'merchant'=> function($query){
|
||||
$query->field('mer_id,mer_avatar,mer_name,is_trader');
|
||||
},
|
||||
'guarantee.templateValue.value',
|
||||
|
||||
];
|
||||
|
||||
$data = $this->dao->geTrashedtProduct($id)->with($with)->find();
|
||||
$data = Db::connect('shop')->table('eb_store_product')->where('product_id',$id)->field('product_id,mer_id,store_name,store_info,keyword,brand_id,cate_id,unit_name,sort,sales,price,cost,ot_price,stock,is_good,product_type,spec_type,extension_type,image,slider_image,once_min_count,delivery_way,delivery_free,pay_limit')->find();
|
||||
|
||||
$data['delivery_way'] = empty($data['delivery_way']) ? [2] : explode(',',$data['delivery_way']);
|
||||
if(in_array('1',$data['delivery_way'])){
|
||||
$data['delivery_way1'] = 1;
|
||||
}else{
|
||||
$data['delivery_way1'] = 0;
|
||||
}
|
||||
if(in_array('2',$data['delivery_way'])){
|
||||
$data['delivery_way2'] = 1;
|
||||
}else{
|
||||
$data['delivery_way2'] = 0;
|
||||
}
|
||||
$data['extend'] = empty($data['extend']) ? [] : json_decode($data['extend']);
|
||||
$make_order = app()->make(StoreCouponRepository::class);
|
||||
$where = [['coupon_id', 'in', $data['give_coupon_ids']]];
|
||||
$data['coupon'] = $make_order->selectWhere($where, 'coupon_id,title')->toArray();
|
||||
$spu_make = app()->make(SpuRepository::class);
|
||||
|
||||
$append = [];
|
||||
if ($data['product_type'] == 0) {
|
||||
$append = ['us_status', 'params'];
|
||||
$activeId = 0;
|
||||
}
|
||||
// if ($data['product_type'] == 1){
|
||||
// $activeId = $data->seckillActive->seckill_active_id;
|
||||
// $make = app()->make(StoreOrderRepository::class);
|
||||
// $append = ['us_status','seckill_status'];
|
||||
// }
|
||||
// if ($data['product_type'] == 2) $make = app()->make(ProductPresellSkuRepository::class);
|
||||
// if ($data['product_type'] == 3) $make = app()->make(ProductAssistSkuRepository::class);
|
||||
// if ($data['product_type'] == 4) $make = app()->make(ProductGroupSkuRepository::class);
|
||||
$data['slider_image_arr'] = explode(',',$data['slider_image']);
|
||||
$data['attr'] = Db::connect('shop')->table('eb_store_product_attr')->where('product_id',$id)->select()->toArray();
|
||||
$data['attrValue'] = Db::connect('shop')->table('eb_store_product_attr_value')->where('product_id',$id)->select()->toArray();
|
||||
|
||||
$spu_where = ['activity_id' => $activeId, 'product_type' => $data['product_type'], 'product_id' => $id];
|
||||
$spu = $spu_make->getSearch($spu_where)->find();
|
||||
$spu = Db::connect('shop')->table('eb_store_spu')->where($spu_where)->find();
|
||||
$data['star'] = $spu['star'] ?? '';
|
||||
$data['mer_labels'] = $spu['mer_labels'] ?? '';
|
||||
$data['sys_labels'] = $spu['sys_labels'] ?? '';
|
||||
|
||||
$data->append($append);
|
||||
$mer_cat = [];
|
||||
if (isset($data['merCateId'])) {
|
||||
foreach ($data['merCateId'] as $i) {
|
||||
$mer_cat[] = $i['mer_cate_id'];
|
||||
}
|
||||
}
|
||||
$data['mer_cate_id'] = $mer_cat;
|
||||
$data['mer_cate_id'] = Db::connect('shop')->table('eb_store_product_cate')->where('product_id',$id)->value('mer_cate_id');
|
||||
|
||||
if($data['attr']){
|
||||
$child_id = 1;
|
||||
foreach ($data['attr'] as $k => $v) {
|
||||
if(strpos($v['attr_values'],'-!-') !== false){
|
||||
$attr_values = explode('-!-',$v['attr_values']);
|
||||
foreach ($attr_values as $key =>$val){
|
||||
$child[]= [
|
||||
'id' => $child_id,
|
||||
'title' => $val,
|
||||
'checked' => true
|
||||
];
|
||||
$child_id++;
|
||||
}
|
||||
}else{
|
||||
$child[]= [
|
||||
'id' => $child_id,
|
||||
'title' => $v['attr_values'],
|
||||
'checked' => true
|
||||
];
|
||||
}
|
||||
$data['attr'][$k] = [
|
||||
'id' => $k+1,
|
||||
'title' => $v['attr_name'],
|
||||
'child' => $child
|
||||
];
|
||||
unset($child);
|
||||
$child_id++;
|
||||
}
|
||||
$product_attr = $data['attr'];
|
||||
$data['attr'] = htmlspecialchars_decode(json_encode($data['attr'],JSON_UNESCAPED_UNICODE|JSON_UNESCAPED_SLASHES));
|
||||
|
||||
foreach ($data['attr'] as $k => $v) {
|
||||
$data['attr'][$k] = [
|
||||
'value' => $v['attr_name'],
|
||||
'detail' => $v['attr_values']
|
||||
];
|
||||
}
|
||||
|
||||
$attrValue = (in_array($data['product_type'], [3, 4])) ? $data['oldAttrValue'] : $data['attrValue'];
|
||||
unset($data['oldAttrValue'], $data['attrValue']);
|
||||
$arr = [];
|
||||
if (in_array($data['product_type'], [1, 3])) $value_make = app()->make(ProductAttrValueRepository::class);
|
||||
$code = '';
|
||||
foreach ($attrValue as $key => $item) {
|
||||
|
||||
// if ($data['product_type'] == 1) {
|
||||
// $value = $value_make->getSearch(['sku' => $item['sku'], 'product_id' => $data['old_product_id']])->find();
|
||||
// $old_stock = $value['stock'];
|
||||
// $item['sales'] = $make->skuSalesCount($item['unique']);
|
||||
// }
|
||||
// if ($data['product_type'] == 2) {
|
||||
// $item['presellSku'] = $make->getSearch(['product_presell_id' => $activeId, 'unique' => $item['unique']])->find();
|
||||
// if (is_null($item['presellSku'])) continue;
|
||||
// }
|
||||
// if ($data['product_type'] == 3) {
|
||||
// $item['assistSku'] = $make->getSearch(['product_assist_id' => $activeId, 'unique' => $item['unique']])->find();
|
||||
// if (is_null($item['assistSku']))
|
||||
// continue;
|
||||
// }
|
||||
// if ($data['product_type'] == 4) {
|
||||
// $item['_sku'] = $make->getSearch(['product_group_id' => $activeId, 'unique' => $item['unique']])->find();
|
||||
// if (is_null($item['_sku']))
|
||||
// continue;
|
||||
// }
|
||||
$sku = explode(',', $item['sku']);
|
||||
$item['old_stock'] = $old_stock ?? $item['stock'];
|
||||
foreach ($sku as $k => $v) {
|
||||
$item['value' . $k] = $v;
|
||||
}
|
||||
$arr[] = $item;
|
||||
|
||||
if($data['attr']){
|
||||
foreach ($product_attr as $kk => $vv){
|
||||
foreach ($vv['child'] as $key =>$val){
|
||||
if($val['title'] == $item['value0']){
|
||||
$code = $val['id'].'-';
|
||||
}
|
||||
if($val['title'] == $item['value1']){
|
||||
$code .= $val['id'];
|
||||
}
|
||||
}
|
||||
}
|
||||
$arr['skus['.$code.'][image]'] = $item['image'];
|
||||
$arr['skus['.$code.'][price]']= $item['price'];
|
||||
$arr['skus['.$code.'][ot_price]'] = $item['ot_price'];
|
||||
$arr['skus['.$code.'][cost]'] = $item['cost'];
|
||||
$arr['skus['.$code.'][stock]'] = $item['stock'];
|
||||
$arr['skus['.$code.'][bar_code]'] = $item['bar_code'];
|
||||
$arr['skus['.$code.'][weight]'] = $item['weight'];
|
||||
$arr['skus['.$code.'][volume]'] = $item['volume'];
|
||||
|
||||
}else{
|
||||
$data['attr'] = json_encode($data['attr']);
|
||||
$arr['image'] = $item['image'];
|
||||
$arr['price']= $item['price'];
|
||||
$arr['ot_price'] = $item['ot_price'];
|
||||
$arr['cost'] = $item['cost'];
|
||||
$arr['stock'] = $item['stock'];
|
||||
$arr['bar_code'] = $item['bar_code'];
|
||||
$arr['weight'] = $item['weight'];
|
||||
$arr['volume'] = $item['volume'];
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
$data['attrValue'] = $arr;
|
||||
$data['attrValue'] = htmlspecialchars_decode(json_encode($arr,JSON_UNESCAPED_UNICODE|JSON_UNESCAPED_SLASHES));
|
||||
$data['content'] = Db::connect('shop')->table('eb_store_product_content')->where('product_id',$id)->value('content');
|
||||
|
||||
$content = $data['content']['content'] ?? '';
|
||||
if ($conType) $content = json_decode($content);
|
||||
unset($data['content']);
|
||||
$data['content'] = $content;
|
||||
// halt($data);
|
||||
return $data;
|
||||
}
|
||||
|
||||
@ -991,10 +1109,10 @@ class Product extends BaseController
|
||||
$id = get_params("id");
|
||||
if(!$id) return to_assign(1, '非法操作!');
|
||||
|
||||
$supplyChain = SupplyChain::with(['linkMerchant'])->find($id);
|
||||
// 删除关联模型
|
||||
$res = $supplyChain->together(['linkMerchant'])->delete();
|
||||
|
||||
// $supplyChain = SupplyChain::with(['linkMerchant'])->find($id);
|
||||
// // 删除关联模型
|
||||
// $res = $supplyChain->together(['linkMerchant'])->delete();
|
||||
$res = Db::connect('shop')->table('eb_store_product')->where('product_id',$id)->delete();
|
||||
if ($res){
|
||||
return to_assign(0,'操作成功',['aid'=>$res]);
|
||||
}
|
||||
@ -1002,5 +1120,28 @@ class Product extends BaseController
|
||||
return to_assign(1, '操作失败,原因:'.$res);
|
||||
|
||||
}
|
||||
|
||||
public function read(){
|
||||
$id = get_params("id");
|
||||
if(!$id) return to_assign(1, '非法操作!');
|
||||
$supplyChain = SupplyChain::with(['merchant', 'street', 'area'])->find($id); // 取出当前供应链数据
|
||||
|
||||
View::assign('detail', $supplyChain);
|
||||
|
||||
// 取出正常的商家
|
||||
$merchant = Merchant::where('status', 1)->column('mer_id, real_name');
|
||||
// 区域模型
|
||||
$arealist = GeoArea::where('city_code', '510500')->select();
|
||||
$store_brand= Db::connect('shop')->table('eb_store_brand')->where(['is_show' => 1])
|
||||
->select();
|
||||
View::assign('store_brand', $store_brand);
|
||||
View::assign('arealist', $arealist);
|
||||
View::assign('merchant', $merchant);
|
||||
View::assign('url', $this->url);
|
||||
$getAdminOneProduct = $this->getAdminOneProduct((int)$id,null);
|
||||
//dump($getAdminOneProduct);
|
||||
View::assign('product', $getAdminOneProduct);
|
||||
return view();
|
||||
}
|
||||
|
||||
}
|
@ -13,6 +13,7 @@
|
||||
<!-- 主体 -->
|
||||
{block name="body"}
|
||||
<form class="layui-form p-4">
|
||||
<h3 class="pb-3">添加</h3>
|
||||
<div class="layui-tab layui-tab-brief">
|
||||
|
||||
<ul class="layui-tab-title">
|
||||
@ -280,11 +281,13 @@
|
||||
})
|
||||
});
|
||||
}
|
||||
|
||||
function demo_cate_id () {
|
||||
var demo_cate = xmSelect.render({
|
||||
name: 'cate_id',
|
||||
el: '#cate_id',
|
||||
autoRow: true,
|
||||
radio: true,
|
||||
cascader: {
|
||||
show: true,
|
||||
indent: 200,
|
||||
@ -294,7 +297,6 @@
|
||||
value: 'id',
|
||||
},
|
||||
data: [],
|
||||
radio: true,
|
||||
})
|
||||
$.get('/admin/product.product/category_arr', function (result) {
|
||||
demo_cate.update({
|
||||
@ -452,12 +454,6 @@
|
||||
return false;
|
||||
}
|
||||
|
||||
// console.log(data.field);
|
||||
// if(data.field.delivery_way['0'] == "undefined" || data.field.delivery_way == null) {
|
||||
// layer.msg('请先选择送货方式');
|
||||
// return false;
|
||||
// }
|
||||
// return false;
|
||||
let callback = function (e) {
|
||||
layer.msg(e.msg);
|
||||
if (e.code == 0) {
|
||||
|
@ -13,6 +13,7 @@
|
||||
<!-- 主体 -->
|
||||
{block name="body"}
|
||||
<form class="layui-form p-4">
|
||||
<h3 class="pb-3">编辑</h3>
|
||||
<div class="layui-tab layui-tab-brief">
|
||||
|
||||
<ul class="layui-tab-title">
|
||||
@ -31,7 +32,7 @@
|
||||
<td class="layui-td-gray">商品名称<font>*</font>
|
||||
</td>
|
||||
<td colspan="7"><input type="text" name="store_name" lay-verify="required" lay-reqText="请输入商品名称"
|
||||
autocomplete="off" placeholder="请输入商品名称" class="layui-input"></td>
|
||||
autocomplete="off" placeholder="请输入商品名称" class="layui-input" value="{$product.store_name}"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="layui-td-gray">平台商品分类<font>*</font>
|
||||
@ -45,7 +46,7 @@
|
||||
<select name="brand_id" lay-verify="required" lay-search="">
|
||||
<option value="">请选择</option>
|
||||
{volist name='store_brand' id='vo'}
|
||||
<option value="{$vo.brand_id}">{$vo.brand_name}</option>
|
||||
<option value="{$vo.brand_id}" {if $product.brand_id==$vo.brand_id} selected {/if}>{$vo.brand_name}</option>
|
||||
{/volist}
|
||||
</select>
|
||||
</td>
|
||||
@ -66,10 +67,10 @@
|
||||
上传缩略图(尺寸:750x750)
|
||||
</button>
|
||||
<div class="layui-upload-list" id="upload_box_thumb" style=" overflow: hidden;">
|
||||
<img src=""
|
||||
<img src="{$product.image}"
|
||||
onerror="javascript:this.src='{__GOUGU__}/gougu/images/nonepic600x360.jpg';this.onerror=null;"
|
||||
width="100" style="max-width: 100%; height:66px;" />
|
||||
<input type="hidden" name="image" value="">
|
||||
<input type="hidden" name="image" value="{$product.image}">
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
@ -84,7 +85,14 @@
|
||||
</button>
|
||||
|
||||
<div class="layui-upload-list" id="upload_box_thumb2" style="overflow: hidden;">
|
||||
<input type="hidden" name="slider_image" value="">
|
||||
{volist name='$product.slider_image_arr' id='vo'}
|
||||
{if $vo}
|
||||
<img src="{$vo}"
|
||||
onerror="javascript:this.src='{__GOUGU__}/gougu/images/nonepic600x360.jpg';this.onerror=null;"
|
||||
width="100" style="max-width: 100%; height:66px;" onclick="delMultipleImgs(this)"/>
|
||||
{/if}
|
||||
{/volist}
|
||||
<input type="hidden" name="slider_image" value="{$product.slider_image}">
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
@ -98,19 +106,19 @@
|
||||
<td class="layui-td-gray">单位<font>*</font>
|
||||
</td>
|
||||
<td colspan="7"><input type="text" name="unit_name" lay-verify="required" lay-reqText="请输入单位"
|
||||
autocomplete="off" placeholder="请输入单位" class="layui-input"></td>
|
||||
autocomplete="off" placeholder="请输入单位" class="layui-input" value="{$product.unit_name}"></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="layui-td-gray">商品关键字<font>*</font>
|
||||
</td>
|
||||
<td colspan="7"><input type="text" name="keyword" lay-verify="required" lay-reqText="请输入商品关键字"
|
||||
autocomplete="off" placeholder="请输入商品关键字" class="layui-input"></td>
|
||||
autocomplete="off" placeholder="请输入商品关键字" class="layui-input" value="{$product.keyword}"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="layui-td-gray" style="text-align:left">商品简介</td>
|
||||
<td colspan="6">
|
||||
<textarea class="layui-textarea" name="store_info"></textarea>
|
||||
<textarea class="layui-textarea" name="store_info">{$product.store_info}</textarea>
|
||||
</td>
|
||||
</tr>
|
||||
<!-- <tr>
|
||||
@ -155,7 +163,7 @@
|
||||
<tr>
|
||||
<td class="layui-td-gray" style="text-align:left">商品详情</td>
|
||||
<td colspan="6">
|
||||
<textarea class="layui-textarea" id="container_content"></textarea>
|
||||
<textarea class="layui-textarea" id="container_content">{$product.content}</textarea>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -165,7 +173,7 @@
|
||||
<tr>
|
||||
<td class="layui-td-gray" style="text-align:left">商品推荐</td>
|
||||
<td colspan="6">
|
||||
<input type="checkbox" name="is_good" title="店铺推荐">
|
||||
<input type="checkbox" name="is_good" title="店铺推荐" value="1" {if $product.is_good == 1} checked {/if}>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -175,13 +183,13 @@
|
||||
<tr>
|
||||
<td class="layui-td-gray" style="text-align:left">送货方式</td>
|
||||
<td colspan="6">
|
||||
<input type="checkbox" name="ziti" title="到店自提" >
|
||||
<input type="checkbox" name="kuaidi" title="快递配送" >
|
||||
<input type="checkbox" name="delivery_way[]" title="到店自提" value="1" {if $product.delivery_way1 == 1} checked {/if}>
|
||||
<input type="checkbox" name="delivery_way[]" title="快递配送" value="2" {if $product.delivery_way2 == 1} checked {/if}>
|
||||
</td>
|
||||
<td class="layui-td-gray" style="text-align:left">是否包邮</td>
|
||||
<td colspan="6">
|
||||
<input type="radio" name="delivery_free" value="1" title="是"checked>
|
||||
<input type="radio" name="delivery_free" value="0" title="否" >
|
||||
<input type="radio" name="delivery_free" value="1" title="是" {if $product.delivery_free == 1} checked {/if}>
|
||||
<input type="radio" name="delivery_free" value="0" title="否" {if $product.delivery_free == 0} checked {/if}>
|
||||
</td>
|
||||
</tr>
|
||||
<!-- <tr>
|
||||
@ -193,12 +201,12 @@
|
||||
<td class="layui-td-gray" style="text-align:left">最少购买件数</td>
|
||||
<td colspan="6">
|
||||
<input type="text" name="once_min_count" lay-verify="required" lay-reqText="默认为0,则不限制购买件数"
|
||||
autocomplete="off" placeholder="默认为0,则不限制购买件数" class="layui-input" value="0">
|
||||
autocomplete="off" placeholder="默认为0,则不限制购买件数" class="layui-input" value="{$product.once_min_count}">
|
||||
</td>
|
||||
<td class="layui-td-gray" style="text-align:left">排序</td>
|
||||
<td colspan="6">
|
||||
<input type="text" name="sort" lay-verify="required" lay-reqText="默认为0,则不限制购买件数"
|
||||
autocomplete="off" placeholder="默认为0,则不限制购买件数" class="layui-input" value="0">
|
||||
autocomplete="off" placeholder="默认为0,则不限制购买件数" class="layui-input" value="{$product.sort}">
|
||||
</td>
|
||||
</tr>
|
||||
<!-- <tr>
|
||||
@ -224,6 +232,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="pt-3">
|
||||
<input type="hidden" name="id" value="{$product.product_id}"/>
|
||||
<button class="layui-btn layui-btn-normal" lay-submit="" lay-filter="webform">立即提交</button>
|
||||
<button type="reset" class="layui-btn layui-btn-primary">重置</button>
|
||||
</div>
|
||||
@ -238,7 +247,12 @@
|
||||
var moduleInit = ['tool', 'tagpicker', 'tinymce','skuTable'];
|
||||
var group_access = "{:session('gougu_admin')['group_access']}"
|
||||
var multiple_images = [];
|
||||
|
||||
var cate_id = "{$product['cate_id']}";
|
||||
var mer_cate_id = "{$product['mer_cate_id']}";
|
||||
var is_attribute = "{$product['spec_type']}";
|
||||
var product_attr = "{$product['attr']}";
|
||||
var product_attr_value = "{$product['attrValue']}".replace(/"/g,"\"");
|
||||
var product_id = "{$product['product_id']}";
|
||||
//单击图片删除图片 【注册全局函数】
|
||||
function delMultipleImgs (this_img) {
|
||||
//获取下标
|
||||
@ -255,7 +269,9 @@
|
||||
}
|
||||
function gouguInit () {
|
||||
var form = layui.form, tool = layui.tool, tagspicker = layui.tagpicker, element = layui.element,skuTable = layui.skuTable;
|
||||
|
||||
if(product_attr){
|
||||
product_attr = "{$product['attr']}".replace(/"/g,"\"");
|
||||
}
|
||||
function demo1 (id) {
|
||||
var demo1 = xmSelect.render({
|
||||
name: 'street_id',
|
||||
@ -283,6 +299,7 @@
|
||||
var demo_cate = xmSelect.render({
|
||||
name: 'cate_id',
|
||||
el: '#cate_id',
|
||||
initValue: [cate_id],
|
||||
autoRow: true,
|
||||
cascader: {
|
||||
show: true,
|
||||
@ -307,6 +324,7 @@
|
||||
name: 'mer_cate_id',
|
||||
el: '#mer_cate_id',
|
||||
autoRow: true,
|
||||
initValue: [mer_cate_id],
|
||||
cascader: {
|
||||
show: true,
|
||||
indent: 200,
|
||||
@ -325,9 +343,13 @@
|
||||
});
|
||||
}
|
||||
demo_mer_cate_id()
|
||||
product_attr = JSON.parse(product_attr);
|
||||
product_attr_value = JSON.parse(product_attr_value);
|
||||
// console.log(product_attr_value);
|
||||
var obj = skuTable.render({
|
||||
|
||||
//规格类型 0统一规格 1多规格
|
||||
isAttributeValue: 0,
|
||||
isAttributeValue: is_attribute,
|
||||
//规格类型容器id
|
||||
isAttributeElemId: 'fairy-is-attribute',
|
||||
//规格表容器id
|
||||
@ -390,9 +412,12 @@
|
||||
]
|
||||
},
|
||||
//商品id 配合specDataUrl和skuDataUrl使用
|
||||
productId: '',
|
||||
productId: product_id,
|
||||
//规格数据, 一般从后台获取
|
||||
specData: [],
|
||||
specData: product_attr,
|
||||
specDataUrl :"",
|
||||
skuDataUrl :"",
|
||||
skuData: product_attr_value,
|
||||
});
|
||||
|
||||
//上传缩略图
|
||||
@ -465,7 +490,7 @@
|
||||
tool.sideClose(1000);
|
||||
}
|
||||
}
|
||||
tool.post('/admin/product.product/add', data.field, callback);
|
||||
tool.post('/admin/product.product/edit', data.field, callback);
|
||||
return false;
|
||||
});
|
||||
|
||||
|
@ -320,10 +320,10 @@
|
||||
table.on('tool(article)', function(obj) {
|
||||
var data = obj.data;
|
||||
if (obj.event === 'read') {
|
||||
tool.side('{$url[2]}?id='+obj.data.reply_id);
|
||||
tool.side('{$url[4]}?id='+obj.data.product_id);
|
||||
}
|
||||
else if (obj.event === 'edit') {
|
||||
tool.side('{$url[2]}?id='+obj.data.reply_id);
|
||||
tool.side('{$url[2]}?id='+obj.data.product_id);
|
||||
}
|
||||
else if (obj.event === 'del') {
|
||||
layer.confirm('确定要删除该记录吗?', {
|
||||
@ -336,7 +336,7 @@
|
||||
obj.del();
|
||||
}
|
||||
}
|
||||
tool.delete('{$url[3]}', { id: data.reply_id }, callback);
|
||||
tool.delete('{$url[3]}', { id: data.product_id }, callback);
|
||||
layer.close(index);
|
||||
});
|
||||
}
|
||||
|
500
app/admin/view/product/product/read.html
Normal file
500
app/admin/view/product/product/read.html
Normal file
@ -0,0 +1,500 @@
|
||||
{extend name="common/base"/}
|
||||
{block name="style"}
|
||||
<style type="text/css">
|
||||
.editormd-code-toolbar select {
|
||||
display: inline-block
|
||||
}
|
||||
|
||||
.editormd li {
|
||||
list-style: inherit;
|
||||
}
|
||||
</style>
|
||||
{/block}
|
||||
<!-- 主体 -->
|
||||
{block name="body"}
|
||||
<form class="layui-form p-4">
|
||||
<h3 class="pb-3">查看</h3>
|
||||
<div class="layui-tab layui-tab-brief">
|
||||
|
||||
<ul class="layui-tab-title">
|
||||
<li class="layui-this">商品信息</li>
|
||||
<li>规格设置</li>
|
||||
<li>商品详情</li>
|
||||
<li>营销设置</li>
|
||||
<li>其他设置</li>
|
||||
</ul>
|
||||
|
||||
<div class="layui-tab-content">
|
||||
<div class="layui-tab-item layui-show">
|
||||
<table class="layui-table layui-table-form">
|
||||
|
||||
<tr>
|
||||
<td class="layui-td-gray">商品名称<font>*</font>
|
||||
</td>
|
||||
<td colspan="7"><input type="text" name="store_name" lay-verify="required" lay-reqText="请输入商品名称"
|
||||
autocomplete="off" placeholder="请输入商品名称" class="layui-input" value="{$product.store_name}"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="layui-td-gray">平台商品分类<font>*</font>
|
||||
</td>
|
||||
<td>
|
||||
<div id="cate_id"></div>
|
||||
</td>
|
||||
<td class="layui-td-gray">品牌选择<font>*</font>
|
||||
</td>
|
||||
<td colspan="6">
|
||||
<select name="brand_id" lay-verify="required" lay-search="">
|
||||
<option value="">请选择</option>
|
||||
{volist name='store_brand' id='vo'}
|
||||
<option value="{$vo.brand_id}" {if $product.brand_id==$vo.brand_id} selected {/if}>{$vo.brand_name}</option>
|
||||
{/volist}
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="layui-td-gray">商户分类<font>*</font>
|
||||
</td>
|
||||
<td colspan="3">
|
||||
<div id="mer_cate_id"></div>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="layui-td-gray" style="vertical-align:top;">商品封面图</td>
|
||||
<td colspan="12">
|
||||
<div class="layui-upload">
|
||||
<button type="button" class="layui-btn layui-btn-sm" id="upload_btn_thumb">
|
||||
上传缩略图(尺寸:750x750)
|
||||
</button>
|
||||
<div class="layui-upload-list" id="upload_box_thumb" style=" overflow: hidden;">
|
||||
<img src="{$product.image}"
|
||||
onerror="javascript:this.src='{__GOUGU__}/gougu/images/nonepic600x360.jpg';this.onerror=null;"
|
||||
width="100" style="max-width: 100%; height:66px;" />
|
||||
<input type="hidden" name="image" value="{$product.image}">
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="layui-td-gray" style="vertical-align:top;">商品轮播图</td>
|
||||
<td colspan="12">
|
||||
<div class="layui-upload">
|
||||
<button type="button" class="layui-btn layui-btn-sm" id="upload_btn_thumb2">
|
||||
上传商品轮播图
|
||||
</button>
|
||||
|
||||
<div class="layui-upload-list" id="upload_box_thumb2" style="overflow: hidden;">
|
||||
{volist name='$product.slider_image_arr' id='vo'}
|
||||
{if $vo}
|
||||
<img src="{$vo}"
|
||||
onerror="javascript:this.src='{__GOUGU__}/gougu/images/nonepic600x360.jpg';this.onerror=null;"
|
||||
width="100" style="max-width: 100%; height:66px;" onclick="delMultipleImgs(this)"/>
|
||||
{/if}
|
||||
{/volist}
|
||||
<input type="hidden" name="slider_image" value="{$product.slider_image}">
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<!-- <tr>
|
||||
<td class="layui-td-gray">主图视频:<font>*</font>
|
||||
</td>
|
||||
<td colspan="7">video_link</td>
|
||||
</tr> -->
|
||||
<tr>
|
||||
<td class="layui-td-gray">单位<font>*</font>
|
||||
</td>
|
||||
<td colspan="7"><input type="text" name="unit_name" lay-verify="required" lay-reqText="请输入单位"
|
||||
autocomplete="off" placeholder="请输入单位" class="layui-input" value="{$product.unit_name}"></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="layui-td-gray">商品关键字<font>*</font>
|
||||
</td>
|
||||
<td colspan="7"><input type="text" name="keyword" lay-verify="required" lay-reqText="请输入商品关键字"
|
||||
autocomplete="off" placeholder="请输入商品关键字" class="layui-input" value="{$product.keyword}"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="layui-td-gray" style="text-align:left">商品简介</td>
|
||||
<td colspan="6">
|
||||
<textarea class="layui-textarea" name="store_info">{$product.store_info}</textarea>
|
||||
</td>
|
||||
</tr>
|
||||
<!-- <tr>
|
||||
<td class="layui-td-gray">优惠券:<font>*</font>
|
||||
</td>
|
||||
<td colspan="7">couponData</td>
|
||||
</tr> -->
|
||||
|
||||
|
||||
</table>
|
||||
</div>
|
||||
<div class="layui-tab-item">
|
||||
<table class="layui-table layui-table-form">
|
||||
|
||||
<!-- <tr>
|
||||
<td class="layui-td-gray" style="background-color: #fff;width: 92px;">佣金设置</td>
|
||||
<td colspan="6">
|
||||
<input type="radio" name="status" value="1" title="单独设置">
|
||||
<input type="radio" name="status" value="0" title="默认设置" checked>
|
||||
</td>
|
||||
</tr> -->
|
||||
<!-- <tr>
|
||||
<td class="layui-td-gray" style="text-align:left">付费会员价设置</td>
|
||||
<td colspan="6">
|
||||
</td>
|
||||
</tr> -->
|
||||
<tr>
|
||||
<td colspan="6">
|
||||
<!-- 规格类型 -->
|
||||
<div id="fairy-is-attribute"></div>
|
||||
<!--商品规格表-->
|
||||
<div id="fairy-spec-table"></div>
|
||||
<div id="fairy-sku-table"></div>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="layui-tab-item">
|
||||
<table class="layui-table layui-table-form">
|
||||
|
||||
<tr>
|
||||
<td class="layui-td-gray" style="text-align:left">商品详情</td>
|
||||
<td colspan="6">
|
||||
<textarea class="layui-textarea" id="container_content">{$product.content}</textarea>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="layui-tab-item">
|
||||
<table class="layui-table layui-table-form">
|
||||
<tr>
|
||||
<td class="layui-td-gray" style="text-align:left">商品推荐</td>
|
||||
<td colspan="6">
|
||||
<input type="checkbox" name="is_good" title="店铺推荐" value="1" {if $product.is_good == 1} checked {/if}>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="layui-tab-item">
|
||||
<table class="layui-table layui-table-form">
|
||||
<tr>
|
||||
<td class="layui-td-gray" style="text-align:left">送货方式</td>
|
||||
<td colspan="6">
|
||||
<input type="checkbox" name="delivery_way[]" title="到店自提" value="1" {if $product.delivery_way1 == 1} checked {/if}>
|
||||
<input type="checkbox" name="delivery_way[]" title="快递配送" value="2" {if $product.delivery_way2 == 1} checked {/if}>
|
||||
</td>
|
||||
<td class="layui-td-gray" style="text-align:left">是否包邮</td>
|
||||
<td colspan="6">
|
||||
<input type="radio" name="delivery_free" value="1" title="是" {if $product.delivery_free == 1} checked {/if}>
|
||||
<input type="radio" name="delivery_free" value="0" title="否" {if $product.delivery_free == 0} checked {/if}>
|
||||
</td>
|
||||
</tr>
|
||||
<!-- <tr>
|
||||
<td class="layui-td-gray" style="text-align:left">运费模板</td>
|
||||
<td colspan="6">
|
||||
</td>
|
||||
</tr> -->
|
||||
<tr>
|
||||
<td class="layui-td-gray" style="text-align:left">最少购买件数</td>
|
||||
<td colspan="6">
|
||||
<input type="text" name="once_min_count" lay-verify="required" lay-reqText="默认为0,则不限制购买件数"
|
||||
autocomplete="off" placeholder="默认为0,则不限制购买件数" class="layui-input" value="{$product.once_min_count}">
|
||||
</td>
|
||||
<td class="layui-td-gray" style="text-align:left">排序</td>
|
||||
<td colspan="6">
|
||||
<input type="text" name="sort" lay-verify="required" lay-reqText="默认为0,则不限制购买件数"
|
||||
autocomplete="off" placeholder="默认为0,则不限制购买件数" class="layui-input" value="{$product.sort}">
|
||||
</td>
|
||||
</tr>
|
||||
<!-- <tr>
|
||||
<td class="layui-td-gray" style="text-align:left">限购类型</td>
|
||||
<td colspan="6">
|
||||
<input type="radio" name="pay_limit" value="0" title="不限购"checked>
|
||||
<input type="radio" name="pay_limit" value="1" title="单次限购" >
|
||||
<input type="radio" name="pay_limit" value="2" title="长期限购" >
|
||||
</td>
|
||||
</tr> -->
|
||||
<!-- <tr>
|
||||
<td class="layui-td-gray" style="text-align:left">平台保障服务</td>
|
||||
<td colspan="6">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="layui-td-gray" style="text-align:left">商品参数</td>
|
||||
<td colspan="6">
|
||||
</td>
|
||||
</tr> -->
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- <div class="pt-3">-->
|
||||
<!-- <input type="hidden" name="id" value="{$product.product_id}"/>-->
|
||||
<!-- <button class="layui-btn layui-btn-normal" lay-submit="" lay-filter="webform">立即提交</button>-->
|
||||
<!-- <button type="reset" class="layui-btn layui-btn-primary">重置</button>-->
|
||||
<!-- </div>-->
|
||||
</form>
|
||||
{/block}
|
||||
<!-- /主体 -->
|
||||
|
||||
<!-- 脚本 -->
|
||||
{block name="script"}
|
||||
<script src="/static/assets/js/xm-select.js"></script>
|
||||
<script>
|
||||
var moduleInit = ['tool', 'tagpicker', 'tinymce','skuTable'];
|
||||
var group_access = "{:session('gougu_admin')['group_access']}"
|
||||
var multiple_images = [];
|
||||
var cate_id = "{$product['cate_id']}";
|
||||
var mer_cate_id = "{$product['mer_cate_id']}";
|
||||
var is_attribute = "{$product['spec_type']}";
|
||||
var product_attr = "{$product['attr']}";
|
||||
var product_attr_value = "{$product['attrValue']}".replace(/"/g,"\"");
|
||||
var product_id = "{$product['product_id']}";
|
||||
//单击图片删除图片 【注册全局函数】
|
||||
function delMultipleImgs (this_img) {
|
||||
//获取下标
|
||||
var subscript = $("#upload_box_thumb2 img").index(this_img);
|
||||
//删除图片
|
||||
this_img.remove();
|
||||
//删除数组
|
||||
multiple_images.splice(subscript, 1);
|
||||
//重新排序
|
||||
multiple_images.sort();
|
||||
$('#upload_box_thumb2 input').attr('value', multiple_images);
|
||||
//返回
|
||||
return;
|
||||
}
|
||||
function gouguInit () {
|
||||
var form = layui.form, tool = layui.tool, tagspicker = layui.tagpicker, element = layui.element,skuTable = layui.skuTable;
|
||||
if(product_attr){
|
||||
product_attr = "{$product['attr']}".replace(/"/g,"\"");
|
||||
}
|
||||
function demo1 (id) {
|
||||
var demo1 = xmSelect.render({
|
||||
name: 'street_id',
|
||||
el: '#demo1',
|
||||
initValue: [street_id],
|
||||
prop: {
|
||||
name: 'name',
|
||||
value: 'code',
|
||||
},
|
||||
data: [],
|
||||
radio: true,
|
||||
disabled: group_access == 2 || group_access == 4 ? true : false,
|
||||
on: function (data) {
|
||||
var arr = data.arr;
|
||||
village(arr[0]['code'])
|
||||
},
|
||||
})
|
||||
$.get('/api/geo/street?pcode=' + id, function (result) {
|
||||
demo1.update({
|
||||
data: result.data
|
||||
})
|
||||
});
|
||||
}
|
||||
function demo_cate_id () {
|
||||
var demo_cate = xmSelect.render({
|
||||
name: 'cate_id',
|
||||
el: '#cate_id',
|
||||
initValue: [cate_id],
|
||||
autoRow: true,
|
||||
cascader: {
|
||||
show: true,
|
||||
indent: 200,
|
||||
},
|
||||
prop: {
|
||||
name: 'name',
|
||||
value: 'id',
|
||||
},
|
||||
data: [],
|
||||
radio: true,
|
||||
})
|
||||
$.get('/admin/product.product/category_arr', function (result) {
|
||||
demo_cate.update({
|
||||
data: result.data
|
||||
})
|
||||
});
|
||||
}
|
||||
demo_cate_id()
|
||||
function demo_mer_cate_id () {
|
||||
var demo_cate = xmSelect.render({
|
||||
name: 'mer_cate_id',
|
||||
el: '#mer_cate_id',
|
||||
autoRow: true,
|
||||
initValue: [mer_cate_id],
|
||||
cascader: {
|
||||
show: true,
|
||||
indent: 200,
|
||||
},
|
||||
prop: {
|
||||
name: 'name',
|
||||
value: 'id',
|
||||
},
|
||||
data: [],
|
||||
radio: true,
|
||||
})
|
||||
$.get('/admin/product.product/category_arr?id=4', function (result) {
|
||||
demo_cate.update({
|
||||
data: result.data
|
||||
})
|
||||
});
|
||||
}
|
||||
demo_mer_cate_id()
|
||||
product_attr = JSON.parse(product_attr);
|
||||
product_attr_value = JSON.parse(product_attr_value);
|
||||
// console.log(product_attr_value);
|
||||
var obj = skuTable.render({
|
||||
|
||||
//规格类型 0统一规格 1多规格
|
||||
isAttributeValue: is_attribute,
|
||||
//规格类型容器id
|
||||
isAttributeElemId: 'fairy-is-attribute',
|
||||
//规格表容器id
|
||||
specTableElemId: 'fairy-spec-table',
|
||||
//sku表容器id
|
||||
skuTableElemId: 'fairy-sku-table',
|
||||
//规格拖拽排序
|
||||
sortable: true,
|
||||
//sku表相同属性值是否合并行
|
||||
rowspan: false,
|
||||
//请求成功返回状态码值
|
||||
requestSuccessCode: 200,
|
||||
//上传接口地址
|
||||
//接口要求返回格式为 {"code": 200, "data": {"url": "xxx"}, "msg": ""}
|
||||
uploadUrl: '/admin/api/upload',
|
||||
//统一规格配置项
|
||||
singleSkuTableConfig: {
|
||||
thead: [
|
||||
{title: '销售价(元)', icon: 'layui-icon-cols'},
|
||||
{title: '市场价(元)', icon: 'layui-icon-cols'},
|
||||
{title: '成本价(元)', icon: 'layui-icon-cols'},
|
||||
{title: '库存', icon: 'layui-icon-cols'},
|
||||
{title: '商品编号', icon: 'layui-icon-cols'},
|
||||
{title: '重量', icon: 'layui-icon-cols'},
|
||||
{title: '体积', icon: 'layui-icon-cols'},
|
||||
// {title: '状态', icon: ''},extension_one extension_two svip_price
|
||||
],
|
||||
tbody: [
|
||||
{type: 'input', field: 'price', value: '', verify: 'required|number', reqtext: '销售价不能为空'},
|
||||
{type: 'input', field: 'ot_price', value: '0', verify: 'required|number', reqtext: '市场价不能为空'},
|
||||
{type: 'input', field: 'cost', value: '0', verify: 'required|number', reqtext: '成本价不能为空'},
|
||||
{type: 'input', field: 'stock', value: '0', verify: 'required|number', reqtext: '库存不能为空'},
|
||||
{type: 'input', field: 'bar_code', value: '', },
|
||||
{type: 'input', field: 'weight', value: '0', verify: 'required|number', reqtext: '重量不能为空'},
|
||||
{type: 'input', field: 'volume', value: '0', verify: 'required|number', reqtext: '体积不能为空'},
|
||||
// {type: 'select', field: 'status', option: [{key: '启用', value: '1'}, {key: '禁用', value: '0'}], verify: 'required', reqtext: '状态不能为空'},
|
||||
]
|
||||
},
|
||||
//多规格配置项
|
||||
multipleSkuTableConfig: {
|
||||
thead: [
|
||||
{title: '图片', icon: ''},
|
||||
{title: '销售价(元)', icon: 'layui-icon-cols'},
|
||||
{title: '市场价(元)', icon: 'layui-icon-cols'},
|
||||
{title: '成本价(元)', icon: 'layui-icon-cols'},
|
||||
{title: '库存', icon: 'layui-icon-cols'},
|
||||
{title: '商品编号', icon: 'layui-icon-cols'},
|
||||
{title: '重量', icon: 'layui-icon-cols'},
|
||||
{title: '体积', icon: 'layui-icon-cols'},
|
||||
],
|
||||
tbody: [
|
||||
{type: 'image', field: 'image', value: '', verify: '', reqtext: ''},
|
||||
{type: 'input', field: 'price', value: '', verify: 'required|number', reqtext: '销售价不能为空'},
|
||||
{type: 'input', field: 'ot_price', value: '0', verify: 'required|number', reqtext: '市场价不能为空'},
|
||||
{type: 'input', field: 'cost', value: '0', verify: 'required|number', reqtext: '成本价不能为空'},
|
||||
{type: 'input', field: 'stock', value: '0', verify: 'required|number', reqtext: '库存不能为空'},
|
||||
{type: 'input', field: 'bar_code', value: '', },
|
||||
{type: 'input', field: 'weight', value: '0', verify: 'required|number', reqtext: '重量不能为空'},
|
||||
{type: 'input', field: 'volume', value: '0', verify: 'required|number', reqtext: '体积不能为空'},
|
||||
]
|
||||
},
|
||||
//商品id 配合specDataUrl和skuDataUrl使用
|
||||
productId: product_id,
|
||||
//规格数据, 一般从后台获取
|
||||
specData: product_attr,
|
||||
specDataUrl :"",
|
||||
skuDataUrl :"",
|
||||
skuData: product_attr_value,
|
||||
});
|
||||
|
||||
//上传缩略图
|
||||
var upload_thumb = layui.upload.render({
|
||||
elem: '#upload_btn_thumb',
|
||||
url: '/admin/api/upload',
|
||||
done: function (res) {
|
||||
//如果上传失败
|
||||
if (res.code == 1) {
|
||||
return layer.msg('上传失败');
|
||||
}
|
||||
//上传成功
|
||||
$('#upload_box_thumb input').attr('value', res.data.filepath);
|
||||
$('#upload_box_thumb img').attr('src', res.data.filepath);
|
||||
}
|
||||
});
|
||||
//上传商品轮播图
|
||||
var upload_thumb = layui.upload.render({
|
||||
elem: '#upload_btn_thumb2',
|
||||
url: '/admin/api/upload',
|
||||
multiple: true,
|
||||
before: function (obj) {
|
||||
//预读本地文件示例,不支持ie8
|
||||
obj.preview(function (index, file, result) {
|
||||
$('#upload_box_thumb2').append(`
|
||||
<img src="${result}"
|
||||
onerror="javascript:this.src='{__GOUGU__}/gougu/images/nonepic600x360.jpg';this.onerror=null;"
|
||||
width="100" style="max-width: 100%; height:66px;" alt="${file.name}" onclick="delMultipleImgs(this)" title="点击删除"/>
|
||||
`)
|
||||
});
|
||||
},
|
||||
done: function (res) {
|
||||
//如果上传失败
|
||||
if (res.code == 1) {
|
||||
return layer.msg('上传失败');
|
||||
}
|
||||
//上传成功
|
||||
//追加图片成功追加文件名至图片容器
|
||||
multiple_images.push(res.data.filepath);
|
||||
$('#upload_box_thumb2 input').attr('value', multiple_images);
|
||||
// $('#upload_box_thumb2 img').attr('src', res.data.filepath);
|
||||
}
|
||||
});
|
||||
|
||||
var editor = layui.tinymce;
|
||||
var edit = editor.render({
|
||||
selector: "#container_content",
|
||||
height: 500
|
||||
});
|
||||
//监听提交
|
||||
form.on('submit(webform)', function (data) {
|
||||
//获取规格数据
|
||||
|
||||
var state = Object.keys(data.field).some(function (item, index, array) {
|
||||
return item.startsWith('skus');
|
||||
});
|
||||
data.field.attrValue = state;
|
||||
data.field.content = tinyMCE.editors['container_content'].getContent();
|
||||
if (data.field.content == '') {
|
||||
layer.msg('请先完善商品详情');
|
||||
return false;
|
||||
}
|
||||
// if(data.field.is_attribute == 1){
|
||||
// data.field.attrValue = '';
|
||||
// }
|
||||
let callback = function (e) {
|
||||
layer.msg(e.msg);
|
||||
if (e.code == 0) {
|
||||
tool.tabRefresh(71);
|
||||
tool.sideClose(1000);
|
||||
}
|
||||
}
|
||||
tool.post('/admin/product.product/edit', data.field, callback);
|
||||
return false;
|
||||
});
|
||||
|
||||
}
|
||||
</script>
|
||||
{/block}
|
||||
<!-- /脚本 -->
|
Loading…
x
Reference in New Issue
Block a user