修改服务记录
This commit is contained in:
parent
a0de8de7b6
commit
ac3328cdae
@ -137,7 +137,7 @@
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
count: 4,
|
||||
count: 5,
|
||||
value: 2,
|
||||
tabslist: [{
|
||||
name: '全部',
|
||||
@ -160,7 +160,8 @@
|
||||
openId: '',
|
||||
orderNo: '',
|
||||
orderSource: 'FAMILY_DOCTOR',
|
||||
evaluateChanne: 'WE_CHAT_APPLET',
|
||||
evaluateChannel: 'WE_CHAT_APPLET',
|
||||
evaluateSatisfaction:'',
|
||||
},
|
||||
query: {
|
||||
pageNum: 1,
|
||||
@ -174,13 +175,27 @@
|
||||
},
|
||||
onShow() {
|
||||
const value = uni.getStorageSync('userinfo');
|
||||
this.query.identity=value.cardNo
|
||||
this.query.identity = value.cardNo
|
||||
this.info()
|
||||
},
|
||||
|
||||
watch: { //监听
|
||||
'list.compositeScore'() {
|
||||
if (this.list.compositeScore == 5) {
|
||||
this.list.evaluateSatisfaction = 'VERYSATISFIED'
|
||||
} else if (this.list.compositeScore == 4) {
|
||||
this.list.evaluateSatisfaction = 'SATISFIED'
|
||||
} else if (this.list.compositeScore == 3) {
|
||||
this.list.evaluateSatisfaction = 'COMMONLY'
|
||||
} else if (this.list.compositeScore == 2) {
|
||||
this.list.evaluateSatisfaction = 'DISSATISFIED'
|
||||
} else if (this.list.compositeScore == 1) {
|
||||
this.list.evaluateSatisfaction = 'VERYDISSATISFIED'
|
||||
}
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
cancel(){
|
||||
this.evaluateshow=false
|
||||
cancel() {
|
||||
this.evaluateshow = false
|
||||
},
|
||||
submit(item) {
|
||||
console.log(this.list, '45')
|
||||
@ -239,7 +254,7 @@
|
||||
this.list.patientId = uni.getStorageSync('patientId');
|
||||
this.list.openId = uni.getStorageSync('openid');
|
||||
this.list.orderSource = 'FAMILY_DOCTOR'
|
||||
this.list.evaluateChanne = 'WE_CHAT_APPLET'
|
||||
this.list.evaluateChannel = 'WE_CHAT_APPLET'
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user