图片资源更新到云端

This commit is contained in:
李琦
2026-05-15 16:42:32 +08:00
parent 6294a3db0c
commit 39843877fd
109 changed files with 89 additions and 474 deletions

View File

@@ -267,7 +267,7 @@
// 从消息中提取发送者信息
let senderName = '新消息';
let senderAvatar = '/static/xx/ysxx.png';
let senderAvatar = 'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/xx/ysxx.png';
// 尝试解析发送者ID获取更多信息
const senderId = message.sender_user_id || '';

View File

@@ -167,7 +167,7 @@ export default {
},
assistantAvatar: {
type: String,
default: '/static/images/assistant-avatar.png',
default: 'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/images/assistant-avatar.png',
},
assistantName: {
type: String,
@@ -175,7 +175,7 @@ export default {
},
userAvatar: {
type: String,
default: '/static/images/user-avatar.png',
default: 'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/images/user-avatar.png',
},
prescriptionInfo: {
type: String,

View File

@@ -2,7 +2,7 @@
<view v-if="visible" class="notification-wrapper" :class="{ 'slide-in': visible }" :style="{ paddingTop: notificationTop + 'px' }">
<view class="notification" @click="handleClick">
<!-- 头像 -->
<image class="avatar" :src="avatar || '/static/xx/ysxx.png'" mode="aspectFill" />
<image class="avatar" :src="avatar || 'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/xx/ysxx.png'" mode="aspectFill" />
<!-- 内容区域 -->
<view class="content">

View File

@@ -47,7 +47,7 @@
<!-- 图片部分 -->
<view class="list_info">
<view class="list_left">
<image :src="item.avatar || '/static/mine/avatar_1.png'" mode="医生头像"></image>
<image :src="item.avatar || 'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/mine/avatar_1.png'" mode="医生头像"></image>
<!-- 医生 -->
<view class="list_title">
<view class="titles_name">

View File

@@ -47,7 +47,7 @@
<view class="it_info">{{item.small_info}}</view>
<view class="it_price">
<text>{{item.drugstore_drug.price}}</text>
<image src="/static/home/gwc.png" mode=""
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/home/gwc.png" mode=""
@tap.stop="toCartImg(item.drugstore_drug.drug_id)"></image>
</view>
</view>

View File

@@ -29,7 +29,7 @@
<!-- 商品列表 -->
<view class="list" v-for="(item,index) in infoList" @click="toDetail(item.id)" :key="item.id">
<view class="list_">
<image :src="item.cover||'/static/xx/cp.png'" mode=""></image>
<image :src="item.cover||'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/xx/cp.png'" mode=""></image>
<view class="list_title">
{{item.title}}
</view>

View File

@@ -70,14 +70,14 @@
<view class="nav-title" style="color:#4175EE">到店挂号</view>
<view class="nav-desc">预约专家 不排队</view>
</view>
<image src="../../static/home/bg1.png" class="nav-icon-img-64" mode="aspectFit"></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/home/bg1.png" class="nav-icon-img-64" mode="aspectFit"></image>
</view>
<view class="nav-card" @click="goYard(2)">
<view class="nav-content">
<view class="nav-title" style="color:#00B578">在线复诊</view>
<view class="nav-desc">在线选药 极速达</view>
</view>
<image src="../../static/home/bg2.png" class="nav-icon-img-64" mode="aspectFit"></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/home/bg2.png" class="nav-icon-img-64" mode="aspectFit"></image>
</view>
</view>
@@ -103,7 +103,7 @@
<view class="doctor-card" @click="goLookDoctor(item.id)" v-for="(item,index) in doctorList" :key="item.id">
<view class="doc-main">
<view class="doc-avatar-box">
<image :src="item.avatar || '/static/mine/avatar_1.png'" mode="aspectFill" class="doc-avatar"></image>
<image :src="item.avatar || 'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/mine/avatar_1.png'" mode="aspectFill" class="doc-avatar"></image>
<view class="status-dot"></view>
</view>
<view class="doc-info">
@@ -148,7 +148,7 @@
<view class="product-list-container">
<view class="product-card" @click="goProductDetail(item)" v-for="(item, index) in displayProductList" :key="index">
<view class="prod-img-box">
<image :src="(item.drug && item.drug.image) ? item.drug.image : '/static/mine/avatar_1.png'" mode="aspectFill" class="prod-img" :class="{ 'prescription-blur': item.drug && item.drug.type == 2 && (item.drug.is_otc === 0 || item.drug.is_otc === '0') }"></image>
<image :src="(item.drug && item.drug.image) ? item.drug.image : 'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/mine/avatar_1.png'" mode="aspectFill" class="prod-img" :class="{ 'prescription-blur': item.drug && item.drug.type == 2 && (item.drug.is_otc === 0 || item.drug.is_otc === '0') }"></image>
</view>
<view class="prod-info">
@@ -195,7 +195,7 @@
<!-- 全局组件 -->
<view class="bg-" v-if="bgShow" @click="bgShow=false">
<image src="/static/home/bg.png" mode="widthFix"></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/home/bg.png" mode="widthFix"></image>
</view>
<u-toast ref="uToast" />
</view>

View File

@@ -77,12 +77,12 @@
<!-- 底部 -->
<view class="footer">
<view class="box">
<image src="/static/shop/home.png" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/shop/home.png" mode=""></image>
<text>首页</text>
</view>
<view class="box" @click="toShop">
<u-badge type="error" :count="gwcNum" size="mini" :offset="[0,16]"></u-badge>
<image :src="gwcNum==0&&'/static/shop/gwc.png' || gwcNum>0&&'/static/shop/gwc_l.png'" mode=""></image>
<image :src="gwcNum==0&&'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/shop/gwc.png' || gwcNum>0&&'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/shop/gwc_l.png'" mode=""></image>
<text :class="gwcNum>0?'active':''">购物车</text>
</view>
<view class="to_btns" @click="toAdd(drugDetailsList.drug_store_relation.drug_id)">

View File

@@ -25,14 +25,14 @@
<!-- 图片展示 -->
<view class="section" @click="gologin">
<u-swiper :list="list" :img-mode="aspectFill" :height="300" :interval="4000"></u-swiper>
<!-- <image class="banner" mode="aspectFill" src="/static/home/banner.png"></image> -->
<!-- <image class="banner" mode="aspectFill" src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/home/banner.png"></image> -->
</view>
<!-- 导航栏 -->
<view class="nav" v-if="isShow_envVersion==false">
<view class="nav_service" @click="gologin">
<view class="nav_service_img">
<image src="../../static/home/bg1.png" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/home/bg1.png" mode=""></image>
</view>
<view class="nav_service_title">
到店挂号
@@ -41,7 +41,7 @@
<view class="nav_service" @click="gologin">
<view class="nav_service_img">
<image src="../../static/home/bg2.png" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/home/bg2.png" mode=""></image>
</view>
<view class="nav_service_title">
预约购药
@@ -105,7 +105,7 @@
<!-- 图片部分 -->
<view class="list_infos">
<view class="list_lefts">
<image :src="item.avatar || '/static/mine/avatar_1.png'" mode="医生头像"></image>
<image :src="item.avatar || 'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/mine/avatar_1.png'" mode="医生头像"></image>
<!-- 医生 -->
<view class="list_title">
<view class="titles_name">
@@ -153,9 +153,9 @@
show: true,
doctorList: [],
list: [
// '/static/home/banner.png',
// '/static/home/banner.png',
// '/static/home/banner.png'
// 'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/home/banner.png',
// 'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/home/banner.png',
// 'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/home/banner.png'
],
info:[],
isShow_envVersion: true
@@ -467,7 +467,7 @@
display: flex;
align-items: center;
justify-content: space-around;
background: url('/static/home/bg01.png') no-repeat;
background: url('https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/home/bg01.png') no-repeat;
background-size: 100% 100%;
.nav_service_img {
@@ -490,7 +490,7 @@
}
.nav_service:last-child {
background: url('/static/home/bg02.png') no-repeat;
background: url('https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/home/bg02.png') no-repeat;
background-size: 100% 100%;
}
}

View File

@@ -3,7 +3,7 @@
<MessageNotification />
<!-- 描述 -->
<view class="card" v-for="item in list" :key="item.id" @click="toInfo(item.id)">
<image :src="item.content['avatar']||'/static/mine/avatar_1.png'" mode=""></image>
<image :src="item.content['avatar']||'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/mine/avatar_1.png'" mode=""></image>
<view class="info">
<view class="infos_title">
<text class="infos">{{item.content['doctor']}}医生</text>

View File

@@ -17,7 +17,7 @@
<!-- 头像 -->
<view class="avator">
<view class="img">
<image src="/static/xx/xt.png" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/xx/xt.png" mode=""></image>
</view>
<u-badge size="default" v-if="system.num>=0" :count="system.num" :is-dot="system.num==0?true:false"
type="error" :offset="system.num>0?[-4,-8]:[0,0]"></u-badge>
@@ -41,7 +41,7 @@
<!-- 头像 -->
<view class="avator">
<view class="img">
<image src="/static/xx/cp.png" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/xx/cp.png" mode=""></image>
</view>
<u-badge size="default" v-if="order.num>=0" :count="order.num" :is-dot="order.num==0?true:false"
type="error" :offset="order.num>0?[-4,-8]:[0,0]"></u-badge>
@@ -65,7 +65,7 @@
<!-- 头像 -->
<view class="avator">
<view class="img">
<image src="/static/xx/ysxx.png" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/xx/ysxx.png" mode=""></image>
</view>
<u-badge size="default" v-if="doctor.num>=0" :count="doctor.num" :is-dot="doctor.num==0?true:false"
type="error" :offset="doctor.num>0?[-4,-8]:[0,0]"></u-badge>
@@ -90,8 +90,8 @@
<!-- 头像 -->
<view class="avator">
<view class="img">
<image src="/static/xx/ysxx.png" mode=""></image>
<!-- <image src="/static/xx/zhuanzhen.png" mode=""></image>-->
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/xx/ysxx.png" mode=""></image>
<!-- <image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/xx/zhuanzhen.png" mode=""></image>-->
</view>
<u-badge size="default" v-if="transfer.num>=0" :count="transfer.num" :is-dot="transfer.num==0?true:false"
type="error" :offset="transfer.num>0?[-4,-8]:[0,0]"></u-badge>

View File

@@ -3,7 +3,7 @@
<MessageNotification />
<!-- 描述 -->
<view class="card" v-for="item in list" :key="item.id">
<image src="/static/xx/cpdd.png" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/xx/cpdd.png" mode=""></image>
<view class="info">
<view class="infos_title">
<text class="infos">订单</text>

View File

@@ -8,7 +8,7 @@
<view class="qualification-item" v-for="(item, index) in qualifications" :key="index" @click="previewImage(index)">
<view class="qualification-content">
<text class="qualification-name">{{ item.name }}</text>
<image :src="item.image || '/static/mine/avatar_1.png'" mode="aspectFit" class="qualification-img"></image>
<image :src="item.image || 'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/mine/avatar_1.png'" mode="aspectFit" class="qualification-img"></image>
</view>
</view>
</view>

View File

@@ -7,7 +7,7 @@
<view class="title">
欢迎登录
</view>
<image src="@/static/empty/login.png" mode="aspectFit"></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/empty/login.png" mode="aspectFit"></image>
<!-- 修改点1移除 disabled 属性和 bg 样式判断使其始终可点击且显示激活颜色 -->
<button class="btn" @click="handleLoginClick">一键登录</button>

View File

@@ -10,7 +10,7 @@
<view class="info">
<view class="pwd">
<d-input :maxlength="11" height="96" v-model="form['mobile']"
:prefixIcon="require('../../static/choose/act.png')" borderRadius="96rpx" prefixIconSize="40rpx"
prefixIcon="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/choose/act.png" borderRadius="96rpx" prefixIconSize="40rpx"
placeholder="请输入手机号" @blur="check" @input="is_d=false" :placeholder-style="{fontSize:'32rpx'}"
:custom-style="{fontSize:'32rpx',paddingLeft:'60rpx'}" />
</view>

View File

@@ -4,7 +4,7 @@
<!-- 头部 -->
<view class="head">
<view class="head_img">
<image :src="infoList.user.avatarurl || '/static/mine/mr_tx.png' " mode=""></image>
<image :src="infoList.user.avatarurl || 'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/mine/mr_tx.png' " mode=""></image>
</view>
<view class="head_info">
<view class="head_name">
@@ -31,25 +31,25 @@
</view>
<view class="info">
<view class="item" @click="toAll(1)" style="position: relative;">
<image src="/static/mine/dfk.png" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/mine/dfk.png" mode=""></image>
<text>待付款</text>
<u-badge type="error" :count="infoList.ProductOrder.unpay" :offset="[-2,20]"></u-badge>
</view>
<view class="item" @click="toAll(2)" style="position: relative;">
<image src="/static/mine/dfh.png" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/mine/dfh.png" mode=""></image>
<text>待发货</text>
<u-badge type="error" :count="infoList.ProductOrder.wait_send" :offset="[-2,20]"></u-badge>
</view>
<view class="item" @click="toAll(3)" style="position: relative;">
<image src="/static/mine/dsh.png" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/mine/dsh.png" mode=""></image>
<text>待收货</text>
<u-badge type="error" :count="infoList.ProductOrder.wait_accept" :offset="[-2,20]"></u-badge>
</view>
<view class="item" @click="toAll(4)">
<image src="/static/mine/tk.png" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/mine/tk.png" mode=""></image>
<text>已完成</text>
</view>
</view>
@@ -64,15 +64,15 @@
<!-- 列表 -->
<view class="list">
<!-- <navigator url="../../subPackages/my/myorder" class="infos">
<image src="@/static/mine/01.png" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/mine/01.png" mode=""></image>
<text>问诊记录</text>
</navigator> -->
<navigator url="../../subPackages/my/myrecord" class="infos">
<image src="@/static/mine/02.png" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/mine/02.png" mode=""></image>
<text>处方记录</text>
</navigator>
<navigator url="../../subPackages/my/myappiont" class="infos">
<image src="@/static/mine/03.png" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/mine/03.png" mode=""></image>
<text>挂号记录</text>
</navigator>
</view>
@@ -87,15 +87,15 @@
<!-- 列表 -->
<view class="list">
<navigator class="infos" url="../../subPackages/my/myinfo" v-if="isShow_envVersion==false">
<image src="@/static/mine/jzr.png" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/mine/jzr.png" mode=""></image>
<text>就诊人管理</text>
</navigator>
<navigator url="../../subPackages/setup/area-list" class="infos">
<image src="@/static/mine/gy.png" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/mine/gy.png" mode=""></image>
<text>收货地址</text>
</navigator>
<navigator url="../../subPackages/setup/customer-service" class="infos">
<image src="@/static/mine/kfzx.png" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/mine/kfzx.png" mode=""></image>
<text>客服中心</text>
</navigator>
</view>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 594 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1019 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 996 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 790 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 782 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 226 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 870 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 859 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 971 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 932 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

File diff suppressed because one or more lines are too long

View File

@@ -14,7 +14,7 @@
</view>
<!-- 图片 -->
<view class="card_top_right">
<image :src="doctorList.avator || '/static/mine/avatar_1.png'" mode="医生头像"></image>
<image :src="doctorList.avator || 'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/mine/avatar_1.png'" mode="医生头像"></image>
</view>
</view>
<!-- 好评率 擅长 -->
@@ -69,11 +69,11 @@
</view>
<view class="empty" v-if="userList.length<=0">
<image src="/static/empty/orders.png" mode="aspectFit"></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/empty/orders.png" mode="aspectFit"></image>
</view>
<view class="items" v-for="(item,index) in userList" :key="item.id">
<image :src="item.avator || '/static/mine/avatar_1.png'" mode=""></image>
<image :src="item.avator || 'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/mine/avatar_1.png'" mode=""></image>
<view class="items_right">
<view class="item_name">
<view class="title">

View File

@@ -21,14 +21,14 @@
<!-- 列表 -->
<!-- 空页 -->
<view class="empty" v-if="userList.length<=0">
<image src="/static/empty/orders.png" mode="aspectFit"></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/empty/orders.png" mode="aspectFit"></image>
<view class="text">
暂无评价
</view>
</view>
<view class="items" v-for="(item,index) in userList" :key="item.id">
<image :src="item.avator || '/static/mine/avatar_1.png'" mode=""></image>
<image :src="item.avator || 'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/mine/avatar_1.png'" mode=""></image>
<view class="items_right">
<view class="item_name">
<view class="title">

View File

@@ -14,7 +14,7 @@
{{doctorList.store}}
</view>
</view>
<image :src="doctorList.avator || '/static/mine/avatar_1.png'" mode=""></image>
<image :src="doctorList.avator || 'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/mine/avatar_1.png'" mode=""></image>
</view>
<!-- 擅长疾病 -->

View File

@@ -26,7 +26,7 @@
<text class="iconfont icon-bianji" v-if="actived==item.id" @click="toEdit"></text>
</view>
<text>{{(item.sex)% 2 == 1 ? "男" : "女"}} &nbsp; {{item.age}}</text>
<image src="@/static/choose/choosed.png" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/choose/choosed.png" mode=""></image>
</view>
<!-- 添加就诊人 -->

View File

@@ -10,7 +10,7 @@
:displayed-messages="postRegisterDisplayedMessages"
:assistant-avatar="postRegAssistantAvatar"
:assistant-name="postRegAssistantName"
user-avatar="/static/images/user-avatar.png"
user-avatar="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/images/user-avatar.png"
:prescription-info="postRegisterPrescriptionInfo"
:is-typing="postRegisterIsTyping"
:scroll-into-view="postRegisterScrollIntoView"
@@ -183,7 +183,7 @@ export default {
postRegisterScrollIntoView: '',
postRegisterSubmitting: false,
postRegisterWaiting: false,
postRegAssistantAvatar: '/static/images/assistant-avatar.png',
postRegAssistantAvatar: 'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/images/assistant-avatar.png',
postRegAssistantName: '医生助理',
showPostRegisterNotice: true,
parsedPostRegisterNoticeParts: [],
@@ -399,7 +399,7 @@ export default {
if (res.data && res.data.code === 0) {
const config = res.data.result || {};
this.postRegAssistantName = config.name || '医生助理';
this.postRegAssistantAvatar = config.avatar || '/static/images/assistant-avatar.png';
this.postRegAssistantAvatar = config.avatar || 'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/images/assistant-avatar.png';
const d = parseFloat(config.reply_delay);
if (!Number.isNaN(d) && d > 0) {
this.postRegisterReplyDelay = d;

View File

@@ -62,7 +62,7 @@
<!-- 专家 -->
<view class="doctor">
<view class="top">
<image src="/static/logo.png" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/logo.png" mode=""></image>
<view class="doctor_info">
<view class="doctor_name">
@@ -118,7 +118,7 @@
<view class="doctor">
<view class="top">
<image src="/static/logo.png" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/logo.png" mode=""></image>
<view class="doctor_info">
<view class="doctor_name">

View File

@@ -72,7 +72,7 @@
<view class="list_west" v-if="orderInfo.ProductOrder.prescription_type==2||orderInfo.ProductOrder.prescription_type==5||orderInfo.ProductOrder.prescription_type==7">
<view class="list" v-for="(item,index) in orderInfo.ProductOrderItems" :key="item.id">
<view class="img">
<image :src="item.drug_image || '/static/empty/gwc.png'" mode=""></image>
<image :src="item.drug_image || 'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/empty/gwc.png'" mode=""></image>
</view>
<view class="it">
<view class="it_name">{{item.drug_name}}{{item.drug.function}}</view>

View File

@@ -16,7 +16,7 @@
<!-- 空页 orderList.length==0 -->
<view class="empty" v-if="orderList.length==0">
<image src="@/static/empty/orders.png" mode="aspectFit"></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/empty/orders.png" mode="aspectFit"></image>
<text>还没有新的商品订单~</text>
</view>
@@ -75,7 +75,7 @@
</view>
<view class="info" v-for="it in (item.items).slice(0,3)" :key="it.id">
<view class="xy_">
<image :src="it.drug_image || '/static/mine/zy_mr.jpg'" mode=""></image>
<image :src="it.drug_image || 'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/mine/zy_mr.jpg'" mode=""></image>
<view class="infos">
<view class="name">{{it.drug_name}}
<view class="">

View File

@@ -4,7 +4,7 @@
<!-- 中转页 -->
<view class="none">
<!-- 订单未生成 -->
<image src="@/static/mine/shop_no.gif" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/mine/shop_no.gif" mode=""></image>
<view class="order">
订单正在生成中请稍后...
</view>

View File

@@ -3,7 +3,7 @@
<MessageNotification />
<!-- 头部 -->
<view class="head">
<image src="@/static/empty/login.png" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/empty/login.png" mode=""></image>
<text>萧康诊所门店</text>
</view>

View File

@@ -12,7 +12,7 @@
<!-- 空页 -->
<view class="empty" v-if="infoList.length==0">
<image src="@/static/empty/orders.png" mode="aspectFit"></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/empty/orders.png" mode="aspectFit"></image>
<view class="word">暂无挂号记录~</view>
</view>

View File

@@ -4,7 +4,7 @@
<view class="none" v-if="showList==false">
<!-- 暂未添加就诊人 -->
<view class="conter">
<image src="/static/empty/adduser.png" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/empty/adduser.png" mode=""></image>
<text class="word">暂未添加就诊人</text>
<text class="btn" @click="addPerson">添加</text>
</view>

View File

@@ -201,7 +201,7 @@
<view class="titles">
{{status==1&&'温馨提示,请遵医嘱服药!处方'+data.valid_hours+'小时内有效!'|| status==3&&'温馨提示请遵医嘱服药你的处方已过48小时' || status==4&&'本处方为产品服务包'}}
</view>
<image src="/static/group/sx.png" class="image" v-if="status==3"></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/group/sx.png" class="image" v-if="status==3"></image>
</view>

View File

@@ -11,7 +11,7 @@
<!-- 空页 -->
<view class="empty" v-if="infoList.length==0">
<image src="@/static/empty/orders.png" mode="aspectFit"></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/empty/orders.png" mode="aspectFit"></image>
<view class="word">暂无处方记录~</view>
</view>

View File

@@ -16,7 +16,7 @@
<li>
<view class="li_bottom">
<view class="li_bottom_left">
<image src="../../static/logo.png" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/logo.png" mode=""></image>
<view class="li_bottom_left_info">
<view class="info_name">
<text >李磊</text>
@@ -31,7 +31,7 @@
<li>
<view class="li_bottom">
<view class="li_bottom_left">
<image src="../../static/logo.png" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/logo.png" mode=""></image>
<view class="li_bottom_left_info">
<view class="info_name">
<text >李磊</text>

View File

@@ -2,7 +2,7 @@
<view class="container safe-area-inset-bottom">
<MessageNotification />
<view class="card">
<image src="/static/empty/yhq.png" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/empty/yhq.png" mode=""></image>
<view class="store">
<view class="name">
<text>当前门店</text>
@@ -35,7 +35,7 @@
<!-- 空页 -->
<view class="empty" v-if="storeinfo.length<=0">
<image src="/static/empty/orders.png" mode="aspectFit"></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/empty/orders.png" mode="aspectFit"></image>
<text>暂无门店信息</text>
</view>

View File

@@ -93,7 +93,7 @@
<view class="list_west" v-if="west">
<view class="list" v-for="(item,index) in west" :key="item.id">
<view class="img">
<image :src="item.content.image || '/static/empty/gwc.png'" mode=""></image>
<image :src="item.content.image || 'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/empty/gwc.png'" mode=""></image>
</view>
<view class="it">
<view class="it_name">{{item.content.drug_name}}{{item.content.specification}}</view>

View File

@@ -78,7 +78,7 @@
<image
class="product-img"
:class="{ 'prescription-blur': item.drug && item.drug.is_otc === 0 && item.drug.type == 2 }"
:src="(item.drug && item.drug.image) ? item.drug.image : '/static/mine/avatar_1.png'"
:src="(item.drug && item.drug.image) ? item.drug.image : 'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/mine/avatar_1.png'"
mode="aspectFill"
lazy-load
/>
@@ -203,7 +203,7 @@ export default {
},
computed: {
getProductImage() {
return (this.currentProduct.drug && this.currentProduct.drug.image) ? this.currentProduct.drug.image : '/static/mine/avatar_1.png';
return (this.currentProduct.drug && this.currentProduct.drug.image) ? this.currentProduct.drug.image : 'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/mine/avatar_1.png';
},
getProductName() {
return (this.currentProduct.drug && this.currentProduct.drug.drug_name) ? this.currentProduct.drug.drug_name : '';

View File

@@ -4,7 +4,7 @@
<view class="none" v-if="actionList.length == 0">
<!-- 暂无收货地址 -->
<view class="conter">
<image src="/static/empty/wddz.png" mode=""></image>
<image src="https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-client-wx/static/empty/wddz.png" mode=""></image>
<text class="word">暂无收货地址</text>
</view>
</view>

Some files were not shown because too many files have changed in this diff Show More