91 lines
3.6 KiB
Plaintext
91 lines
3.6 KiB
Plaintext
<view id="managementIndex">
|
|
<view class="t_box">
|
|
<view class="t_box_top"></view>
|
|
<view class="t_box_img">
|
|
<image src="{{info.logo_url}}"></image>
|
|
</view>
|
|
<view class="t_box_c">
|
|
<text class="storename" style="text-align:center;">{{info.producer_name}}</text>
|
|
<view style="text-align:center;">
|
|
<text class="adress">{{info.address_name}}</text>
|
|
<text class="tell">热销:<text class="tell_i">{{info.sell_total}}</text></text>
|
|
</view>
|
|
<view class="t_box_c_box">
|
|
|
|
<view class="t_box_c_start" bindtap="open_one">
|
|
<i class="iconfont icon-fontclass-zhizhao"></i>
|
|
<view>店铺证照</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view style="height: 20.16rpx"></view>
|
|
<view class="t_bottom">
|
|
<view class="search">
|
|
<i class="iconfont icon-sousuo" style="margin-right:20rpx;" bindtap="onSearch" ></i>
|
|
<input type="text" value="{{value_s}}" placeholder="搜索关键词" bindinput="changeValue" bindconfirm="onSearch">
|
|
|
|
</input>
|
|
</view>
|
|
<view class="lis" wx:for="{{goods_list}}">
|
|
<view class="lisLeft">
|
|
<image src="{{item.thumb}}" alt="" data-goodid="{{item.goods_id}}" bindtap="toGoods"></image>
|
|
</view>
|
|
<view class="lisRight">
|
|
<view class="lisRight_t">
|
|
{{item.title}}
|
|
</view>
|
|
|
|
<view class="lisrRight_m">
|
|
<view class="left_m">
|
|
<view class="left_m_t">
|
|
原价:<text class="left_m_o">{{language['money']}}{{item.market_price}}</text>
|
|
</view>
|
|
<view class="left_m_t">
|
|
现价:<text class="left_m_u">{{language['money']}}{{item.price}}</text>
|
|
</view>
|
|
</view>
|
|
<view class="right_m" data-goodid="{{item.goods_id}}" bindtap="toGoods">立即采购</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="t_pos">
|
|
<view class="t_pos_btn" bindtap="open_two">
|
|
<i class="iconfont icon-fontclass-mendianfenlei"></i>
|
|
商品分类
|
|
</view>
|
|
<view class="t_pos_btn" bindtap="toproclamation">
|
|
<i class="iconfont icon-fontclass-gonggao"></i>
|
|
店铺公告说明
|
|
</view>
|
|
</view>
|
|
<van-popup show="{{show}}" closeable close-on-click-overlay="true" bind:close="posterClose" custom-style="background-color: transparent" >
|
|
<view class="pop" >
|
|
<view
|
|
wx:for="{{catory}}"
|
|
:key="index"
|
|
class="{{index == ind ? 'tapPop popbox' : 'popbox'}}"
|
|
data-index="{{index}}"
|
|
data-id="{{item.id}}"
|
|
bindtap="changeIndex"
|
|
>
|
|
{{ item.name }}
|
|
</view>
|
|
</view>
|
|
<view class="posPop">
|
|
<i class="iconfont icon-pm_auction_defeat" bindtap="open_three"></i>
|
|
</view>
|
|
</van-popup>
|
|
<van-popup show="{{showCard}}" closeable close-on-click-overlay="true" bind:close="posterClose" custom-style="width: 100%;height: 100%;overflow: auto;background-color:#f2f2f2;" position="right" >
|
|
<van-nav-bar title="厂家管理" left-text="" right-text="" left-arrow bind:click-left="onClickLeft" />
|
|
<view class="Cardimg">
|
|
<view style="text-align: left;">店铺证照</view>
|
|
<view style="width:100%;display:flex;flex-wrap:wrap;justify-content:space-between;margin-top:30rpx;">
|
|
<block wx:for="{{info.business_license_url}}">
|
|
<image style="width:48%;margin-bottom:20rpx;" src="{{item}}"></image>
|
|
</block>
|
|
</view>
|
|
</view>
|
|
</van-popup>
|
|
</view> |