|
@@ -4,12 +4,19 @@
|
|
|
<view class="checkItemResultModal">
|
|
|
<view class="modalContent">
|
|
|
<view class="modalBar">请选择查核结果</view>
|
|
|
- <scroll-view class="scroll" scroll-y="true" >
|
|
|
+ <scroll-view v-if="data.checkModelName != '访谈'" class="scroll" scroll-y="true" >
|
|
|
<view v-for="item in checkItemResultList" :class="[checkedSelectResultListIds.includes(item.id)?'list on':'list']" :key="item.id" @click.stop="selectResultHandle(item)" >
|
|
|
<image class="checkIcon" src="../../static/check-checkbox.png" mode=""></image>
|
|
|
{{item.resultName}}
|
|
|
</view>
|
|
|
</scroll-view>
|
|
|
+
|
|
|
+ <scroll-view v-if="data.checkModelName == '访谈'" class="scroll" scroll-y="true" >
|
|
|
+ <view v-for="item in checkItemResultList" :class="[checkedSelectResultListIds[currentEditTextAreaIndex]&&checkedSelectResultListIds[currentEditTextAreaIndex].includes(item.id)?'list on':'list']" :key="item.id" @click.stop="selectResultHandle(item)" >
|
|
|
+ <image class="checkIcon" src="../../static/check-checkbox.png" mode=""></image>
|
|
|
+ {{item.resultName}}
|
|
|
+ </view>
|
|
|
+ </scroll-view>
|
|
|
<view class="comfirmBtn" @click="commitSelectResult">确定</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -105,8 +112,9 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="inputScore">
|
|
|
- <text class="label">本项评分</text>
|
|
|
- <input class="value" @input="onInputScore" type="number" value="" placeholder="请输入分值" placeholder-class="placeholder" />
|
|
|
+ <text class="label">本项扣分</text>
|
|
|
+ <!-- <text class="label">{{deductPoint}}</text> -->
|
|
|
+ <input class="value" @input="onInputScore" type="number" v-model="inputScore" :placeholder="deductPoint" placeholder-class="placeholder" />
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -122,12 +130,13 @@
|
|
|
<view class="talkResult">
|
|
|
<view class="seeResultFloorOne">
|
|
|
<text class="seeName">查核结果</text>
|
|
|
- <view class="plusAction" v-if="checkItemResultList.length>0" @click="openSelectModal">
|
|
|
+ <view class="plusAction" v-if="checkItemResultList.length>0" @click="openSelectModal(i)">
|
|
|
<image class="plusIcon" src="../../static/icon-add.png" mode=""></image>
|
|
|
<text class="threePoint" >缺陷</text>
|
|
|
</view>
|
|
|
<!-- <text v-if="checkItemResultList.length>0" class="threePoint" @click="openSelectModal(i)">⋮</text> -->
|
|
|
</view>
|
|
|
+ <text class="clear" @click="clearResult(true,i)">清空</text>
|
|
|
<textarea
|
|
|
maxlength="300"
|
|
|
class="seeTextarea"
|
|
@@ -159,6 +168,7 @@
|
|
|
<!-- <text class="threePoint" v-if="checkItemResultList" @click="openSelectModal">⋮</text> -->
|
|
|
<!-- <dropdown :list="checkItemResultList" :current="currentSelect" @onClick="dropDownChange"></dropdown> -->
|
|
|
</view>
|
|
|
+ <text class="clear" @click="clearResult(false)">清空</text>
|
|
|
<textarea
|
|
|
maxlength="300"
|
|
|
class="seeTextarea"
|
|
@@ -226,14 +236,16 @@ export default {
|
|
|
checkItemScore:null,//查核选中的分数
|
|
|
checkItemValue:null,//查核选中的分数占比
|
|
|
checkConfiglist:[],//查核情况可配置列表
|
|
|
- totalScore:10,//总分
|
|
|
+ totalScore:0,//总分
|
|
|
// currentScore:0,//当前得分
|
|
|
- inputScore:0,//手动填写分值
|
|
|
+ inputScore:null,//手动填写分值
|
|
|
selectedScore:0,//缺失项分值
|
|
|
checkedResponsibleList:[],
|
|
|
deptId:'',//病区id
|
|
|
checkedResponsibleData:[],
|
|
|
checkedSelectResultListData:[],
|
|
|
+ multiSelectScore:[],
|
|
|
+ deductPointFromRes:0,
|
|
|
};
|
|
|
},
|
|
|
onShow() {
|
|
@@ -242,18 +254,43 @@ export default {
|
|
|
this.checkedResponsibleList = responsibleList.checkedResponsibleList.map(item=>item.main);
|
|
|
},
|
|
|
computed:{
|
|
|
- currentScore:function(){
|
|
|
- return (this.totalScore-this.inputScore-this.selectedScore-this.checkItemScore).toFixed(2);
|
|
|
+ // currentScore:function(){
|
|
|
+ // return (this.totalScore-this.selectedScore-this.checkItemScore).toFixed(2);
|
|
|
+ // },
|
|
|
+ currentScore:{
|
|
|
+ get: function () {
|
|
|
+ // console.log(this.inputScore);
|
|
|
+ // console.log(this.totalScore,this.selectedScore,this.checkItemScore)
|
|
|
+ if(this.inputScore>0){
|
|
|
+ return this.totalScore - this.inputScore;
|
|
|
+ }
|
|
|
+
|
|
|
+ return (this.totalScore-this.selectedScore-this.checkItemScore-this.deductPointFromRes).toFixed(2);
|
|
|
+ },
|
|
|
+ set:function(newValue){
|
|
|
+ // const everyCount = Math.abs((newValue)/2);
|
|
|
+ // this.selectedScore = everyCount;
|
|
|
+ // this.checkItemScore = everyCount;
|
|
|
+ // this.inputScore = this.inputScore + newValue;
|
|
|
+ },
|
|
|
+
|
|
|
},
|
|
|
+ //this.inputScore
|
|
|
+ // score:function(){
|
|
|
+ // return this.inputScore+Math.abs(this.currentScore)
|
|
|
+ // },
|
|
|
deductPoint:function(){
|
|
|
- // console.log(Number(this.inputScore)+Number(this.selectedScore)+Number(this.checkItemScore));
|
|
|
- return (Number(this.inputScore)+Number(this.selectedScore)+Number(this.checkItemScore)).toFixed(2)
|
|
|
+ console.log(Number(this.inputScore),Number(this.selectedScore),Number(this.checkItemScore));
|
|
|
+ if(this.inputScore){
|
|
|
+ return this.inputScore;
|
|
|
+ }
|
|
|
+ return (this.deductPointFromRes-Number(this.inputScore)+Number(this.selectedScore)+Number(this.checkItemScore)).toFixed(2)
|
|
|
}
|
|
|
},
|
|
|
watch:{
|
|
|
checkedResponsibleList:function(){
|
|
|
const {responsibleList} = this.$store.state;
|
|
|
- // console.log({responsibleList});
|
|
|
+ console.log({responsibleList});
|
|
|
return responsibleList.checkedResponsibleList.map(item=>item.main);
|
|
|
}
|
|
|
},
|
|
@@ -263,6 +300,26 @@ export default {
|
|
|
|
|
|
},
|
|
|
methods: {
|
|
|
+ //查核结果清空操作
|
|
|
+ clearResult(ifMulti,index){
|
|
|
+ if(ifMulti){
|
|
|
+ //多个查核结果组件时
|
|
|
+ this.talkList[index].talkResult = '';
|
|
|
+ this.multiSelectScore[index] = 0;
|
|
|
+ this.selectedScore = this.multiSelectScore.reduce((prev,cur)=>(prev+cur),0);
|
|
|
+
|
|
|
+ this.checkedSelectResultListIds.splice(index,1,[]);
|
|
|
+ this.checkedSelectResultList.splice(index,1,[]);
|
|
|
+ this.checkedSelectResultListData.splice(index,1,[]);
|
|
|
+
|
|
|
+ }else {
|
|
|
+ this.recordList[0].seeResult='';
|
|
|
+ this.selectedScore = 0;
|
|
|
+ this.checkedSelectResultListIds=[];
|
|
|
+ this.checkedSelectResultList=[];
|
|
|
+ this.checkedSelectResultListData=[];
|
|
|
+ }
|
|
|
+ },
|
|
|
clickModalhandle(){
|
|
|
this.showSelectModal = false;
|
|
|
},
|
|
@@ -282,38 +339,87 @@ export default {
|
|
|
},
|
|
|
onInputScore(e){
|
|
|
this.inputScore = e.target.value;
|
|
|
+ this.currentScore = e.target.value;
|
|
|
},
|
|
|
selectResultHandle(item){
|
|
|
- // console.log({val});
|
|
|
- // console.log('currentEditTextAreaIndex',this.currentEditTextAreaIndex);
|
|
|
- if(this.checkedSelectResultListIds.includes(item.id)){
|
|
|
- const tempIdsArr = JSON.parse(JSON.stringify(this.checkedSelectResultListIds));
|
|
|
- const tempArr = JSON.parse(JSON.stringify(this.checkedSelectResultList));
|
|
|
- const tempArrData = JSON.parse(JSON.stringify(this.checkedSelectResultListData));
|
|
|
- tempIdsArr.splice(tempIdsArr.indexOf(item.id),1);
|
|
|
- tempArr.splice(tempArr.indexOf(item.resultName),1);
|
|
|
- tempArrData.splice(tempArrData.indexOf(item.id),1);
|
|
|
- this.checkedSelectResultListIds = tempIdsArr;
|
|
|
- this.checkedSelectResultList = tempArr;
|
|
|
- this.checkedSelectResultListData = tempArrData;
|
|
|
+
|
|
|
+ if(this.data.checkModelName == '访谈'){
|
|
|
+ const currentIndex = this.currentEditTextAreaIndex;
|
|
|
+ if(this.checkedSelectResultListIds[currentIndex]&&this.checkedSelectResultListIds[currentIndex].includes(item.id)){
|
|
|
+ console.log('减去');
|
|
|
+ const tempIdsArr = JSON.parse(JSON.stringify(this.checkedSelectResultListIds[currentIndex]));
|
|
|
+ const tempArr = JSON.parse(JSON.stringify(this.checkedSelectResultList[currentIndex]));
|
|
|
+ const tempArrData = JSON.parse(JSON.stringify(this.checkedSelectResultListData[currentIndex]));
|
|
|
+
|
|
|
+ tempIdsArr.splice(tempIdsArr.indexOf(item.id),1);
|
|
|
+ tempArr.splice(tempArr.indexOf(item.resultName),1);
|
|
|
+ tempArrData.splice(tempArrData.indexOf(item.id),1);
|
|
|
+
|
|
|
+ // console.log({tempIdsArr});
|
|
|
+
|
|
|
+ this.checkedSelectResultListIds.splice(currentIndex,1,tempIdsArr);
|
|
|
+ this.checkedSelectResultList.splice(currentIndex,1,tempArr);
|
|
|
+ this.checkedSelectResultListData.splice(currentIndex,1,tempArrData);
|
|
|
+ }else {
|
|
|
+ if(!Array.isArray(this.checkedSelectResultListIds[currentIndex]))this.checkedSelectResultListIds[currentIndex]=[];
|
|
|
+ if(!Array.isArray(this.checkedSelectResultList[currentIndex]))this.checkedSelectResultList[currentIndex]=[];
|
|
|
+ if(!Array.isArray(this.checkedSelectResultListData[currentIndex]))this.checkedSelectResultListData[currentIndex]=[];
|
|
|
+
|
|
|
+ const tempIdsArr = this.checkedSelectResultListIds[currentIndex].concat([item.id]);
|
|
|
+ const tempArr = this.checkedSelectResultList[currentIndex].concat([item.resultName]);
|
|
|
+ const tempArrData = this.checkedSelectResultListData[currentIndex].concat([item]);
|
|
|
+
|
|
|
+ this.checkedSelectResultListIds.splice(currentIndex,1,tempIdsArr);
|
|
|
+ this.checkedSelectResultList.splice(currentIndex,1,tempArr);
|
|
|
+ this.checkedSelectResultListData.splice(currentIndex,1,tempArrData);
|
|
|
+ // console.log(this.checkedSelectResultListIds[currentIndex],`index:${currentIndex}`);
|
|
|
+ }
|
|
|
}else {
|
|
|
- this.checkedSelectResultListIds.push(item.id);
|
|
|
- this.checkedSelectResultList.push(item.resultName);
|
|
|
- this.checkedSelectResultListData.push(item);
|
|
|
+ if(this.checkedSelectResultListIds.includes(item.id)){
|
|
|
+ const tempIdsArr = JSON.parse(JSON.stringify(this.checkedSelectResultListIds));
|
|
|
+ const tempArr = JSON.parse(JSON.stringify(this.checkedSelectResultList));
|
|
|
+ const tempArrData = JSON.parse(JSON.stringify(this.checkedSelectResultListData));
|
|
|
+ tempIdsArr.splice(tempIdsArr.indexOf(item.id),1);
|
|
|
+ tempArr.splice(tempArr.indexOf(item.resultName),1);
|
|
|
+ tempArrData.splice(tempArrData.indexOf(item.id),1);
|
|
|
+ this.checkedSelectResultListIds = tempIdsArr;
|
|
|
+ this.checkedSelectResultList = tempArr;
|
|
|
+ this.checkedSelectResultListData = tempArrData;
|
|
|
+ }else {
|
|
|
+ this.checkedSelectResultListIds.push(item.id);
|
|
|
+ this.checkedSelectResultList.push(item.resultName);
|
|
|
+ this.checkedSelectResultListData.push(item);
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
commitSelectResult(){
|
|
|
+
|
|
|
+
|
|
|
if(this.data.checkModelName == '访谈'){
|
|
|
- this.talkList[this.currentEditTextAreaIndex].talkResult = this.checkedSelectResultList.join(',');
|
|
|
+ const tempArr = this.checkedSelectResultListData[this.currentEditTextAreaIndex].map(item=>item.percentScore);
|
|
|
+ const tempScore = tempArr.reduce((prev,cur)=>{
|
|
|
+ // return ((prev/100)*this.totalScore)+((cur/100)*this.totalScore)
|
|
|
+ return prev + cur;
|
|
|
+ },0);
|
|
|
+
|
|
|
+ this.talkList[this.currentEditTextAreaIndex].talkResult = this.checkedSelectResultList[this.currentEditTextAreaIndex].join(',');
|
|
|
+ this.multiSelectScore[this.currentEditTextAreaIndex] = tempScore;
|
|
|
+ this.selectedScore = this.multiSelectScore.reduce((prev,cur)=>(prev+cur),0);
|
|
|
+ // console.log(this.selectedScore,this.multiSelectScore[this.currentEditTextAreaIndex],tempScore,tempArr,this.checkedSelectResultListData);
|
|
|
}else {
|
|
|
+ const tempArr = this.checkedSelectResultListData.map(item=>item.percentScore);
|
|
|
+ const tempScore = tempArr.reduce((prev,cur)=>{
|
|
|
+ return prev + cur;
|
|
|
+ },0);
|
|
|
this.recordList[0].seeResult = this.checkedSelectResultList.join(',');
|
|
|
+ this.selectedScore = tempScore;
|
|
|
}
|
|
|
- const tempArr = this.checkedSelectResultListData.map(item=>item.percentScore);
|
|
|
- const tempScore = tempArr.reduce((prev,cur)=>{
|
|
|
- return (prev/100)+(cur/100)
|
|
|
- },0);
|
|
|
+ // const tempArr = this.checkedSelectResultListData.map(item=>item.percentScore);
|
|
|
+ // const tempScore = tempArr.reduce((prev,cur)=>{
|
|
|
+ // return (prev/100)+(cur/100)
|
|
|
+ // },0);
|
|
|
+
|
|
|
|
|
|
- this.selectedScore = this.totalScore*tempScore;
|
|
|
// console.log({tempScore});
|
|
|
// console.log(this.selectedScore);
|
|
|
|
|
@@ -332,6 +438,66 @@ export default {
|
|
|
// console.log({res});
|
|
|
this.id = id;
|
|
|
this.deptId = res.deptId;
|
|
|
+ //再次编辑回显
|
|
|
+ this.totalScore = res.totalScore;
|
|
|
+ this.deductPointFromRes = res.deductPoint;
|
|
|
+
|
|
|
+ if(res.lastResult){
|
|
|
+ const lastConfig = this.checkConfiglist.filter(item=>item.attr == res.lastResult);
|
|
|
+ this.checkItemScore = lastConfig[0].score*lastConfig[0].value;
|
|
|
+ }
|
|
|
+
|
|
|
+ // this.deductPoint = res.deductPoint;
|
|
|
+ if(res.checkResultRequestList&&res.checkResultRequestList.length>0){
|
|
|
+ if(res.checkModelName == '访谈'){
|
|
|
+ this.talkList = res.checkResultRequestList.map((item,currentIndex)=>{
|
|
|
+ const arr = item.checkResultDescribe.split(',');
|
|
|
+ const tempResult= this.checkItemResultList.filter(v=>arr.includes(v.resultName));
|
|
|
+ // console.log({tempResult});
|
|
|
+
|
|
|
+ if(!Array.isArray(this.checkedSelectResultListIds[currentIndex]))this.checkedSelectResultListIds[currentIndex]=[];
|
|
|
+ if(!Array.isArray(this.checkedSelectResultList[currentIndex]))this.checkedSelectResultList[currentIndex]=[];
|
|
|
+ if(!Array.isArray(this.checkedSelectResultListData[currentIndex]))this.checkedSelectResultListData[currentIndex]=[];
|
|
|
+
|
|
|
+ const tempIdsArr = this.checkedSelectResultListIds[currentIndex].concat(tempResult.map(item=>item.id));
|
|
|
+ const tempArr = this.checkedSelectResultList[currentIndex].concat(tempResult.map(item=>item.resultName));
|
|
|
+ // const tempArrData = this.checkedSelectResultListData[currentIndex].concat(tempResult.map(item=>item));
|
|
|
+
|
|
|
+ this.checkedSelectResultListIds.splice(currentIndex,1,tempIdsArr);
|
|
|
+ this.checkedSelectResultList.splice(currentIndex,1,tempArr);
|
|
|
+ this.checkedSelectResultListData.splice(currentIndex,1,tempResult);
|
|
|
+
|
|
|
+ const tempArrFull = this.checkedSelectResultListData[currentIndex].map(item=>item.percentScore);
|
|
|
+ const tempScore = tempArrFull.reduce((prev,cur)=>{
|
|
|
+ return prev + cur;
|
|
|
+ },0);
|
|
|
+ this.multiSelectScore[currentIndex] = tempScore;
|
|
|
+ return {
|
|
|
+ talkResult:item.checkResultDescribe,
|
|
|
+ filePath:item.checkResultUrl !=''?item.checkResultUrl.split(','):[]
|
|
|
+ }
|
|
|
+ });
|
|
|
+ //设置回显分数
|
|
|
+ // this.selectedScore = this.multiSelectScore.reduce((prev,cur)=>(prev+cur),0);
|
|
|
+
|
|
|
+ }else {
|
|
|
+ // console.log('非访谈');
|
|
|
+ // console.log(res.checkResultRequestList[0]);
|
|
|
+ const arr = res.checkResultRequestList[0].checkResultDescribe.split(',');
|
|
|
+ const tempResult= this.checkItemResultList.filter(v=>arr.includes(v.resultName));
|
|
|
+ const tempIds = tempResult.map(item=>item.id);
|
|
|
+ const scores = tempResult.map(item=>item.percentScore);
|
|
|
+ const tempScore = scores.reduce((prev,cur)=>(prev+cur),0);
|
|
|
+ this.recordList[0].seeResult = res.checkResultRequestList[0].checkResultDescribe;
|
|
|
+ this.checkedSelectResultListIds=tempIds;
|
|
|
+ this.checkedSelectResultList=res.checkResultRequestList[0].checkResultDescribe.split(',');
|
|
|
+ this.checkedSelectResultListData=tempResult;
|
|
|
+ this.selectedScore = tempScore;
|
|
|
+ // console.log(this.checkedSelectResultListIds,tempResult,tempIds,tempScore,this.selectedScore);
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
//用于当时人页面回显
|
|
|
if(res.responsibleUserName){
|
|
|
const tempResponsibleUserName = res.responsibleUserName.split(',');
|
|
@@ -341,11 +507,15 @@ export default {
|
|
|
main:item,
|
|
|
id:parseInt(tempResponsibleUserId[index])
|
|
|
}));
|
|
|
-
|
|
|
+ console.log({arr});
|
|
|
this.$store.commit('responsibleList/updateCheckedResponsibleList',arr);
|
|
|
+ }else{
|
|
|
+ this.checkedResponsibleList = [];
|
|
|
+ this.$store.commit('responsibleList/updateCheckedResponsibleList',[]);
|
|
|
}
|
|
|
|
|
|
if (res) {
|
|
|
+ console.log({res});
|
|
|
this.data = res;
|
|
|
if (res && res.lastResult == "不适用") {
|
|
|
// this.lastIndex = 1;
|
|
@@ -380,7 +550,8 @@ export default {
|
|
|
// console.log({parsedData})
|
|
|
this.Index = parsedData.attr;
|
|
|
this.data.checkResult = parsedData.attr;
|
|
|
- this.checkItemScore = parsedData.score;
|
|
|
+ this.checkItemScore = parsedData.score*parsedData.value;
|
|
|
+ console.log(this.checkItemScore,parsedData);
|
|
|
this.checkItemValue = parsedData.value;
|
|
|
|
|
|
// this.Index = data;
|
|
@@ -448,7 +619,7 @@ export default {
|
|
|
// responsibleUserId:(this.checkedResponsibleData.map(item=>item.id)).join(','),
|
|
|
// responsibleUserName:(this.checkedResponsibleData.map(item=>item.main)).join(','),
|
|
|
score:Number(this.currentScore),
|
|
|
- deductPoint:Number(this.deductPoint),
|
|
|
+ deductPoint:Number(this.inputScore?this.inputScore:this.deductPoint),
|
|
|
};
|
|
|
if (this.data.checkModelName == "访谈") {
|
|
|
let list = [];
|
|
@@ -501,7 +672,7 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
}).then((res) => {
|
|
|
- console.log({'res':res,'checkConfiglist':checkConfiglist});
|
|
|
+ // console.log({'res':res,'checkConfiglist':checkConfiglist});
|
|
|
if (res) {
|
|
|
for (let i = 0; i < checkConfiglist.length; i++) {
|
|
|
if (
|
|
@@ -541,15 +712,15 @@ export default {
|
|
|
...param,
|
|
|
},
|
|
|
},
|
|
|
- }).then(() => {
|
|
|
-
|
|
|
});
|
|
|
}else {
|
|
|
console.log('改善条件为false');
|
|
|
}
|
|
|
}
|
|
|
+ console.log('w');
|
|
|
if(key=='back'){
|
|
|
//点完成时返回
|
|
|
+ console.log('开始返回');
|
|
|
_goBackFresh('pages/checkMainPoints/checkMainPoints');
|
|
|
}
|
|
|
// _goBackFresh('pages/checkMainPoints/checkMainPoints');
|
|
@@ -603,13 +774,26 @@ export default {
|
|
|
*/
|
|
|
|
|
|
},
|
|
|
- clearForm(){
|
|
|
+ clearForm(index){
|
|
|
this.Index = '';
|
|
|
+ this.deductPoint = 0;
|
|
|
+ this.currentScore = 0;
|
|
|
+ this.inputScore = 0;
|
|
|
if(this.data.checkModelName == '访谈'){
|
|
|
- this.talkList[this.currentEditTextAreaIndex].talkResult = '';
|
|
|
+ if(index){
|
|
|
+ this.talkList[index].talkResult = '';
|
|
|
+ }else {
|
|
|
+ for(let i=0;i<this.talkList.length;i++){
|
|
|
+ this.talkList[i].talkResult = '';
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
}else {
|
|
|
this.recordList[0].talkResult ='';
|
|
|
}
|
|
|
+ this.checkedSelectResultListIds=[];
|
|
|
+ this.checkedSelectResultList=[];
|
|
|
+ this.checkedSelectResultListData=[];
|
|
|
},
|
|
|
goToPrevPage(){
|
|
|
_goBackFresh('pages/checkMainPoints/checkMainPoints');
|
|
@@ -654,6 +838,7 @@ export default {
|
|
|
data:checkItemId
|
|
|
}
|
|
|
}).then(data=>{
|
|
|
+ // console.log({data});
|
|
|
this.checkConfiglist = data
|
|
|
})
|
|
|
},
|
|
@@ -1006,7 +1191,7 @@ export default {
|
|
|
font-size: 22.5rpx;
|
|
|
font-family: SourceHanSansCN-Normal, SourceHanSansCN;
|
|
|
font-weight: 400;
|
|
|
- color: #B8BECC;
|
|
|
+ color: #525866;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -1017,10 +1202,21 @@ export default {
|
|
|
background-color: #fff;
|
|
|
// padding-left: 25rpx;
|
|
|
.seeResult {
|
|
|
+ position: relative;
|
|
|
margin-left: 25rpx;
|
|
|
padding-top: 32.5rpx;
|
|
|
// height: 200rpx;
|
|
|
border-bottom: 1px solid #dadee6;
|
|
|
+ .clear {
|
|
|
+ position: absolute;
|
|
|
+ z-index: 10;
|
|
|
+ right: 25rpx;
|
|
|
+ bottom: 25rpx;
|
|
|
+ font-size: 22.5rpx;
|
|
|
+ font-family: SourceHanSansCN-Normal, SourceHanSansCN;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #FF3355;
|
|
|
+ }
|
|
|
.seeResultFloorOne {
|
|
|
display: flex;
|
|
|
flex-direction: row;
|
|
@@ -1085,10 +1281,21 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
.talkResult {
|
|
|
+ position: relative;
|
|
|
padding-left: 25rpx;
|
|
|
padding-top: 32.5rpx;
|
|
|
border-bottom: 1px solid #dadee6;
|
|
|
background-color: #fff;
|
|
|
+ .clear {
|
|
|
+ position: absolute;
|
|
|
+ z-index: 10;
|
|
|
+ right: 25rpx;
|
|
|
+ bottom: 25rpx;
|
|
|
+ font-size: 22.5rpx;
|
|
|
+ font-family: SourceHanSansCN-Normal, SourceHanSansCN;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #FF3355;
|
|
|
+ }
|
|
|
.seeResultFloorOne {
|
|
|
display: flex;
|
|
|
flex-direction: row;
|
|
@@ -1096,10 +1303,22 @@ export default {
|
|
|
align-items: center;
|
|
|
margin-bottom: 25rpx;
|
|
|
padding-right: 25rpx;
|
|
|
- .threePoint {
|
|
|
- padding-left: 12.5rpx;
|
|
|
- font-size: 20rpx;
|
|
|
- font-weight:700;
|
|
|
+ .plusAction {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ .plusIcon {
|
|
|
+ width: 25rpx;
|
|
|
+ height: 25rpx;
|
|
|
+ margin-right: 10rpx;
|
|
|
+ }
|
|
|
+ .threePoint {
|
|
|
+ font-size: 22.5rpx;
|
|
|
+ font-family: SourceHanSansCN-Normal, SourceHanSansCN;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #7A8599;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
.seeName {
|