分包医生

This commit is contained in:
zoujiandong
2024-01-16 14:59:06 +08:00
parent 562d4e9691
commit d5a9339ddd
1060 changed files with 3177 additions and 44707 deletions
+23
View File
@@ -0,0 +1,23 @@
import { API } from '../../../../utils/network/api'
let api = new API()
const app = getApp()
Page({
data: {
navbarData: {
showCapsule: 1, //是否显示左上角图标 1表示显示 0表示不显示
title: '操作手册', //导航栏 中间的标题
},
height: app.globalData.height,
list: []
},
onShow(){
console.log("onShow");
//获取医生我的账户数据
api.getBasicOperationManual().then(response => {
console.log(response);
this.setData({
list: response.data,
})
}).catch(errors => {console.error(errors);})
},
})
+7
View File
@@ -0,0 +1,7 @@
{
"component": true,
"usingComponents": {
"te-nav-bar": "../../../../commpents/te_navbar/index",
"van-cell": "@vant/weapp/cell/index"
}
}
+7
View File
@@ -0,0 +1,7 @@
<!-- 操作手册 -->
<te-nav-bar navbar-data='{{navbarData}}' ></te-nav-bar>
<view class="container">
<view class="item_list">
<van-cell size="large" url="/user/pages/yishi/manual_detail/index?manual_id={{item.manual_id}}" custom-style="border-radius: 20rpx;margin-bottom: 20rpx;" title="{{item.title}}" is-link wx:for="{{list}}" />
</view>
</view>
+11
View File
@@ -0,0 +1,11 @@
page{
background-color: #F6F6F6;
}
.container{
margin-top: 20rpx;
width: 100vw;
}
.item_list{
width: 92vw;
margin: 0 auto;
}