mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
Update Company.php
This commit is contained in:
parent
45fc792026
commit
56366a49d5
@ -88,9 +88,8 @@ class Company extends Controller
|
|||||||
try {
|
try {
|
||||||
$result = ExpressService::instance()->company();
|
$result = ExpressService::instance()->company();
|
||||||
if (empty($result['code'])) $this->error($result['info']);
|
if (empty($result['code'])) $this->error($result['info']);
|
||||||
foreach ($result['data'] as $vo) data_save(BasePostageCompany::class, [
|
foreach ($result['data'] as $vo) BasePostageCompany::mUpdate([
|
||||||
'code_1' => $vo['code_1'], 'code_2' => $vo['code_2'],
|
'code_1' => $vo['code_1'], 'code_2' => $vo['code_2'], 'code_3' => $vo['code_3'], 'name' => $vo['title'], 'deleted' => 0,
|
||||||
'code_3' => $vo['code_3'], 'name' => $vo['title'], 'deleted' => 0,
|
|
||||||
], 'code_1');
|
], 'code_1');
|
||||||
$this->success('同步快递公司成功!');
|
$this->success('同步快递公司成功!');
|
||||||
} catch (HttpResponseException $exception) {
|
} catch (HttpResponseException $exception) {
|
||||||
|
@ -1023,7 +1023,11 @@ $(function () {
|
|||||||
|
|
||||||
/*! 注册 data-tips-image 事件行为 */
|
/*! 注册 data-tips-image 事件行为 */
|
||||||
onEvent('click', '[data-tips-image]', function () {
|
onEvent('click', '[data-tips-image]', function () {
|
||||||
$.previewImage(this.dataset.tipsImage || this.dataset.lazySrc || this.src, this.dataset.width);
|
var $imgs, items = [];
|
||||||
|
($imgs = $(this).parent().find('[data-tips-image]')).map(function () {
|
||||||
|
items.push({src: this.dataset.tipsImage || this.dataset.lazySrc || this.src});
|
||||||
|
}) && layui.layer.photos({anim: 5, photos: {start: $imgs.index(this), data: items}});
|
||||||
|
// $.previewImage(this.dataset.tipsImage || this.dataset.lazySrc || this.src, this.dataset.width);
|
||||||
});
|
});
|
||||||
|
|
||||||
/*! 注册 data-phone-view 事件行为 */
|
/*! 注册 data-phone-view 事件行为 */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user