Browse Source
Merge branch 'qs_local_order' into develop
Merge branch 'qs_local_order' into develop
# Conflicts: # app/Models/LanzuGoods.phpmaster
14 changed files with 195 additions and 66 deletions
-
21app/Admin/Common/LinkUrl.php
-
18app/Admin/Common/Rpc.php
-
14app/Admin/Controllers/ImsCjdcOrderMainController.php
-
1app/Admin/Controllers/Type.php
-
69app/Admin/Extensions/MyDetailPage.php
-
12app/Admin/Extensions/OrderDetail.php
-
22app/Admin/Extensions/OrderStateHandle.php
-
17app/Models/ImsCjdcOrder.php
-
11app/Models/ImsCjdcOrderMain.php
-
20app/Models/LanzuOrderGoods.php
-
2app/Models/LanzuServiceHorseman.php
-
4public/css/detail.css
-
5resources/lang/zh-CN/ims-cjdc-order-main.php
-
45resources/views/orderdetail.php
@ -0,0 +1,21 @@ |
|||
<?php |
|||
|
|||
|
|||
namespace App\Admin\Common; |
|||
|
|||
|
|||
class LinkUrl |
|||
{ |
|||
/** |
|||
* js |
|||
*/ |
|||
const VUE_JS = 'https://cdn.jsdelivr.net/npm/vue'; |
|||
const ELEMENT_UI_JS = 'https://unpkg.com/element-ui/lib/index.js'; |
|||
|
|||
|
|||
/** |
|||
* css |
|||
*/ |
|||
const ELEMENT_UI_CSS="https://unpkg.com/element-ui/lib/theme-chalk/index.css"; |
|||
const DETAIL_CSS = 'css/detail.css'; |
|||
} |
|||
@ -0,0 +1,20 @@ |
|||
<?php |
|||
|
|||
|
|||
namespace App\Models; |
|||
|
|||
use Dcat\Admin\Traits\HasDateTimeFormatter; |
|||
use Illuminate\Database\Eloquent\Model; |
|||
|
|||
class LanzuOrderGoods extends Model |
|||
{ |
|||
use HasDateTimeFormatter; |
|||
|
|||
protected $table = 'lanzu_order_goods'; |
|||
protected $dateFormat = 'U'; |
|||
|
|||
public function goods() |
|||
{ |
|||
return $this->belongsTo('\App\Models\LanzuGoods','goods_id','id'); |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue