123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389 |
- <template>
- <view class="calendar">
- <u-toast ref="uToast" />
- <view class="updata u-flex u-row-between u-col-center">
- <view class="updata-item1 u-flex u-row-center" @click="towenjuan" v-if="wisWjdc == '允许' && wisWjdcUser == '1'">
- <text class="text">问卷调查</text>
- <!-- <image class="image1" src="../../static/img/right.png" mode=""></image> -->
- <image class="image2" src="../../static/img/wenjuan.png" mode=""></image>
- </view>
- <view class="updata-item2 u-flex u-row-center" @click="upload()" v-if="wisMhu == '允许'">
- <text class="text">上传病历</text>
- <!-- <image class="image1" src="../../static/img/right.png" mode=""></image> -->
- <image class="image2" src="../../static/img/bingli.png" mode=""></image>
- </view>
- </view>
- <view class="" style="padding: 10rpx 0;text-align: center;" v-if="wisWjdc == '允许' && wisWjdcUser == '1'">
- 您本月提交调研问卷{{count || 0}}次
- </view>
- <view class="con" v-if="dataList.length == 0 && wisMhu == '允许'">
- <image class="no" src="../../static/img/no.png" mode=""></image>
- <view class="text">列表内容为空</view>
- </view>
- <view class="list" v-if="dataList.length > 0">
- <view class="h6">历史上传</view>
- <view class="li" v-for="(item,index) in dataList" :key="index" @click="uploadID(item)">
- <view v-if="item.allocation==2">
- <view class="flex one">
- <view class="type">{{item.title}}</view>
- <view class="name">{{item.name}}</view>
- <!-- <view class="status status1">初审已通过</view> -->
- <view class="u-flex-col">
- <view class="status" v-if="item.firstTrial==0">未审核</view>
- <view class="status status1" v-if="item.firstTrial==2">初审已通过</view>
- <view class="status status2" v-if="item.firstTrial==1">未通过</view>
-
- </view>
- </view>
- <view class="flex address">
- <view>{{item.city}}</view>
- <view class="u-flex-1">{{item.hospital}}</view>
- <view class="one" style="margin: 0;">
- <!-- <view style="margin: 0;" class="status" v-if="item.type==0">专家未审核</view> -->
- <view style="margin: 0;" class="status status1" v-if="item.type==2">专家审核已通过</view>
- <view style="margin: 0;" class="status status2" v-if="item.type==1">专家审核未通过</view>
- </view>
- </view>
- <view class="flex" style="justify-content: space-between;">
- <view class="class">
- <view class="box">{{item.uploadingName}}</view>
- <view class="box">{{item.caseName}}</view>
- </view>
- </view>
- </view>
- <view v-else>
- <view class="flex one">
- <view class="type">{{item.title}}</view>
- <view class="name">{{item.name}}</view>
- <view class="u-flex-col">
- <view class="status" v-if="item.firstTrial==0">未审核</view>
- <view class="status status1" v-if="item.firstTrial==2">初审已通过</view>
- <view class="status status2" v-if="item.firstTrial==1">未通过</view>
- </view>
- </view>
- <view class="flex address">
- <view>{{item.city}}</view>
- <view class="u-flex-1">{{item.hospital}}</view>
- <view class="one" style="margin: 0;">
- <!-- <view style="margin:0;" class="status" v-if="item.type==0">专家未审核</view> -->
- <view style="margin:0;" class="status status1" v-if="item.type==2">专家审核已通过</view>
- <view style="margin:0;" class="status status2" v-if="item.type==1">专家审核未通过</view>
- </view>
- </view>
- <view class="flex" style="justify-content: space-between;">
- <view class="class">
- <view class="box">{{item.uploadingName}}</view>
- <view class="box">{{item.caseName}}</view>
- </view>
- <view class="btn" v-if="item.firstTrial==1">重新编辑</view>
- <view class="btn btn1" v-if="isup(item)">二次上传</view>
- </view>
- </view>
- </view>
- </view>
- <tabBar :pagePath="'/pages/index/calendar'"></tabBar>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- dataList: [],
- wisMhu: '',
- wisWjdc: '',
- wisWjdcUser: '',
- count: 0
- }
- },
- onLoad(option) {
- this.getsetting()
- },
- onShow() {
- this.getuser()
- this.$http.getTopicNum().then(res => {
- this.count = res.data.result
- })
- },
- methods: {
- getsetting() {
- this.$http.configInfo().then(res => {
- if (res.data.code == 200) {
- this.wisWjdcUser = res.data.result.wisWjdcUser
- }
- })
- },
- getuser() {
- this.$http.getUserInfo().then(res => {
- if (res.data.code == 200) {
- this.wisWjdc = res.data.result.wisWjdc
- this.wisMhu = res.data.result.wisMhu
- if (this.wisMhu == '允许') {
- this.patientQuideByPhongList()
- }
- }
- })
- },
- towenjuan() {
- uni.navigateTo({
- url: "./wenjuan-list"
- })
- },
- isup(item) {
- if (item.isSecondaryUpload == 2) {
- if (item.firstTrial == 2 && item.secondaryUpload == 1) {
- return true
- } else {
- return false
- }
- } else {
- return false
- }
- },
- patientQuideByPhongList() {
- this.$http.patientQuideByPhongList()
- .then(res => {
- // console.log(res)
- if (res.data.code == 200) {
- this.dataList = res.data.result
- }
- })
- },
- uploadID(item) {
- uni.setStorageSync('uploadData', JSON.stringify(item));
- uni.navigateTo({
- url: '/pages/doctor/upload?id=' + item.id,
- })
- },
- upload() {
- uni.navigateTo({
- url: '/pages/doctor/upload',
- })
- },
- }
- }
- </script>
- <style lang="scss">
- .calendar {
- padding-bottom: 120rpx;
- .updata {
- position: relative;
- width: 680rpx;
- margin: 24rpx auto 0;
- border-radius: 24rpx;
- // padding: 68rpx 0;
- text-align: center;
- // font-size: 32rpx;
- // color: $color;
- .updata-item2 {
- flex: 1;
- margin: 0 8rpx;
- height: 168rpx;
- background: linear-gradient(180deg, #22F5FB 0%, #9AFFF8 100%);
- border-radius: 24rpx;
- // padding: 0 12rpx 0 20rpx;
- .text {
- font-size: 36rpx;
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- color: #FFFFFF;
- margin-right: 26rpx;
- }
- .image1 {
- width: 40rpx;
- height: 40rpx;
- margin-right: 40rpx;
- }
- .image2 {
- width: 128rpx;
- height: 136rpx;
- }
- }
- .updata-item1 {
- flex: 1;
- margin: 0 8rpx;
- height: 168rpx;
- background: linear-gradient(180deg, #FFCE7D 0%, #FFDCB3 100%);
- border-radius: 24rpx;
- // padding: 0 12rpx 0 20rpx;
- .text {
- font-size: 36rpx;
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- color: #FFFFFF;
- margin-right: 32rpx;
- }
- .image1 {
- width: 40rpx;
- height: 40rpx;
- margin-right: 40rpx;
- }
- .image2 {
- width: 118rpx;
- height: 134rpx;
- }
- }
- }
- .con {
- width: 680rpx;
- margin: 24rpx auto;
- padding: 32rpx;
- background-color: #fff;
- border-radius: 24rpx;
- text-align: center;
- .no {
- width: 520rpx;
- height: 340rpx;
- }
- .text {
- font-size: 28rpx;
- color: rgba(0, 0, 0, 0.35);
- padding-bottom: 80rpx;
- }
- }
- .list {
- width: 680rpx;
- margin: 24rpx auto;
- box-sizing: border-box;
- // padding: 0 20rpx;
- background-color: #fff;
- border-radius: 24rpx;
- margin-top: 24rpx;
- .h6 {
- padding-top: 32rpx;
- font-size: 34rpx;
- color: $color;
- font-weight: 700;
- padding-left: 32rpx;
- }
- .li {
- font-size: 28rpx;
- color: rgba(0, 0, 0, 0.6);
- padding: 24rpx 32rpx;
- .flex {
- margin-bottom: 14rpx;
- }
- .address {
- view {
- margin-right: 20rpx;
- }
- }
- .class {
- display: flex;
- flex-direction: row;
- align-items: center;
- .box {
- padding: 4rpx 16rpx;
- background: rgba(22, 127, 255, 0.1);
- color: #167FFF;
- font-size: 24rpx;
- margin-right: 16rpx;
- border-radius: 24rpx;
- }
- }
- .btn {
- padding: 6rpx 24rpx;
- background: #F02E2F;
- color: #fff;
- font-size: 28rpx;
- border-radius: 24rpx;
- }
- .btn1 {
- background-color: $color;
- }
- .one {
- color: rgba(0, 0, 0, 0.8);
- .type {
- max-width: 280rpx;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- font-size: 32rpx;
- color: rgba(0, 0, 0, 0.8);
- margin-right: 24rpx;
- font-weight: bold;
- }
- .name {
- flex: 1;
- }
- .status {
- position: relative;
- }
- .status1 {
- color: $color;
- }
- .status2 {
- color: #F02E2F;
- }
- .status::after {
- content: '';
- position: absolute;
- left: -30rpx;
- top: 50%;
- transform: translateY(-50%);
- width: 10rpx;
- height: 10rpx;
- border-radius: 50%;
- background: #F0A22E;
- }
- .status1::after {
- content: '';
- position: absolute;
- left: -30rpx;
- top: 50%;
- transform: translateY(-50%);
- width: 10rpx;
- height: 10rpx;
- border-radius: 50%;
- background: $color;
- }
- .status2::after {
- content: '';
- position: absolute;
- left: -30rpx;
- top: 50%;
- transform: translateY(-50%);
- width: 10rpx;
- height: 10rpx;
- border-radius: 50%;
- background: #F02E2F;
- }
- }
- }
- }
- }
- </style>
|