商品添加
This commit is contained in:
parent
1937dbde5c
commit
cb373a99e5
@ -141,6 +141,122 @@ class Api extends BaseController
|
||||
return to_assign(1, '上传失败,请重试');
|
||||
}
|
||||
}
|
||||
|
||||
//上传文件
|
||||
public function upload2()
|
||||
{
|
||||
$param = get_params();
|
||||
//var_dump($param);exit;
|
||||
$sourse = 'file';
|
||||
if(isset($param['sourse'])){
|
||||
$sourse = $param['sourse'];
|
||||
}
|
||||
if($sourse == 'file' || $sourse == 'tinymce'){
|
||||
if(request()->file('file')){
|
||||
$file = request()->file('file');
|
||||
}
|
||||
else{
|
||||
return to_assign(1, '没有选择上传文件');
|
||||
}
|
||||
}
|
||||
else{
|
||||
if (request()->file('editormd-image-file')) {
|
||||
$file = request()->file('editormd-image-file');
|
||||
} else {
|
||||
return to_assign(1, '没有选择上传文件');
|
||||
}
|
||||
}
|
||||
// 获取上传文件的hash散列值
|
||||
$sha1 = $file->hash('sha1');
|
||||
$md5 = $file->hash('md5');
|
||||
$rule = [
|
||||
'image' => 'jpg,png,jpeg,gif',
|
||||
'doc' => 'doc,docx,ppt,pptx,xls,xlsx,pdf',
|
||||
'file' => 'zip,gz,7z,rar,tar',
|
||||
'video' => 'mpg,mp4,mpeg,avi,wmv,mov,flv,m4v',
|
||||
];
|
||||
$fileExt = $rule['image'] . ',' . $rule['doc'] . ',' . $rule['file'] . ',' . $rule['video'];
|
||||
//1M=1024*1024=1048576字节
|
||||
$fileSize = 100 * 1024 * 1024;
|
||||
if (isset($param['type']) && $param['type']) {
|
||||
$fileExt = $rule[$param['type']];
|
||||
}
|
||||
if (isset($param['size']) && $param['size']) {
|
||||
$fileSize = $param['size'];
|
||||
}
|
||||
$validate = \think\facade\Validate::rule([
|
||||
'image' => 'require|fileSize:' . $fileSize . '|fileExt:' . $fileExt,
|
||||
]);
|
||||
$file_check['image'] = $file;
|
||||
if (!$validate->check($file_check)) {
|
||||
return to_assign(1, $validate->getError());
|
||||
}
|
||||
// 日期前綴
|
||||
$dataPath = date('Ym');
|
||||
$use = 'thumb';
|
||||
$accessKeyId = "LTAI5t7mhH3ij2cNWs1zhPmv"; ;
|
||||
$accessKeySecret = "gqo2wMpvi8h5bDBmCpMje6BaiXvcPu";
|
||||
$endpoint = "oss-cn-chengdu.aliyuncs.com";
|
||||
try {
|
||||
$ossClient = new OssClient($accessKeyId, $accessKeySecret, $endpoint);
|
||||
} catch (OssException $e) {
|
||||
return to_assign(1, $e->getMessage());
|
||||
}
|
||||
$bucket = "lihai001";
|
||||
$object = 'storage/'.$dataPath.'/'.$md5.'.jpg';
|
||||
// $filename = \think\facade\Filesystem::disk('public')->putFile($dataPath, $file, function () use ($md5) {
|
||||
// return $md5;
|
||||
// });
|
||||
try {
|
||||
$filename=$ossClient->uploadFile($bucket, $object,$file);
|
||||
} catch (OssException $e) {
|
||||
return to_assign(1, $e->getMessage());
|
||||
}
|
||||
if ($filename) {
|
||||
//写入到附件表
|
||||
$data = [];
|
||||
$path = get_config('filesystem.disks.public.url');
|
||||
$data['filepath'] = $filename['info']['url'];
|
||||
$data['name'] = $file->getOriginalName();
|
||||
$data['mimetype'] = $file->getOriginalMime();
|
||||
$data['fileext'] = $file->extension();
|
||||
$data['filesize'] = $file->getSize();
|
||||
$data['filename'] = $object;
|
||||
$data['sha1'] = $sha1;
|
||||
$data['md5'] = $md5;
|
||||
$data['module'] = \think\facade\App::initialize()->http->getName();
|
||||
$data['action'] = app('request')->action();
|
||||
$data['uploadip'] = app('request')->ip();
|
||||
$data['create_time'] = time();
|
||||
$data['user_id'] = get_login_admin('id') ? get_login_admin('id') : 0;
|
||||
if ($data['module'] = 'admin') {
|
||||
//通过后台上传的文件直接审核通过
|
||||
$data['status'] = 1;
|
||||
$data['admin_id'] = $data['user_id'];
|
||||
$data['audit_time'] = time();
|
||||
}
|
||||
$data['use'] = request()->has('use') ? request()->param('use') : $use; //附件用处
|
||||
$res['id'] = Db::name('file')->insertGetId($data);
|
||||
$res['url'] = $data['filepath'];
|
||||
$res['name'] = $data['name'];
|
||||
$res['filename'] = $data['filename'];
|
||||
add_log('upload', $data['user_id'], $data);
|
||||
if($sourse == 'editormd'){
|
||||
//editormd编辑器上传返回
|
||||
return json(['success'=>1,'message'=>'上传成功','url'=>$data['filepath']]);
|
||||
}
|
||||
else if($sourse == 'tinymce'){
|
||||
//tinymce编辑器上传返回
|
||||
return json(['success'=>1,'message'=>'上传成功','location'=>$data['filepath']]);
|
||||
}
|
||||
else{
|
||||
//普通上传返回
|
||||
return to_assign(200, '上传成功', $res);
|
||||
}
|
||||
} else {
|
||||
return to_assign(1, '上传失败,请重试');
|
||||
}
|
||||
}
|
||||
|
||||
//获取权限树所需的节点列表
|
||||
public function get_rule()
|
||||
|
@ -53,57 +53,13 @@ class StoreProduct extends BaseController
|
||||
return view();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加
|
||||
*/
|
||||
* 添加
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
if (request()->isAjax()) {
|
||||
$param = get_params();
|
||||
$data=$param;
|
||||
$data['mer_id'] = 4;
|
||||
$data['status'] = 1;
|
||||
$data['mer_status'] =1;
|
||||
$data['rate'] = 3;
|
||||
$data['spec_type'] = 0;//商品规格
|
||||
if (!$data['spec_type']) {
|
||||
$data['attr'] = [];
|
||||
if (count($data['skus']) > 1) throw new ValidateException('单规格商品属性错误');
|
||||
}
|
||||
$content = [
|
||||
'content' => $data['content'] ,
|
||||
'type' => 0
|
||||
];
|
||||
$productType=0;
|
||||
$conType=0;
|
||||
$product = $this->setProduct($data);
|
||||
// event('product.create.before', compact('data','productType','conType'));
|
||||
return Db::transaction(function () use ($data, $productType,$conType,$content,$product) {
|
||||
$activity_id = 0;
|
||||
$result = Db::connect('shop')->table()->create($product);
|
||||
$settleParams = $this->setAttrValue($data, $result->product_id, $productType, 0);
|
||||
$settleParams['cate'] = $this->setMerCate($data['mer_cate_id'], $result->product_id, $data['mer_id']);
|
||||
$settleParams['attr'] = $this->setAttr($data['attr'], $result->product_id);
|
||||
if ($productType ==0 ) app()->make(ParameterValueRepository::class)->create($result->product_id, $data['params'] ?? [],$data['mer_id']);
|
||||
$this->save($result->product_id, $settleParams, $content,$product,$productType);
|
||||
if (in_array($productType, [0, 1])) {
|
||||
if ($productType == 1) { //秒杀商品
|
||||
$dat = $this->setSeckillProduct($data);
|
||||
$dat['product_id'] = $result->product_id;
|
||||
$seckill = app()->make(StoreSeckillActiveRepository::class)->create($dat);
|
||||
$activity_id = $seckill->seckill_active_id;
|
||||
}
|
||||
$product['price'] = $settleParams['data']['price'];
|
||||
$product['mer_labels'] = $data['mer_labels'];
|
||||
app()->make(SpuRepository::class)->create($product, $result->product_id, $activity_id, $productType);
|
||||
}
|
||||
$product = $result;
|
||||
event('product.create',compact('product'));
|
||||
return $result->product_id;
|
||||
});
|
||||
halt($data);
|
||||
|
||||
if (request()->isAjax()) {
|
||||
$param = get_params();
|
||||
// 检验完整性
|
||||
try {
|
||||
validate(StoreProductValidate::class)->check($param);
|
||||
@ -111,16 +67,83 @@ class StoreProduct extends BaseController
|
||||
// 验证失败 输出错误信息
|
||||
return to_assign(1, $e->getError());
|
||||
}
|
||||
|
||||
$param['admin_id'] = $this->uid;
|
||||
$this->model->addStoreProduct($param);
|
||||
}else{
|
||||
|
||||
$store_brand= Db::connect('shop')->table('eb_store_brand')->where(['is_show' => 1])
|
||||
->select();
|
||||
View::assign('store_brand', $store_brand);
|
||||
return view();
|
||||
}
|
||||
return view();
|
||||
}
|
||||
}
|
||||
// /**
|
||||
// * 添加
|
||||
// */
|
||||
// public function add()
|
||||
// {
|
||||
// if (request()->isAjax()) {
|
||||
// $param = get_params();
|
||||
// $data=$param;
|
||||
// $data['mer_id'] = 4;
|
||||
// $data['status'] = 1;
|
||||
// $data['mer_status'] =1;
|
||||
// $data['rate'] = 3;
|
||||
// $data['spec_type'] = 0;//商品规格
|
||||
// if (!$data['spec_type']) {
|
||||
// $data['attr'] = [];
|
||||
// if (count($data['skus']) > 1) throw new ValidateException('单规格商品属性错误');
|
||||
// }
|
||||
// $content = [
|
||||
// 'content' => $data['content'] ,
|
||||
// 'type' => 0
|
||||
// ];
|
||||
// $productType=0;
|
||||
// $conType=0;
|
||||
// $product = $this->setProduct($data);
|
||||
// // event('product.create.before', compact('data','productType','conType'));
|
||||
// return Db::transaction(function () use ($data, $productType,$conType,$content,$product) {
|
||||
// $activity_id = 0;
|
||||
// $result = Db::connect('shop')->table()->create($product);
|
||||
// $settleParams = $this->setAttrValue($data, $result->product_id, $productType, 0);
|
||||
// $settleParams['cate'] = $this->setMerCate($data['mer_cate_id'], $result->product_id, $data['mer_id']);
|
||||
// $settleParams['attr'] = $this->setAttr($data['attr'], $result->product_id);
|
||||
// if ($productType ==0 ) app()->make(ParameterValueRepository::class)->create($result->product_id, $data['params'] ?? [],$data['mer_id']);
|
||||
// $this->save($result->product_id, $settleParams, $content,$product,$productType);
|
||||
// if (in_array($productType, [0, 1])) {
|
||||
// if ($productType == 1) { //秒杀商品
|
||||
// $dat = $this->setSeckillProduct($data);
|
||||
// $dat['product_id'] = $result->product_id;
|
||||
// $seckill = app()->make(StoreSeckillActiveRepository::class)->create($dat);
|
||||
// $activity_id = $seckill->seckill_active_id;
|
||||
// }
|
||||
// $product['price'] = $settleParams['data']['price'];
|
||||
// $product['mer_labels'] = $data['mer_labels'];
|
||||
// app()->make(SpuRepository::class)->create($product, $result->product_id, $activity_id, $productType);
|
||||
// }
|
||||
// $product = $result;
|
||||
// event('product.create',compact('product'));
|
||||
// return $result->product_id;
|
||||
// });
|
||||
// halt($data);
|
||||
//
|
||||
// // 检验完整性
|
||||
// try {
|
||||
// validate(StoreProductValidate::class)->check($param);
|
||||
// } catch (ValidateException $e) {
|
||||
// // 验证失败 输出错误信息
|
||||
// return to_assign(1, $e->getError());
|
||||
// }
|
||||
//
|
||||
// $this->model->addStoreProduct($param);
|
||||
// }else{
|
||||
//
|
||||
// $store_brand= Db::connect('shop')->table('eb_store_brand')->where(['is_show' => 1])
|
||||
// ->select();
|
||||
// View::assign('store_brand', $store_brand);
|
||||
// return view();
|
||||
// }
|
||||
// }
|
||||
public function adds()
|
||||
{
|
||||
if (request()->isAjax()) {
|
||||
|
@ -7,16 +7,18 @@
|
||||
namespace app\admin\controller\product;
|
||||
|
||||
use app\admin\BaseController;
|
||||
use think\exception\ValidateException;
|
||||
use think\facade\Db;
|
||||
use think\facade\View;
|
||||
use app\admin\model\Merchant; // 商户模型
|
||||
use app\admin\model\EbStoreProduct; // 商品模型
|
||||
use app\admin\model\StoreCategory; // 商品分类模型
|
||||
use app\common\controller\FormatList;
|
||||
|
||||
// use app\admin\model\GeoCity; // 省市模型
|
||||
// use app\admin\model\GeoArea; // 区域模型
|
||||
// use app\admin\model\GeoStreet; // 街道模型
|
||||
use app\admin\model\StoreProduct as StoreProductModel;
|
||||
use app\admin\validate\StoreProductValidate;
|
||||
use app\admin\model\GeoCity; // 省市模型
|
||||
use app\admin\model\GeoArea; // 区域模型
|
||||
use app\admin\model\GeoStreet; // 街道模型
|
||||
use app\admin\model\SupplyChain; // 供应链模型
|
||||
// use app\api\model\Area as AreaModel; // 市场区域模型
|
||||
// use app\api\model\AreaManager as AreaManagerModel; // 区域负责人模型
|
||||
@ -41,7 +43,7 @@ class Product extends BaseController
|
||||
$this->product = $product;
|
||||
$this->url=[
|
||||
'/admin/product.product/index',
|
||||
'/admin/product.product/add',
|
||||
'/admin/product.product/adds',
|
||||
'/admin/product.product/edit',
|
||||
'/admin/product.product/delete',
|
||||
'/admin/product.product/index',
|
||||
@ -120,7 +122,7 @@ class Product extends BaseController
|
||||
$where = array_merge($where, $this->switchType($where['type'],$mer_id,0));
|
||||
}
|
||||
$mer_id = isset($params['mer_id'])?$params['mer_id']:NULL;
|
||||
|
||||
|
||||
$data = $this->product->getList($mer_id, $where, $page, $limit);
|
||||
|
||||
|
||||
@ -208,69 +210,585 @@ class Product extends BaseController
|
||||
return $where;
|
||||
}
|
||||
|
||||
// /**
|
||||
// *
|
||||
// * 新增
|
||||
// *
|
||||
// */
|
||||
// public function add()
|
||||
// {
|
||||
// if (request()->isAjax()) {
|
||||
//
|
||||
// $params = get_params();
|
||||
//
|
||||
// $data['user_id'] = $this->adminInfo['id']; // 操作用户ID
|
||||
// $data['name'] = $params['title']; // 团队名称
|
||||
// $data['tel'] = $params['phone']; // 联系电话
|
||||
// $data['mer_id_list'] = json_encode($params['mer_id']); // 已选商户
|
||||
//
|
||||
// $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');
|
||||
//
|
||||
// // 数据入库
|
||||
// $res = SupplyChain::create($data);
|
||||
//
|
||||
// // 关联数据入库
|
||||
// foreach ($params['mer_id'] as $v) {
|
||||
//
|
||||
// $dataLink = [
|
||||
// 'eb_merchant_id' => $v, // 商户ID
|
||||
// 'user_id' => $data['user_id'],
|
||||
// 'create_time' => $data['create_time'],
|
||||
// ];
|
||||
//
|
||||
// $res->linkMerchant()->save($dataLink); // 插入关联数据
|
||||
// }
|
||||
//
|
||||
// if ($res){
|
||||
// return to_assign(0,'操作成功',['aid'=>$res]);
|
||||
// }
|
||||
//
|
||||
// return to_assign(1, '操作失败,原因:'.$res);
|
||||
//
|
||||
// }else{
|
||||
//
|
||||
// // 取出正常的商家
|
||||
// $merchant = Merchant::where('status', 1)->column('mer_id, real_name');
|
||||
//
|
||||
// // 区域模型
|
||||
// $arealist = GeoArea::where('city_code', '510500')->select();
|
||||
//
|
||||
// View::assign('editor', get_system_config('other','editor'));
|
||||
// View::assign('arealist', $arealist);
|
||||
// View::assign('merchant', $merchant);
|
||||
// View::assign('url', $this->url);
|
||||
// return view();
|
||||
// }
|
||||
// }
|
||||
|
||||
/**
|
||||
*
|
||||
* 新增
|
||||
*
|
||||
* 添加
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
if (request()->isAjax()) {
|
||||
|
||||
$params = get_params();
|
||||
|
||||
$data['user_id'] = $this->adminInfo['id']; // 操作用户ID
|
||||
$data['name'] = $params['title']; // 团队名称
|
||||
$data['tel'] = $params['phone']; // 联系电话
|
||||
$data['mer_id_list'] = json_encode($params['mer_id']); // 已选商户
|
||||
|
||||
$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');
|
||||
|
||||
// 数据入库
|
||||
$res = SupplyChain::create($data);
|
||||
|
||||
// 关联数据入库
|
||||
foreach ($params['mer_id'] as $v) {
|
||||
|
||||
$dataLink = [
|
||||
'eb_merchant_id' => $v, // 商户ID
|
||||
'user_id' => $data['user_id'],
|
||||
'create_time' => $data['create_time'],
|
||||
];
|
||||
|
||||
$res->linkMerchant()->save($dataLink); // 插入关联数据
|
||||
$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('单规格商品属性错误');
|
||||
}
|
||||
if($data['spec_type'] == 0){
|
||||
$data['attrValue'][0]['price'] = $data['price'];
|
||||
$data['attrValue'][0]['cost'] = $data['cost'];
|
||||
$data['attrValue'][0]['ot_price'] = $data['ot_price'];
|
||||
$data['attrValue'][0]['stock'] = $data['stock'];
|
||||
$data['attrValue'][0]['bar_code'] = $data['bar_code'];
|
||||
$data['attrValue'][0]['weight'] = $data['weight'];
|
||||
$data['attrValue'][0]['volume'] = $data['volume'];
|
||||
$new_attr = [];
|
||||
}
|
||||
|
||||
if ($res){
|
||||
return to_assign(0,'操作成功',['aid'=>$res]);
|
||||
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;
|
||||
}
|
||||
|
||||
return to_assign(1, '操作失败,原因:'.$res);
|
||||
unset($data['skus']);
|
||||
$data['attr'] = $new_attr;
|
||||
$data['params'] = [];
|
||||
$data['mer_labels'] = [];
|
||||
$data['mer_id'] = $this->mer_id;
|
||||
|
||||
$content = [
|
||||
'content' => $data['content'] ,
|
||||
'type' => 0
|
||||
];
|
||||
$productType=0;
|
||||
$conType=0;
|
||||
|
||||
$product = $this->setProduct($data);
|
||||
$data['mer_cate_id'] = [$data['mer_cate_id']];
|
||||
|
||||
// halt($data);
|
||||
// event('product.create.before', compact('data','productType','conType'));
|
||||
return Db::transaction(function () use ($data, $productType,$conType,$content,$product) {
|
||||
$activity_id = 0;
|
||||
$product_id = Db::connect('shop')->table('eb_store_product')->strict(false)->field(true)->insertGetId($product);
|
||||
$settleParams = $this->setAttrValue($data, $product_id, $productType, 0);
|
||||
|
||||
$settleParams['cate'] = $this->setMerCate($data['mer_cate_id'], $product_id, $data['mer_id']);
|
||||
$settleParams['attr'] = $this->setAttr($data['attr'], $product_id);
|
||||
if ($productType == 0) $this->parameter_create($product_id, $data['params'] ?? [], $data['mer_id']);
|
||||
$this->save($product_id, $settleParams, $content, $product, $productType);
|
||||
if (in_array($productType, [0, 1])) {
|
||||
if ($productType == 1) { //秒杀商品
|
||||
$dat = $this->setSeckillProduct($data);
|
||||
$dat['product_id'] = $product_id;
|
||||
$seckill = Db::connect('shop')->table('eb_store_seckill_active')->strict(false)->field(true)->insertGetId($dat);
|
||||
$activity_id = $seckill;
|
||||
}
|
||||
$product['price'] = $settleParams['data']['price'];
|
||||
$product['mer_labels'] = $data['mer_labels'];
|
||||
$this->setparam($product, $product_id, $activity_id, $productType);
|
||||
}
|
||||
// $product = $result;
|
||||
// event('product.create',compact('product'));
|
||||
// return $product_id;
|
||||
return to_assign(0, '操作成功', ['aid' => $product_id]);
|
||||
});
|
||||
//
|
||||
}else{
|
||||
|
||||
// 取出正常的商家
|
||||
$merchant = Merchant::where('status', 1)->column('mer_id, real_name');
|
||||
|
||||
// 区域模型
|
||||
$arealist = GeoArea::where('city_code', '510500')->select();
|
||||
|
||||
View::assign('editor', get_system_config('other','editor'));
|
||||
View::assign('arealist', $arealist);
|
||||
View::assign('merchant', $merchant);
|
||||
View::assign('url', $this->url);
|
||||
$store_brand= Db::connect('shop')->table('eb_store_brand')->where(['is_show' => 1])
|
||||
->select();
|
||||
View::assign('store_brand', $store_brand);
|
||||
return view();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @Author:Qinii
|
||||
* @Date: 2020/5/20
|
||||
* @param $id
|
||||
* @param $spec_type
|
||||
* @param $settleParams
|
||||
* @param $content
|
||||
* @return int
|
||||
*/
|
||||
public function save($id, $settleParams, $content, $data = [], $productType = 0)
|
||||
{
|
||||
|
||||
Db::connect('shop')->table('eb_store_product_attr')->where('product_id',$id)->delete();
|
||||
Db::connect('shop')->table('eb_store_product_attr_value')->where('product_id',$id)->delete();
|
||||
Db::connect('shop')->table('eb_store_product_cate')->where('product_id',$id)->delete();
|
||||
// halt($settleParams['cate']);
|
||||
if (isset($settleParams['cate'])) (Db::connect('shop')->table('eb_store_product_cate')->strict(false)->field(true)->insertAll($settleParams['cate']));
|
||||
if (isset($settleParams['attr'])) (Db::connect('shop')->table('eb_store_product_attr')->strict(false)->field(true)->insertAll($settleParams['attr']));
|
||||
|
||||
if (isset($settleParams['attrValue'])) {
|
||||
$arr = array_chunk($settleParams['attrValue'], 30);
|
||||
foreach ($arr as $item){
|
||||
Db::connect('shop')->table('eb_store_product_attr_value')->strict(false)->field(true)->insertAll($item);
|
||||
}
|
||||
}
|
||||
if ($content){
|
||||
Db::connect('shop')->table('eb_store_product_content')->where('product_id',$id)->delete();
|
||||
$content['product_id'] = $id;
|
||||
Db::connect('shop')->table('eb_store_product_content')->strict(false)->field(true)->insert($content);
|
||||
}
|
||||
|
||||
if (isset($settleParams['data'])) {
|
||||
$data['price'] = $settleParams['data']['price'];
|
||||
$data['ot_price'] = $settleParams['data']['ot_price'];
|
||||
$data['cost'] = $settleParams['data']['cost'];
|
||||
$data['stock'] = $settleParams['data']['stock'];
|
||||
$data['svip_price'] = $settleParams['data']['svip_price'];
|
||||
}
|
||||
$res = Db::connect('shop')->table('eb_store_product')->where('product_id',$id)->update($data);
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
public function parameter_create($id, $data,$merId)
|
||||
{
|
||||
if (empty($data)) return ;
|
||||
foreach ($data as $datum) {
|
||||
if ($datum['name'] && $datum['value']) {
|
||||
$create[] = [
|
||||
'product_id' => $id,
|
||||
'name' => $datum['name'] ,
|
||||
'value' => $datum['value'],
|
||||
'sort' => $datum['sort'],
|
||||
'parameter_id' => $datum['parameter_id'] ?? 0,
|
||||
'mer_id' => $datum['mer_id'] ?? $merId,
|
||||
'create_time' => date('Y-m-d H:i:s',time())
|
||||
];
|
||||
}
|
||||
}
|
||||
if ($create) Db::connect('shop')->table('eb_parameter_value')->strict(false)->field(true)->insertAll($create);
|
||||
}
|
||||
|
||||
public function setparam(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'];
|
||||
Db::connect('shop')->table('eb_store_spu')->strict(false)->field(true)->insert($data);
|
||||
}
|
||||
public function adds()
|
||||
{
|
||||
if (request()->isAjax()) {
|
||||
$param = get_params();
|
||||
// 检验完整性
|
||||
try {
|
||||
validate(StoreProductValidate::class)->check($param);
|
||||
} catch (ValidateException $e) {
|
||||
// 验证失败 输出错误信息
|
||||
return to_assign(1, $e->getError());
|
||||
}
|
||||
$param['admin_id'] = $this->uid;
|
||||
$this->model->addStoreProduct($param);
|
||||
}else{
|
||||
|
||||
$store_brand= Db::connect('shop')->table('eb_store_brand')->where(['is_show' => 1])
|
||||
->select();
|
||||
View::assign('store_brand', $store_brand);
|
||||
return view();
|
||||
}
|
||||
}
|
||||
public function category_arr($id=0){
|
||||
$where[]=['is_show','=',1];
|
||||
$where[]=['mer_id','=',0];
|
||||
if($id!=0){
|
||||
$where[1]=['mer_id','=',$id];
|
||||
}
|
||||
$list=Db::connect('shop')->table('eb_store_category')->where($where)
|
||||
->field('store_category_id id,pid,cate_name name')->select();
|
||||
$category_arr=create_tree_list(0,$list,0);
|
||||
return to_assign(0,'操作成功', $category_arr);
|
||||
}
|
||||
|
||||
/**
|
||||
* 格式商品商户分类
|
||||
* @Author:Qinii
|
||||
* @Date: 2020/9/15
|
||||
* @param array $data
|
||||
* @param int $productId
|
||||
* @param int $merId
|
||||
* @return array
|
||||
*/
|
||||
public function setMerCate(array $data, int $productId, int $merId)
|
||||
{
|
||||
$result = [];
|
||||
foreach ($data as $value) {
|
||||
$result[] = [
|
||||
'product_id' => $productId,
|
||||
'mer_cate_id' => $value,
|
||||
'mer_id' => $merId,
|
||||
];
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 格式商品规格
|
||||
* @Author:Qinii
|
||||
* @Date: 2020/9/15
|
||||
* @param array $data
|
||||
* @param int $productId
|
||||
* @return array
|
||||
*/
|
||||
public function setAttr(array $data, int $productId)
|
||||
{
|
||||
$result = [];
|
||||
try{
|
||||
foreach ($data as $value) {
|
||||
$result[] = [
|
||||
'type' => 0,
|
||||
'product_id' => $productId,
|
||||
"attr_name" => $value['value'] ?? $value['attr_name'],
|
||||
'attr_values' => implode('-!-', $value['detail']),
|
||||
];
|
||||
}
|
||||
} catch (\Exception $exception) {
|
||||
throw new ValidateException('商品规格格式错误');
|
||||
}
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* 格式化秒杀商品活动时间
|
||||
* @Author:Qinii
|
||||
* @Date: 2020/9/15
|
||||
* @param array $data
|
||||
* @return array
|
||||
*/
|
||||
public function setSeckillProduct(array $data)
|
||||
{
|
||||
$dat = [
|
||||
'start_day' => $data['start_day'],
|
||||
'end_day' => $data['end_day'],
|
||||
'start_time' => $data['start_time'],
|
||||
'end_time' => $data['end_time'],
|
||||
'status' => 1,
|
||||
'once_pay_count' => $data['once_pay_count'],
|
||||
'all_pay_count' => $data['all_pay_count'],
|
||||
];
|
||||
if (isset($data['mer_id'])) $dat['mer_id'] = $data['mer_id'];
|
||||
return $dat;
|
||||
}
|
||||
|
||||
/**
|
||||
* 格式商品主体信息
|
||||
* @Author:Qinii
|
||||
* @Date: 2020/9/15
|
||||
* @param array $data
|
||||
* @return array
|
||||
*/
|
||||
public function setProduct(array $data)
|
||||
{
|
||||
$give_coupon_ids = '';
|
||||
if (isset($data['give_coupon_ids']) && !empty($data['give_coupon_ids'])) {
|
||||
$gcoupon_ids = array_unique($data['give_coupon_ids']);
|
||||
$give_coupon_ids = implode(',', $gcoupon_ids);
|
||||
}
|
||||
|
||||
if(isset($data['integral_rate'])){
|
||||
$integral_rate = $data['integral_rate'];
|
||||
if($data['integral_rate'] < 0) $integral_rate = -1;
|
||||
if($data['integral_rate'] > 100) $integral_rate = 100;
|
||||
|
||||
}
|
||||
|
||||
$result = [
|
||||
'store_name' => $data['store_name'],
|
||||
'image' => $data['image'],
|
||||
// 'slider_image' => is_array($data['slider_image']) ? implode(',', $data['slider_image']) : '',
|
||||
'slider_image' => $data['slider_image'],
|
||||
'store_info' => $data['store_info'] ?? '',
|
||||
'keyword' => $data['keyword']??'',
|
||||
'brand_id' => $data['brand_id'] ?? 0,
|
||||
'cate_id' => $data['cate_id'] ?? 0,
|
||||
'unit_name' => $data['unit_name']??'件',
|
||||
'sort' => $data['sort'] ?? 0,
|
||||
'is_show' => $data['is_show'] ?? 0,
|
||||
'is_used' => (isset($data['status']) && $data['status'] == 1) ? 1 : 0,
|
||||
'is_good' => $data['is_good'] ?? 0,
|
||||
'video_link' => $data['video_link']??'',
|
||||
'temp_id' => $data['delivery_free'] ? 0 : ($data['temp_id'] ?? 0),
|
||||
'extension_type' => $data['extension_type']??0,
|
||||
'spec_type' => $data['spec_type'] ?? 0,
|
||||
'status' => $data['status']??0,
|
||||
'give_coupon_ids' => $give_coupon_ids,
|
||||
'mer_status' => $data['mer_status'],
|
||||
'guarantee_template_id' => $data['guarantee_template_id']??0,
|
||||
'is_gift_bag' => $data['is_gift_bag'] ?? 0,
|
||||
'integral_rate' => $integral_rate ?? 0,
|
||||
'delivery_way' => implode(',',$data['delivery_way']),
|
||||
'delivery_free' => $data['delivery_free'] ?? 0,
|
||||
'once_min_count' => $data['once_min_count'] ?? 0,
|
||||
'once_max_count' => $data['once_max_count'] ?? 0,
|
||||
'pay_limit' => $data['pay_limit'] ?? 0,
|
||||
'svip_price_type' => $data['svip_price_type'] ?? 0,
|
||||
];
|
||||
if (isset($data['mer_id']))
|
||||
$result['mer_id'] = $data['mer_id'];
|
||||
if (isset($data['old_product_id']))
|
||||
$result['old_product_id'] = $data['old_product_id'];
|
||||
if (isset($data['product_type']))
|
||||
$result['product_type'] = $data['product_type'];
|
||||
if (isset($data['type']) && $data['type'])
|
||||
$result['type'] = $data['type'];
|
||||
if (isset($data['param_temp_id']))
|
||||
$result['param_temp_id'] = $data['param_temp_id'];
|
||||
if (isset($data['extend']))
|
||||
$result['extend'] = $data['extend'] ? json_encode($data['extend'], JSON_UNESCAPED_UNICODE) :[];
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* 格式商品SKU
|
||||
* @Author:Qinii
|
||||
* @Date: 2020/9/15
|
||||
* @param array $data
|
||||
* @param int $productId
|
||||
* @return mixed
|
||||
*/
|
||||
public function setAttrValue(array $data, int $productId, int $productType, int $isUpdate = 0)
|
||||
{
|
||||
// $extension_status = systemConfig('extension_status');
|
||||
$extension_status = 0;
|
||||
if ($isUpdate) {
|
||||
$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']);
|
||||
})
|
||||
->when(isset($where['sku']) && $where['sku'] !== '',function($query)use($where){
|
||||
$query->where('sku',$where['sku']);
|
||||
})
|
||||
->when(isset($where['unique']) && $where['unique'] !== '',function($query)use($where){
|
||||
$query->where('unique',$where['unique']);
|
||||
})->select()->toArray();
|
||||
$oldSku = $this->detailAttrValue($product, null);
|
||||
}
|
||||
$price = $stock = $ot_price = $cost = $svip_price = 0;
|
||||
try {
|
||||
foreach ($data['attrValue'] as $value) {
|
||||
$sku = '';
|
||||
if (isset($value['detail']) && !empty($value['detail']) && is_array($value['detail'])) {
|
||||
$sku = implode(',', $value['detail']);
|
||||
}
|
||||
$ot_price_ = $value['price'];
|
||||
if (isset($value['active_price'])) {
|
||||
$sprice = $value['active_price'] < 0 ? 0 : $value['active_price'];
|
||||
} elseif (isset($value['presell_price'])) {
|
||||
$sprice = $value['presell_price'] < 0 ? 0 : $value['presell_price'];
|
||||
} elseif (isset($value['assist_price'])) {
|
||||
$sprice = $value['assist_price'] < 0 ? 0 : $value['assist_price'];
|
||||
} else {
|
||||
$ot_price_ = $value['ot_price'];
|
||||
$sprice = ($value['price'] < 0) ? 0 : $value['price'];
|
||||
}
|
||||
if (isset($value['svip_price']) && $data['svip_price_type']) {
|
||||
$svip_price = !$svip_price ? $value['svip_price'] : (($svip_price > $value['svip_price']) ? $value['svip_price'] : $svip_price);
|
||||
}
|
||||
$cost = !$cost ? $value['cost'] : (($cost > $value['cost']) ?$cost: $value['cost']);
|
||||
$price = !$price ? $sprice : (($price > $sprice) ? $sprice : $price);
|
||||
$ot_price = !$ot_price ? $ot_price_ : (($ot_price > $ot_price_) ? $ot_price : $ot_price_);
|
||||
|
||||
$unique = $this->setUnique($productId, $sku, $productType);
|
||||
$result['attrValue'][] = [
|
||||
'detail' => json_encode($value['detail'] ?? ''),
|
||||
"bar_code" => $value["bar_code"] ?? '',
|
||||
"image" => $value["image"] ?? '',
|
||||
"cost" => $value['cost'] ? (($value['cost'] < 0) ? 0 : $value['cost']) : 0,
|
||||
"price" => $value['price'] ? (($value['price'] < 0) ? 0 : $value['price']) : 0,
|
||||
"volume" => isset($value['volume']) ? ($value['volume'] ? (($value['volume'] < 0) ? 0 : $value['volume']) : 0) :0,
|
||||
"weight" => isset($value['weight']) ? ($value['weight'] ? (($value['weight'] < 0) ? 0 : $value['weight']) : 0) :0,
|
||||
"stock" => $value['stock'] ? (($value['stock'] < 0) ? 0 : $value['stock']) : 0,
|
||||
"ot_price" => $value['ot_price'] ? (($value['ot_price'] < 0) ? 0 : $value['ot_price']) : 0,
|
||||
"extension_one" => $extension_status ? ($value['extension_one'] ?? 0) : 0,
|
||||
"extension_two" => $extension_status ? ($value['extension_two'] ?? 0) : 0,
|
||||
"product_id" => $productId,
|
||||
"type" => 0,
|
||||
"sku" => $sku,
|
||||
"unique" => $unique,
|
||||
'sales' => $isUpdate ? ($oldSku[$sku]['sales'] ?? 0) : 0,
|
||||
'svip_price' => $svip_price,
|
||||
];
|
||||
$stock = $stock + intval($value['stock']);
|
||||
}
|
||||
$result['data'] = [
|
||||
'price' => $price ,
|
||||
'stock' => $stock,
|
||||
'ot_price' => $ot_price,
|
||||
'cost' => $cost,
|
||||
'svip_price' => $svip_price,
|
||||
];
|
||||
} catch (\Exception $exception) {
|
||||
throw new ValidateException('规格错误 :'.$exception->getMessage());
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* @Author:Qinii
|
||||
* @Date: 2020/5/11
|
||||
* @param int $id
|
||||
* @param string $sku
|
||||
* @param int $type
|
||||
* @return string
|
||||
*/
|
||||
public function setUnique(int $id, $sku, int $type)
|
||||
{
|
||||
return $unique = substr(md5($sku . $id), 12, 11) . $type;
|
||||
// $has = (app()->make(ProductAttrValueRepository::class))->merUniqueExists(null, $unique);
|
||||
// return $has ? false : $unique;
|
||||
}
|
||||
|
||||
/**
|
||||
* TODO 单商品sku
|
||||
* @param $data
|
||||
* @param $userInfo
|
||||
* @return array
|
||||
* @author Qinii
|
||||
* @day 2020-08-05
|
||||
*/
|
||||
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);
|
||||
foreach ($data as $value) {
|
||||
$_value = [
|
||||
'sku' => $value['sku'],
|
||||
'price' => $value['price'],
|
||||
'stock' => $value['stock'],
|
||||
'image' => $value['image'],
|
||||
'weight' => $value['weight'],
|
||||
'volume' => $value['volume'],
|
||||
'sales' => $value['sales'],
|
||||
'unique' => $value['unique'],
|
||||
'bar_code' => $value['bar_code'],
|
||||
];
|
||||
if($productType == 0 ){
|
||||
$_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 ($this->getUserIsPromoter($userInfo)) {
|
||||
$_value['extension_one'] = $value->bc_extension_one;
|
||||
$_value['extension_two'] = $value->bc_extension_two;
|
||||
}
|
||||
$sku[$value['sku']] = $_value;
|
||||
}
|
||||
return $sku;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* 编辑
|
||||
@ -343,15 +861,126 @@ class Product extends BaseController
|
||||
$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($id,null);
|
||||
View::assign('Product', $getAdminOneProduct);
|
||||
return view();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* TODO 后台管理需要的商品详情
|
||||
* @param int $id
|
||||
* @param int|null $activeId
|
||||
* @return array|\think\Model|null
|
||||
* @author Qinii
|
||||
* @day 2020-11-24
|
||||
*/
|
||||
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['delivery_way'] = empty($data['delivery_way']) ? [2] : explode(',',$data['delivery_way']);
|
||||
$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);
|
||||
|
||||
$spu_where = ['activity_id' => $activeId, 'product_type' => $data['product_type'], 'product_id' => $id];
|
||||
$spu = $spu_make->getSearch($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;
|
||||
|
||||
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);
|
||||
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;
|
||||
}
|
||||
|
||||
$data['attrValue'] = $arr;
|
||||
|
||||
$content = $data['content']['content'] ?? '';
|
||||
if ($conType) $content = json_decode($content);
|
||||
unset($data['content']);
|
||||
$data['content'] = $content;
|
||||
return $data;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* 删除
|
||||
|
475
app/admin/view/product/product/adds.html
Normal file
475
app/admin/view/product/product/adds.html
Normal file
@ -0,0 +1,475 @@
|
||||
{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">
|
||||
<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"></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}">{$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=""
|
||||
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="">
|
||||
</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;">
|
||||
<input type="hidden" name="slider_image" value="">
|
||||
</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"></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>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="layui-td-gray" style="text-align:left">商品简介</td>
|
||||
<td colspan="6">
|
||||
<textarea class="layui-textarea" name="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"></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">
|
||||
</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">
|
||||
<input type="checkbox" name="delivery_way[]" title="快递配送" value="2">
|
||||
</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="否" >
|
||||
</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="0">
|
||||
</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">
|
||||
</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">
|
||||
<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 = [];
|
||||
|
||||
//单击图片删除图片 【注册全局函数】
|
||||
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,server=layui.server,laySku=layui.laySku,$ = layui.$;;
|
||||
|
||||
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',
|
||||
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,
|
||||
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();
|
||||
|
||||
var obj = skuTable.render({
|
||||
//规格类型 0统一规格 1多规格
|
||||
isAttributeValue: 0,
|
||||
//规格类型容器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/upload2',
|
||||
//统一规格配置项
|
||||
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: '',
|
||||
//规格数据, 一般从后台获取
|
||||
specData: [],
|
||||
});
|
||||
|
||||
//上传缩略图
|
||||
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) {
|
||||
data.field.content = tinyMCE.editors['container_content'].getContent();
|
||||
if (data.field.content == '') {
|
||||
layer.msg('请先完善商品详情');
|
||||
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) {
|
||||
tool.tabRefresh(71);
|
||||
tool.sideClose(1000);
|
||||
}
|
||||
}
|
||||
tool.post('/admin/product.product/add', data.field, callback);
|
||||
return false;
|
||||
});
|
||||
|
||||
}
|
||||
</script>
|
||||
{/block}
|
||||
<!-- /脚本 -->
|
@ -8,78 +8,221 @@
|
||||
.editormd li {
|
||||
list-style: inherit;
|
||||
}
|
||||
.layui-td-gray{
|
||||
width: 110px;
|
||||
}
|
||||
.addrhelper-ok-btn{
|
||||
display: none;
|
||||
}
|
||||
</style>
|
||||
{/block}
|
||||
<!-- 主体 -->
|
||||
{block name="body"}
|
||||
<form class="layui-form p-4">
|
||||
<input type="hidden" name="id" value="{$detail.store_category_id}">
|
||||
<h3 class="pb-3">编辑</h3>
|
||||
<table class="layui-table layui-table-form">
|
||||
<tr>
|
||||
<td class="layui-td-gray">选择商户</td>
|
||||
<td colspan="4">
|
||||
<div class="layui-col-md4">
|
||||
<select lay-filter="merchant" lay-search>
|
||||
<option value="" >上级分类</option>
|
||||
{volist name='merchant' id='vo'}
|
||||
<option id="merchant{$vo.mer_id}" value="{$vo.mer_id}" >{$vo.real_name}</option>
|
||||
{/volist}
|
||||
</select>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="layui-col-md4" id="address"></div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="4">
|
||||
<div class="layui-col-md4">
|
||||
<label class="layui-form-label">分类名称<font>*</font></label>
|
||||
<div class="layui-input-block">
|
||||
<input type="text" name="title" required lay-verify="required" value="{$detail.cate_name}" placeholder="请输入团队名称" autocomplete="off" class="layui-input">
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="layui-upload">
|
||||
<button type="button" class="layui-btn layui-btn-sm" id="upload_btn_thumb">上传分类图片(尺寸:110x110)</button>
|
||||
<div class="layui-upload-list" id="upload_box_thumb" style="width: 120px; height:66px; overflow: hidden;">
|
||||
<img src="{$detail.pic}" onerror="javascript:this.src='{__GOUGU__}/gougu/images/nonepic600x360.jpg';this.onerror=null;" width="100" style="max-width: 100%; height:66px;"/>
|
||||
<input type="hidden" name="avatar" value="">
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<div class="layui-tab layui-tab-brief">
|
||||
|
||||
<tr>
|
||||
<td colspan="4">
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label">是否显示</label>
|
||||
<div class="layui-input-block">
|
||||
<input type="checkbox" name="is_show" lay-skin="switch" {$detail.is_show?'checked':''}>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
<td colspan="4">
|
||||
<div class="layui-col-md4">
|
||||
<label class="layui-form-label">排序<font>*</font></label>
|
||||
<div class="layui-input-block">
|
||||
<input type="text" name="sort" required lay-verify="required" value="{$detail.sort}" autocomplete="off" class="layui-input">
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<ul class="layui-tab-title">
|
||||
<li class="layui-this">商品信息</li>
|
||||
<li>规格设置</li>
|
||||
<li>商品详情</li>
|
||||
<li>营销设置</li>
|
||||
<li>其他设置</li>
|
||||
</ul>
|
||||
|
||||
</table>
|
||||
<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"></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}">{$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=""
|
||||
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="">
|
||||
</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;">
|
||||
<input type="hidden" name="slider_image" value="">
|
||||
</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"></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>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="layui-td-gray" style="text-align:left">商品简介</td>
|
||||
<td colspan="6">
|
||||
<textarea class="layui-textarea" name="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"></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="店铺推荐">
|
||||
</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="ziti" title="到店自提" >
|
||||
<input type="checkbox" name="kuaidi" title="快递配送" >
|
||||
</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="否" >
|
||||
</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="0">
|
||||
</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">
|
||||
</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">
|
||||
<button class="layui-btn layui-btn-normal" lay-submit="" lay-filter="webform">立即提交</button>
|
||||
<button type="reset" class="layui-btn layui-btn-primary">重置</button>
|
||||
@ -90,99 +233,243 @@
|
||||
|
||||
<!-- 脚本 -->
|
||||
{block name="script"}
|
||||
<script src="/static/assets/js/jquery.min.js"></script>
|
||||
<script src="/static/assets/js/addrHelper.js"></script>
|
||||
<script src="/static/assets/js/xm-select.js"></script>
|
||||
<script>
|
||||
var moduleInit = ['tool','tinymce'];
|
||||
var moduleInit = ['tool', 'tagpicker', 'tinymce','skuTable'];
|
||||
var group_access = "{:session('gougu_admin')['group_access']}"
|
||||
var multiple_images = [];
|
||||
|
||||
function gouguInit() {
|
||||
|
||||
var form = layui.form, tool = layui.tool;
|
||||
|
||||
// 下拉选中事件
|
||||
form.on('select(merchant)', function(data){
|
||||
|
||||
if(data.value == null || data.value == '')
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
const title = $('#merchant' + data.value).text();
|
||||
const html = `<input type="checkbox" id="mer_id` + data.value + `" name="mer_id[]" title="` + title + `" value="` + data.value + `" checked/>`
|
||||
+ `<div id="mer_id_style` + data.value + `" class="layui-unselect layui-form-checkbox layui-form-checked" onclick="merchantxz(` + data.value + `)"><span>` + title + `</span><i class="layui-icon layui-icon-ok"></i></div>`;
|
||||
$('#merchantList').append(html);
|
||||
$("#merchant"+ data.value).remove();
|
||||
$(".layui-this").remove();
|
||||
});
|
||||
|
||||
form.on('select(merchantAddress)', function (data) {
|
||||
street(data.value);
|
||||
});
|
||||
|
||||
//监听提交
|
||||
form.on('submit(webform)', function (data) {
|
||||
|
||||
let callback = function (e) {
|
||||
console.log(e);
|
||||
layer.msg(e.msg);
|
||||
if (e.code == 0) {
|
||||
tool.tabRefresh(71);
|
||||
tool.sideClose(1000);
|
||||
}
|
||||
}
|
||||
|
||||
tool.post('{$url[2]}', data.field, callback);
|
||||
return false;
|
||||
});
|
||||
|
||||
// 删除选中商户
|
||||
function merchantxz(env)
|
||||
{
|
||||
if($('#mer_id'+env).attr("checked") == 'checked')
|
||||
{
|
||||
$('#mer_id'+env).removeAttr('checked');
|
||||
$('#mer_id_style'+env).removeClass('layui-form-checked');
|
||||
}else{
|
||||
$('#mer_id'+env).attr('checked', 'checked');
|
||||
$('#mer_id_style'+env).addClass('layui-form-checked');
|
||||
}
|
||||
|
||||
//单击图片删除图片 【注册全局函数】
|
||||
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;
|
||||
|
||||
var group_access = "{:session('gougu_admin')['group_access']}";
|
||||
|
||||
street("{$detail.store_category_id}");
|
||||
|
||||
function street (id) {
|
||||
if(id == null || id == '')
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
var demo1 = xmSelect.render({
|
||||
name: 'pid',
|
||||
el: '#demo1',
|
||||
prop: {
|
||||
name: 'name',
|
||||
value: 'id',
|
||||
},
|
||||
data: [],
|
||||
radio: true,
|
||||
initValue: ['{$detail.pid}'],
|
||||
disabled: group_access == 2 || group_access==4 ? true : false
|
||||
});
|
||||
|
||||
$.get('/api/geo/street?pcode=' + id, function (result) {
|
||||
|
||||
demo1.update({
|
||||
data: result.data
|
||||
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',
|
||||
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,
|
||||
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()
|
||||
var obj = skuTable.render({
|
||||
//规格类型 0统一规格 1多规格
|
||||
isAttributeValue: 0,
|
||||
//规格类型容器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: '',
|
||||
//规格数据, 一般从后台获取
|
||||
specData: [],
|
||||
});
|
||||
|
||||
//上传缩略图
|
||||
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/add', data.field, callback);
|
||||
return false;
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
</script>
|
||||
{/block}
|
||||
<!-- /脚本 -->
|
@ -161,6 +161,11 @@
|
||||
</script>
|
||||
<script type="text/html" id="thumb">
|
||||
|
||||
</script>
|
||||
<script type="text/html" id="toolbarDemo">
|
||||
<div class="layui-btn-container">
|
||||
<span class="layui-btn layui-btn-sm" lay-event="add" data-title="添加商品">+ 添加商品</span>
|
||||
</div>
|
||||
</script>
|
||||
<!-- <script type="text/html" id="toolbarDemo">
|
||||
<div class="layui-btn-container">
|
||||
|
@ -15,7 +15,7 @@
|
||||
<script type="text/html" id="toolbarDemo">
|
||||
<div class="layui-btn-container">
|
||||
<span class="layui-btn layui-btn-sm" lay-event="add" data-title="添加商品">+ 添加商品</span>
|
||||
<span class="layui-btn layui-btn-sm" lay-event="adds" data-title="添加商品">+ 添加商品2</span>
|
||||
<!-- <span class="layui-btn layui-btn-sm" lay-event="adds" data-title="添加商品">+ 添加商品2</span>-->
|
||||
</div>
|
||||
</script>
|
||||
|
||||
|
@ -516,7 +516,7 @@ layui.define(['jquery', 'form', 'upload', 'layer', 'sortable'], function (export
|
||||
table += '</tbody>';
|
||||
|
||||
table += '<tfoot><tr><td colspan="2">';
|
||||
table += `<input type="checkbox" title="开启删除" lay-skin="primary" lay-filter="fairy-spec-delete-filter" ${that.options.specDataDelete ? 'checked' : ''}/>`;
|
||||
table += `<textarea name="attr" style="display:none">${JSON.stringify(this.options.specData)}</textarea><input type="checkbox" title="开启删除" lay-skin="primary" lay-filter="fairy-spec-delete-filter" ${that.options.specDataDelete ? 'checked' : ''}/>`;
|
||||
table += `<div class="fairy-spec-create"><i class="layui-icon layui-icon-addition"></i>规格</div>`;
|
||||
table += '</td></tr></tfoot>';
|
||||
table += '</table>';
|
||||
@ -575,7 +575,7 @@ layui.define(['jquery', 'form', 'upload', 'layer', 'sortable'], function (export
|
||||
var theadTr = '<tr>';
|
||||
|
||||
theadTr += prependThead.map(function (t, i, a) {
|
||||
return '<th class="fairy-spec-name">' + t + '</th>';
|
||||
return '<th class="fairy-spec-name"><input type="hidden" name="kk['+i+']" value="' + t + '"/>' + t + '</th>';
|
||||
}).join('');
|
||||
|
||||
this.options.multipleSkuTableConfig.thead.forEach(function (item) {
|
||||
@ -615,14 +615,14 @@ layui.define(['jquery', 'form', 'upload', 'layer', 'sortable'], function (export
|
||||
tr += item.title.split(that.options.skuNameDelimiter).map(function (t, i, a) {
|
||||
if (that.options.rowspan) {
|
||||
if (index % skuRowspanArr[i] === 0 && skuRowspanArr[i] > 1) {
|
||||
return '<td class="fairy-spec-value" rowspan="' + skuRowspanArr[i] + '">' + t + '</td>';
|
||||
return '<td class="fairy-spec-value" rowspan="' + skuRowspanArr[i] + '"><input type="hidden" name="' + that.makeSkuName2(item, 'value'+i) + '" value="' + t + '"/>' + t + '</td>';
|
||||
} else if (skuRowspanArr[i] === 1) {
|
||||
return '<td class="fairy-spec-value">' + t + '</td>';
|
||||
return '<td class="fairy-spec-value"><input type="hidden" name="' + that.makeSkuName2(item, 'value'+i) + '" value="' + t + '"/>' + t + '</td>';
|
||||
} else {
|
||||
return '';
|
||||
}
|
||||
} else {
|
||||
return '<td>' + t + '</td>';
|
||||
return '<td><input type="hidden" name="' + that.makeSkuName2(item, 'value'+i) + '" value="' + t + '"/>' + t + '</td>';
|
||||
}
|
||||
}).join('');
|
||||
|
||||
@ -710,6 +710,9 @@ layui.define(['jquery', 'form', 'upload', 'layer', 'sortable'], function (export
|
||||
return 'skus[' + (this.options.skuNameType === 0 ? sku.id : sku.title) + '][' + conf.field + ']';
|
||||
}
|
||||
|
||||
makeSkuName2(sku, conf) {
|
||||
return 'skus[' + (this.options.skuNameType === 0 ? sku.id : sku.title) + '][' + conf + ']';
|
||||
}
|
||||
getSpecData() {
|
||||
return this.options.specData;
|
||||
}
|
||||
@ -729,7 +732,6 @@ layui.define(['jquery', 'form', 'upload', 'layer', 'sortable'], function (export
|
||||
skuData[key] = value;
|
||||
}
|
||||
});
|
||||
|
||||
return skuData;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user