|
@@ -5,8 +5,12 @@
|
|
|
<view class="modalContent">
|
|
|
<view class="modalBar">请选择查核结果</view>
|
|
|
<scroll-view class="scroll" scroll-y="true" >
|
|
|
- <view v-for="item in checkItemResultList" class="list" :key="item.id" @click="selectResultHandle(item.resultName)" >{{item.resultName}}</view>
|
|
|
+ <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>
|
|
|
+ <view class="comfirmBtn" @click="commitSelectResult">确定</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</tm-modal>
|
|
@@ -83,6 +87,27 @@
|
|
|
></image>
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <view class="multipleResponsible">
|
|
|
+ <view class="inner" @click="toSelectResponsible">
|
|
|
+ <text class="label">当事人</text>
|
|
|
+ <input type="text" disabled v-model="checkedResponsibleList.join(',')" placeholder="请选择当事人(可多选)" class="value" placeholder-class="valuePlaceholder" />
|
|
|
+ <image class="arrow" src="../../static/incon-more.png" mode=""></image>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="score">
|
|
|
+ <view class="box">
|
|
|
+ <text class="lable">总分</text>
|
|
|
+ <text class="totalScore">{{totalScore}}</text>
|
|
|
+ </view>
|
|
|
+ <view class="box">
|
|
|
+ <text class="lable">本次得分</text>
|
|
|
+ <text class="currentScore">{{currentScore}}</text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="inputScore">
|
|
|
+ <text class="label">本项评分</text>
|
|
|
+ <input class="value" @input="onInputScore" type="number" value="" placeholder="请输入分值" placeholder-class="placeholder" />
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view v-if="data.checkModelName == '访谈'" class="talk">
|
|
@@ -97,7 +122,11 @@
|
|
|
<view class="talkResult">
|
|
|
<view class="seeResultFloorOne">
|
|
|
<text class="seeName">查核结果</text>
|
|
|
- <text v-if="checkItemResultList.length>0" class="threePoint" @click="openSelectModal(i)">⋮</text>
|
|
|
+ <view class="plusAction" v-if="checkItemResultList.length>0" @click="openSelectModal">
|
|
|
+ <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>
|
|
|
<textarea
|
|
|
maxlength="300"
|
|
@@ -123,7 +152,11 @@
|
|
|
<view class="seeResult">
|
|
|
<view class="seeResultFloorOne">
|
|
|
<text class="seeName">查核结果</text>
|
|
|
- <text class="threePoint" v-if="checkItemResultList.length>0" @click="openSelectModal">⋮</text>
|
|
|
+ <view class="plusAction" v-if="checkItemResultList.length>0" @click="openSelectModal">
|
|
|
+ <image class="plusIcon" src="../../static/icon-add.png" mode=""></image>
|
|
|
+ <text class="threePoint" >缺陷</text>
|
|
|
+ </view>
|
|
|
+ <!-- <text class="threePoint" v-if="checkItemResultList" @click="openSelectModal">⋮</text> -->
|
|
|
<!-- <dropdown :list="checkItemResultList" :current="currentSelect" @onClick="dropDownChange"></dropdown> -->
|
|
|
</view>
|
|
|
<textarea
|
|
@@ -158,14 +191,16 @@
|
|
|
<image class="threeLineMenuIcon" src="/static/threeLineMenu.png" ></image>
|
|
|
</view>
|
|
|
<view class="prevBtn" @click="switchItem(1)">下一项</view>
|
|
|
- <view class="nextBtn" @click="sureDetail" v-if="data.display?data.display:false">完成</view>
|
|
|
+ <view class="nextBtn" @click="sureDetail('back')" v-if="data.display?data.display:false">完成</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import {_goBackFresh} from '../../utils/compatible.js';
|
|
|
+// import ldSelect from '@/components/ld-select/ld-select.vue'
|
|
|
export default {
|
|
|
+ // components:{ldSelect},
|
|
|
data() {
|
|
|
return {
|
|
|
value:'',
|
|
@@ -185,12 +220,43 @@ export default {
|
|
|
itemId:'',
|
|
|
currentEditTextAreaIndex:'',
|
|
|
checkItemResultList:[],//查核结果说明下拉列表
|
|
|
+ checkedSelectResultList:[],//下拉结果选中集合
|
|
|
+ checkedSelectResultListIds:[],
|
|
|
currentSelect:'',
|
|
|
checkItemScore:null,//查核选中的分数
|
|
|
checkItemValue:null,//查核选中的分数占比
|
|
|
checkConfiglist:[],//查核情况可配置列表
|
|
|
+ totalScore:10,//总分
|
|
|
+ // currentScore:0,//当前得分
|
|
|
+ inputScore:0,//手动填写分值
|
|
|
+ selectedScore:0,//缺失项分值
|
|
|
+ checkedResponsibleList:[],
|
|
|
+ deptId:'',//病区id
|
|
|
+ checkedResponsibleData:[],
|
|
|
+ checkedSelectResultListData:[],
|
|
|
};
|
|
|
},
|
|
|
+ onShow() {
|
|
|
+ const {responsibleList} = this.$store.state;
|
|
|
+ this.checkedResponsibleData = responsibleList.checkedResponsibleList;
|
|
|
+ this.checkedResponsibleList = responsibleList.checkedResponsibleList.map(item=>item.main);
|
|
|
+ },
|
|
|
+ computed:{
|
|
|
+ currentScore:function(){
|
|
|
+ return (this.totalScore-this.inputScore-this.selectedScore-this.checkItemScore).toFixed(2);
|
|
|
+ },
|
|
|
+ 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)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ watch:{
|
|
|
+ checkedResponsibleList:function(){
|
|
|
+ const {responsibleList} = this.$store.state;
|
|
|
+ // console.log({responsibleList});
|
|
|
+ return responsibleList.checkedResponsibleList.map(item=>item.main);
|
|
|
+ }
|
|
|
+ },
|
|
|
mounted() {
|
|
|
this.checkTaskDetail(this.id);
|
|
|
this.getPeizhiList();
|
|
@@ -201,21 +267,57 @@ export default {
|
|
|
this.showSelectModal = false;
|
|
|
},
|
|
|
openSelectModal(index){
|
|
|
- console.log({index});
|
|
|
+ // console.log({index});
|
|
|
if(index>=0){
|
|
|
this.currentEditTextAreaIndex = index;
|
|
|
}
|
|
|
this.showSelectModal = true;
|
|
|
},
|
|
|
- selectResultHandle(val){
|
|
|
+ //跳转选择当事人
|
|
|
+ toSelectResponsible(){
|
|
|
+ // console.log(this.deptId);
|
|
|
+ uni.navigateTo({
|
|
|
+ url: `/pages/responsibleList/responsibleList?deptId=${this.deptId}&checkId=${this.id}`,
|
|
|
+ });
|
|
|
+ },
|
|
|
+ onInputScore(e){
|
|
|
+ this.inputScore = 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;
|
|
|
+ }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 = val;
|
|
|
+ this.talkList[this.currentEditTextAreaIndex].talkResult = this.checkedSelectResultList.join(',');
|
|
|
}else {
|
|
|
- this.recordList[0].seeResult = val;
|
|
|
+ this.recordList[0].seeResult = this.checkedSelectResultList.join(',');
|
|
|
}
|
|
|
- this.showSelectModal = false;
|
|
|
+ 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);
|
|
|
+
|
|
|
+ this.showSelectModal = false;
|
|
|
},
|
|
|
checkTaskDetail(id) {
|
|
|
this.$store.dispatch({
|
|
@@ -227,7 +329,22 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
}).then((res) => {
|
|
|
+ // console.log({res});
|
|
|
this.id = id;
|
|
|
+ this.deptId = res.deptId;
|
|
|
+ //用于当时人页面回显
|
|
|
+ if(res.responsibleUserName){
|
|
|
+ const tempResponsibleUserName = res.responsibleUserName.split(',');
|
|
|
+ const tempResponsibleUserId = res.responsibleUserId.split(',');
|
|
|
+ this.checkedResponsibleList = tempResponsibleUserName;
|
|
|
+ const arr = tempResponsibleUserName.map((item,index)=>({
|
|
|
+ main:item,
|
|
|
+ id:parseInt(tempResponsibleUserId[index])
|
|
|
+ }));
|
|
|
+
|
|
|
+ this.$store.commit('responsibleList/updateCheckedResponsibleList',arr);
|
|
|
+ }
|
|
|
+
|
|
|
if (res) {
|
|
|
this.data = res;
|
|
|
if (res && res.lastResult == "不适用") {
|
|
@@ -260,7 +377,7 @@ export default {
|
|
|
//查核点击回调
|
|
|
checkedOne(data) {
|
|
|
const parsedData = JSON.parse(JSON.stringify(data));
|
|
|
- console.log({parsedData})
|
|
|
+ // console.log({parsedData})
|
|
|
this.Index = parsedData.attr;
|
|
|
this.data.checkResult = parsedData.attr;
|
|
|
this.checkItemScore = parsedData.score;
|
|
@@ -320,14 +437,18 @@ export default {
|
|
|
imgClick(i) {
|
|
|
this.editIndex = i;
|
|
|
},
|
|
|
- sureDetail(e) {
|
|
|
+ sureDetail(key) {
|
|
|
if (this.Index) {
|
|
|
let params = {
|
|
|
id: this.data.id,
|
|
|
checkResult: this.data.checkResult,
|
|
|
checkResultRequestList: [],
|
|
|
checkItemScore:this.checkItemScore,
|
|
|
- value:this.checkItemValue
|
|
|
+ value:this.checkItemValue,
|
|
|
+ // responsibleUserId:(this.checkedResponsibleData.map(item=>item.id)).join(','),
|
|
|
+ // responsibleUserName:(this.checkedResponsibleData.map(item=>item.main)).join(','),
|
|
|
+ score:Number(this.currentScore),
|
|
|
+ deductPoint:Number(this.deductPoint),
|
|
|
};
|
|
|
if (this.data.checkModelName == "访谈") {
|
|
|
let list = [];
|
|
@@ -346,8 +467,6 @@ export default {
|
|
|
checkResultUrl: path,
|
|
|
};
|
|
|
|
|
|
- // console.log({'访谈':item});
|
|
|
- // return;
|
|
|
list.push(item);
|
|
|
}
|
|
|
params.checkResultRequestList = list;
|
|
@@ -366,14 +485,12 @@ export default {
|
|
|
checkResultDescribe: this.recordList[0].seeResult,
|
|
|
checkResultUrl: path,
|
|
|
};
|
|
|
- // console.log({item});
|
|
|
- // return;
|
|
|
+
|
|
|
list.push(item);
|
|
|
params.checkResultRequestList = list;
|
|
|
}
|
|
|
const checkConfiglist = JSON.parse(JSON.stringify(this.checkConfiglist));
|
|
|
-
|
|
|
- // console.log({params});
|
|
|
+ // console.log({params});
|
|
|
// return;
|
|
|
this.$store.dispatch({
|
|
|
type: "mainPointsDetail/commActions",
|
|
@@ -384,7 +501,7 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
}).then((res) => {
|
|
|
- // console.log({'res':res,'checkConfiglist':this.checkConfiglist});
|
|
|
+ console.log({'res':res,'checkConfiglist':checkConfiglist});
|
|
|
if (res) {
|
|
|
for (let i = 0; i < checkConfiglist.length; i++) {
|
|
|
if (
|
|
@@ -427,16 +544,22 @@ export default {
|
|
|
}).then(() => {
|
|
|
|
|
|
});
|
|
|
- }
|
|
|
+ }else {
|
|
|
+ console.log('改善条件为false');
|
|
|
+ }
|
|
|
}
|
|
|
- //返回
|
|
|
- _goBackFresh('pages/checkMainPoints/checkMainPoints');
|
|
|
-
|
|
|
+ if(key=='back'){
|
|
|
+ //点完成时返回
|
|
|
+ _goBackFresh('pages/checkMainPoints/checkMainPoints');
|
|
|
+ }
|
|
|
+ // _goBackFresh('pages/checkMainPoints/checkMainPoints');
|
|
|
//去查核详情页
|
|
|
// uni.navigateTo({
|
|
|
// url: `/pages/auditItemDetails/auditItemDetails?id=${this.data.id}&checkPointId=${this.checkPointId}`,
|
|
|
// });
|
|
|
- }
|
|
|
+ }else {
|
|
|
+ console.log('res为false');
|
|
|
+ }
|
|
|
});
|
|
|
} else {
|
|
|
uni.showModal({
|
|
@@ -491,7 +614,8 @@ export default {
|
|
|
goToPrevPage(){
|
|
|
_goBackFresh('pages/checkMainPoints/checkMainPoints');
|
|
|
},
|
|
|
- switchItem(num){
|
|
|
+ switchItem:async function(num){
|
|
|
+ await this.sureDetail();
|
|
|
let current = this.itemBelongGroup.filter(item=>{
|
|
|
return item.id == this.id;
|
|
|
});
|
|
@@ -543,6 +667,13 @@ export default {
|
|
|
}
|
|
|
}).then(data=>{
|
|
|
// console.log({data});
|
|
|
+ // const temp = [
|
|
|
+ // {resultName:'1',id:0},
|
|
|
+ // {resultName:'2',id:1},
|
|
|
+ // {resultName:'3',id:2},
|
|
|
+ // {resultName:'4',id:3}
|
|
|
+ // ]
|
|
|
+ // this.checkItemResultList = temp;
|
|
|
this.checkItemResultList = data;
|
|
|
})
|
|
|
},
|
|
@@ -589,8 +720,9 @@ export default {
|
|
|
align-items: center;
|
|
|
.modalContent {
|
|
|
width: 90%;
|
|
|
- height:500rpx;
|
|
|
- border-radius: 20rpx;
|
|
|
+ height:600rpx;
|
|
|
+ border-radius: 10rpx;
|
|
|
+ overflow: hidden;
|
|
|
background-color: #FFFFFF;
|
|
|
.modalBar{
|
|
|
display: flex;
|
|
@@ -599,16 +731,40 @@ export default {
|
|
|
height: 80rpx;
|
|
|
color: #4E78FF;
|
|
|
font-size: 22.5rpx;
|
|
|
+ box-shadow: 0 6rpx 6rpx #E5E5E5;
|
|
|
border-bottom: 0.1rpx solid #E5E5E5;
|
|
|
}
|
|
|
+ .comfirmBtn {
|
|
|
+ font-size: 22rpx;
|
|
|
+ color: #FFFFFF;
|
|
|
+ height: 80rpx;
|
|
|
+ line-height: 80rpx;
|
|
|
+ text-align: center;
|
|
|
+ background-color: #3377FF;
|
|
|
+ }
|
|
|
.scroll {
|
|
|
- height: calc(100% - 80rpx);
|
|
|
+ height: calc(100% - 160rpx);
|
|
|
.list {
|
|
|
+ position: relative;
|
|
|
display: flex;
|
|
|
height: 80rpx;
|
|
|
justify-content: center;
|
|
|
align-items: center;
|
|
|
border-bottom: 0.1rpx solid #E5E5E5;
|
|
|
+ .checkIcon {
|
|
|
+ display: none;
|
|
|
+ position: absolute;
|
|
|
+ left:5%;
|
|
|
+ width: 25rpx;
|
|
|
+ height:25rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ &.on {
|
|
|
+ color: #3377FF;
|
|
|
+ .checkIcon {
|
|
|
+ display: block;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -751,6 +907,108 @@ export default {
|
|
|
height: 21.21rpx;
|
|
|
}
|
|
|
}
|
|
|
+ .multipleResponsible {
|
|
|
+ padding-top:15rpx;
|
|
|
+ background-color:#F5F6FA;
|
|
|
+ .inner {
|
|
|
+ position: relative;
|
|
|
+ display: flex;
|
|
|
+ height: 87.5rpx;
|
|
|
+ z-index: 10;
|
|
|
+ flex-direction: row;
|
|
|
+ justify-content: flex-start;
|
|
|
+ align-items: center;
|
|
|
+ padding: 0 25rpx;
|
|
|
+ background-color: #FFFFFF;
|
|
|
+ .label {
|
|
|
+ display: inline-block;
|
|
|
+ font-size: 22.5rpx;
|
|
|
+ font-family: SourceHanSansCN-Normal, SourceHanSansCN;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #525866;
|
|
|
+ margin-right: 105rpx;
|
|
|
+ }
|
|
|
+ .value {
|
|
|
+ flex: 0.9;
|
|
|
+ font-size: 22.5rpx;
|
|
|
+ overflow:hidden; //超出的文本隐藏
|
|
|
+ text-overflow:ellipsis; //溢出用省略号显示
|
|
|
+ white-space:nowrap; //溢出不换行
|
|
|
+ }
|
|
|
+ .valuePlaceholder {
|
|
|
+ font-size: 22.5rpx;
|
|
|
+ font-family: SourceHanSansCN-Normal, SourceHanSansCN;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #B8BECC;
|
|
|
+ }
|
|
|
+ .arrow {
|
|
|
+ position: absolute;
|
|
|
+ right:25rpx;
|
|
|
+ width: 12.5rpx;
|
|
|
+ height: 20rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .score {
|
|
|
+ display: flex;
|
|
|
+ height: 87.5rpx;
|
|
|
+ flex-direction:row;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ padding: 0 25rpx;
|
|
|
+ background: #F5F6FA;
|
|
|
+ .box {
|
|
|
+ text-align: center;
|
|
|
+ vertical-align: bottom;
|
|
|
+ .lable {
|
|
|
+ display: inline-block;
|
|
|
+ font-size: 22.5rpx;
|
|
|
+ font-family: SourceHanSansCN-Normal, SourceHanSansCN;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #525866;
|
|
|
+ margin-right: 10rpx;
|
|
|
+ }
|
|
|
+ .totalScore {
|
|
|
+ font-size: 30rpx;
|
|
|
+ font-family: SourceHanSansCN-Bold, SourceHanSansCN;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #292C33;
|
|
|
+ }
|
|
|
+
|
|
|
+ .currentScore {
|
|
|
+ font-size: 30rpx;
|
|
|
+ font-family: SourceHanSansCN-Bold, SourceHanSansCN;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #3377FF;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .inputScore {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ justify-content: flex-start;
|
|
|
+ align-items:center;
|
|
|
+ height: 87.5rpx;
|
|
|
+ padding: 0 25rpx;
|
|
|
+ background-color: #FFFFFF;
|
|
|
+ .label {
|
|
|
+ display: inline-block;
|
|
|
+ font-size: 22.5rpx;
|
|
|
+ font-family: SourceHanSansCN-Normal, SourceHanSansCN;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #525866;
|
|
|
+ margin-right: 81.25rpx;
|
|
|
+ }
|
|
|
+ .value {
|
|
|
+ font-size: 22.5rpx;
|
|
|
+ }
|
|
|
+ .placeholder {
|
|
|
+ font-size: 22.5rpx;
|
|
|
+ font-family: SourceHanSansCN-Normal, SourceHanSansCN;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #B8BECC;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
.see {
|
|
@@ -770,11 +1028,24 @@ 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 {
|
|
|
width: 175rpx;
|
|
@@ -784,7 +1055,7 @@ export default {
|
|
|
display: inline-block;
|
|
|
}
|
|
|
.seeTextarea {
|
|
|
- width: 531.25rpx;
|
|
|
+ width: 97%;
|
|
|
height: 155rpx;
|
|
|
display: inline-block;
|
|
|
font-size: 22.5rpx;
|