123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331 |
- <template>
- <view class="categoryOne">
- <view class="filter" @click="filterClick" v-if="entrance == 'view'">
- <text class="newicon newicon-shaixuan"></text>
- </view>
- <view class="body" v-if="dataInfo.list.length" :class="entrance == 'view' ? 'mar-t40' : ''">
- <view class="body_item" v-for="data in dataInfo.list" :key="data.id">
- <view @click="toCategoryTwo(data)">
- <view class="title">{{data.title}}</view>
- <view class="content">
- <view v-html="data.content"></view>
- </view>
- <view class="sign">
- <view>引入次数:{{data.introduceCount || 0}}</view>
- <view>{{formatDate(data.createTime, 'yyyy-MM-dd HH:mm:ss')}}</view>
- </view>
- </view>
- <view class="btn-style">
- <button v-if="entrance!='view'" @click.stop="importData(data)" type="default" class="primaryButton btn">引入</button>
- </view>
- </view>
- <view class="back-style" @click="goBack">
- <text class="newicon newicon-fanhui1"></text>
- </view>
- </view>
- <view class="zanwu" v-else>
- <text class="newicon newicon-zanwu"></text>
- </view>
- <view class="back-style" @click="goBack" v-if="entrance == 'view'">
- <text class="newicon newicon-fanhui1"></text>
- </view>
- <view v-if="dataInfo.list.length==0 && entrance!='view'" class="foot_common_btns">
- <button @click="goBack" type="default" class="primaryButton btn">返回</button>
- </view>
- <repositoryFilter v-if="isFilter" @cancelEmit="cancelFilter"
- @confirmEmit="conformFilter" :evt="evtFilter" :viewType="entranceType"></repositoryFilter>
- </view>
- </template>
- <script setup>
- import { ref, reactive} from 'vue'
- import { onLoad, onPullDownRefresh, onReachBottom } from '@dcloudio/uni-app'
- import { api_getSolution,api_getDictionary } from "@/http/api.js"
- import { useSetTitle } from '@/share/useSetTitle.js'
- import { useGoBack } from '@/share/useGoBack.js'
- import { useHandlerStore } from '@/stores/handler'
- import repositoryFilter from '@/components/repositoryFilter.vue';
- import { useLoginUserStore } from '@/stores/loginUser'
- import { filterFormatDate } from '@/filters/filterFormatDate.js'
-
- useSetTitle();
- const { formatDate } = filterFormatDate();
- const loginUserStore = useLoginUserStore();
- const handlerStore = useHandlerStore();
-
- const { goBack } = useGoBack();
-
- // 操作类型
- // const operateType = ref(null)
-
- // 关联故障分类的知识库数量
- const introduceCount = ref(0)
-
- // 入口类型
- const entrance = ref(null)
-
- const entranceType = ref(null)
-
- // 筛选数据
- const evtFilter = ref({})
-
- // 筛选状态
- const isFilter = ref(null)
-
- // 字典
- const dicData = ref(null)
-
- // 数据
- const dataInfo = reactive({
- list: [],//工单列表
- idx: 0,//页码
- hasMore: true,//是否有更多数据
- incidentId: undefined,//事件ID
- })
-
- // 跳转知识库详情
- function toCategoryTwo(data){
- uni.navigateTo({
- url: `/pages/repositoryDetails/repositoryDetails?incidentId=${dataInfo.incidentId}
- &solutionnumber=${data.solutionNumber}&editType=${entrance.value}&entranceType=${entranceType.value}`
- })
- }
-
- // 引入
- function importData(data){
- let url = null
- let type = handlerStore.handler.data.operateType
- let storeInfo = handlerStore.handler.data
- storeInfo.introduceCount = introduceCount.value
- storeInfo.handleDescription = '引用知识库解决,知识库编号' + data.solutionNumber
- storeInfo.solutionId = data.id
- storeInfo.type = 'rep'
- storeInfo.isSummaryNext = 1
- handlerStore.setHandlerData(storeInfo,'assign', 'assign')
- if(type=='malfunction'){ //故障处理
- url = '/pages/handler/handler'
- }else if(type=='reissue'){ //补单
- url = '/pages/assign/assign'
- }
- uni.navigateTo({
- url: url
- })
- }
-
- // 点击筛选
- function filterClick(){
- isFilter.value = true;
- }
-
- // 确认筛选
- function conformFilter(evtFilter){
- evtFilter.value = evtFilter;
- isFilter.value = false;
- getList(evtFilter);
- }
-
- // 关闭筛选
- function cancelFilter(){
- isFilter.value = false;
- }
-
- // 获取列表信息
- function getList(data){
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
-
- if(dataInfo.idx === 0){
- dataInfo.list = [];
- }
- let categoryId = entrance.value=='view' ? data && data.category : handlerStore.handler.data.category.id
- let postData = {
- idx: 0,
- sum: 9999,
- solution: {
- deleteFlag:0,
- hosId: loginUserStore.loginUser.user.currentHospital.id,
- // category:{
- // id:'',
- // },
- categoryId:null,
- title:'',
- status:{id:dicData.value.id},
- }
- }
- if(entranceType.value=='repairs'){
- delete postData.solution.hosId
- }
- if(typeof(categoryId)=='number' || typeof(categoryId)=='string'){
- postData.solution.categoryId = categoryId
- }else{
- delete postData.solution.categoryId
- }
- if(data && data.title){
- postData.solution.title = data.title
- }else{
- delete postData.solution.title
- }
- if(loginUserStore.loginUser.user.duty){
- postData.solution.dutyId = loginUserStore.loginUser.user.duty.id;
- }else if(loginUserStore.loginUser.user.branch){
- postData.solution.branch = loginUserStore.loginUser.user.branch.id;
- }
- api_getSolution(postData).then(res => {
- uni.hideLoading();
- if(res.status == 200){
- let list = res.list || [];
- introduceCount.value = res.totalNum
- dataInfo.list = list
- if(entranceType.value=='repairs'){
- dataInfo.list = list.filter(i=>i.repairVisible==1)
- }else{
- dataInfo.list = list
- }
- }else{
- uni.showToast({
- icon: 'none',
- title: res.msg || '请求数据失败!'
- });
- }
- })
- }
-
- // 获取字典
- function getDic(){
- let postData = {
- "key": 'solution_status',
- "type": "list",
- };
- api_getDictionary(postData).then(res => {
- dicData.value = res.find(v => v.value == '3');
- getList();
- })
- }
-
- onLoad((option) => {
- dataInfo.incidentId = option.incidentId;
- entrance.value = option.type
- entranceType.value = option.entranceType
- getDic()
- })
-
- onPullDownRefresh(() => {
- // getList(0)
- })
-
- onReachBottom(() => {
- // dataInfo.idx += 1;
- // if (dataInfo.hasMore) {
- // getList(); // 当触底时加载更多数据
- // }
- })
- </script>
- <style lang="scss" scoped>
- .categoryOne{
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- .filter{
- width: 100%;
- display: flex;
- justify-content: flex-end;
- align-items: center;
- position: fixed;
- height: 80rpx;
- background: #fff;
- border-bottom: 0.25rem solid #DEDEDE;
- .newicon-shaixuan{
- margin-right: 40rpx;
- font-size: 36rpx;
- color: #2C2C2C;
- }
- }
- .mar-t40{
- margin-top: 80rpx;
- }
- .head{
- height: 88rpx;
- display: flex;
- align-items: center;
- padding: 0 24rpx;
- position: fixed;
- z-index: 99;
- width: 100%;
- box-sizing: border-box;
- background: #fff;
- font-size: 26rpx;
- color: $uni-primary;
- }
- .body{
- font-size: 30rpx;
- .body_item{
- border-bottom: 8rpx solid #DEDEDE;
- .title{
- font-weight: 600;
- padding: 24rpx;
- border-bottom: 1rpx solid #DEDEDE;
- }
- .content{
- color: #6A6A6A;
- font-size: 24rpx;
- padding: 24rpx;
- border-bottom: 1rpx solid #DEDEDE;
- view{
- display: -webkit-box;
- overflow: hidden;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 3;
- text-overflow: ellipsis;
- white-space: initial;
- }
- }
- .sign{
- display: flex;
- justify-content: space-between;
- padding: 24rpx 24rpx 0 24rpx;
- font-size: 26rpx;
- }
- .btn-style{
- padding: 24rpx;
- }
- }
- }
- .zanwu{
- margin-bottom: 140rpx;
- margin-top: 88rpx;
- display: flex;
- justify-content: center;
- .newicon-zanwu{
- font-size: 256rpx;
- color: #D6D6D6;
- margin-top: 140rpx;
- }
- }
- .foot_common_btns{
- position: fixed;
- left: 0;
- bottom: 0;
- background-color: #fff;
- }
- .back-style{
- background: #D6D6D6;
- width: 100rpx;
- height: 100rpx;
- border-radius: 50%;
- display: flex;
- justify-content: center;
- align-items: center;
- position: fixed;
- right: 30rpx;
- bottom: 30rpx;
- text{
- font-size: 50rpx;
- color: #fff;
- }
- }
- }
- </style>
|