|
@@ -1,256 +1,281 @@
|
1
|
1
|
<template>
|
2
|
|
- <div>
|
|
2
|
+ <div>
|
3
|
3
|
<div class="Dialog" v-show="!selecting">
|
4
|
|
- <div class="DialogTit">
|
5
|
|
- <span @click="close()" class="iconfont"></span>
|
6
|
|
- <h1 class="name">透析下机</h1>
|
7
|
|
- <span class="success" v-if="this.record.state == 1 || this.$store.getters.user.user.id != this.creator"></span>
|
8
|
|
- <span class="success" @click="modify()" v-if="isPremission|| this.$store.getters.user.user.id == this.creator">修改</span>
|
|
4
|
+ <div class="DialogTit">
|
|
5
|
+ <span @click="close()" class="iconfont"></span>
|
|
6
|
+ <h1 class="name">透析下机</h1>
|
|
7
|
+ <span class="success" v-if="this.record.state == 1 || this.$store.getters.user.user.id != this.creator"></span>
|
|
8
|
+ <span class="success" @click="modify()" v-if="isPremission|| this.$store.getters.user.user.id == this.creator">修改</span>
|
9
|
9
|
|
10
|
|
- </div>
|
|
10
|
+ </div>
|
11
|
11
|
|
12
|
|
- <div class="DialogContent ">
|
13
|
|
- <div class="item" @click="select_nurse">
|
14
|
|
- <h2 class="name">下机护士</h2>
|
15
|
|
- <div class="content">
|
16
|
|
- <span class="text" style="width: 100px">{{ nurse_id == 0 ? '' : admin_map[nurse_id].name }}</span>
|
17
|
|
- <span class="iconfont"></span>
|
18
|
|
- </div>
|
|
12
|
+ <div class="DialogContent ">
|
|
13
|
+ <div class="item" @click="select_nurse">
|
|
14
|
+ <h2 class="name">下机护士</h2>
|
|
15
|
+ <div class="content">
|
|
16
|
+ <span class="text" style="width: 100px">{{ nurse_id == 0 ? '' : admin_map[nurse_id].name }}</span>
|
|
17
|
+ <span class="iconfont"></span>
|
19
|
18
|
</div>
|
|
19
|
+ </div>
|
20
|
20
|
|
21
|
21
|
|
22
|
|
- <div class="item">
|
23
|
|
- <h2 class="name">下机时间</h2>
|
24
|
|
- <div class="content">
|
25
|
|
- <span class="text" style="width: 100px" @click="selectStartTimeAction">{{ end_time_str }}</span>
|
26
|
|
- <span class="iconfont"></span>
|
27
|
|
- </div>
|
|
22
|
+ <div class="item">
|
|
23
|
+ <h2 class="name">下机时间</h2>
|
|
24
|
+ <div class="content">
|
|
25
|
+ <span class="text" style="width: 100px" @click="selectStartTimeAction">{{ end_time_str }}</span>
|
|
26
|
+ <span class="iconfont"></span>
|
28
|
27
|
</div>
|
|
28
|
+ </div>
|
29
|
29
|
|
30
|
|
- <div class="perform">
|
31
|
|
- <button @click="commitInfo" v-show="(record != null && record.id != '' && record.stage == 1)">执行下机</button>
|
32
|
|
- <button :disabled="true" style="background-color:lightgray;" v-show="(record != null && record.id != '' && record.stage == 2)">已下机</button>
|
33
|
|
- <button :disabled="true" style="background-color:lightgray;" v-show="record == null || record.id == ''">未上机</button>
|
34
|
|
- </div>
|
|
30
|
+ <div class="perform">
|
|
31
|
+ <button @click="commitInfo" v-show="(record != null && record.id != '' && record.stage == 1)">执行下机</button>
|
|
32
|
+ <button :disabled="true" style="background-color:lightgray;"
|
|
33
|
+ v-show="(record != null && record.id != '' && record.stage == 2)">已下机
|
|
34
|
+ </button>
|
|
35
|
+ <button :disabled="true" style="background-color:lightgray;" v-show="record == null || record.id == ''">未上机
|
|
36
|
+ </button>
|
35
|
37
|
</div>
|
|
38
|
+ </div>
|
36
|
39
|
</div>
|
37
|
40
|
<two-menu ref="selector"></two-menu>
|
38
|
|
- <mt-datetime-picker
|
39
|
|
- ref="start_time_picker"
|
40
|
|
- type="datetime"
|
41
|
|
- @confirm="didSelectStartTime"
|
42
|
|
- v-model="end_time"
|
43
|
|
- ></mt-datetime-picker>
|
|
41
|
+ <mt-datetime-picker
|
|
42
|
+ ref="start_time_picker"
|
|
43
|
+ type="datetime"
|
|
44
|
+ @confirm="didSelectStartTime"
|
|
45
|
+ v-model="end_time"
|
|
46
|
+ ></mt-datetime-picker>
|
44
|
47
|
</div>
|
45
|
48
|
</template>
|
46
|
49
|
|
47
|
50
|
<script>
|
48
|
|
- import {
|
49
|
|
- finish,PostModifyEndDialysis
|
50
|
|
- } from "@/api/dialysis";
|
51
|
|
- import { Toast } from 'vant';
|
|
51
|
+ import {finish, PostModifyEndDialysis} from '@/api/dialysis'
|
|
52
|
+ import {Toast} from 'vant'
|
52
|
53
|
import TwoMenu from './TwoMenu'
|
53
|
|
- import { parseTime } from "@/utils";
|
|
54
|
+ import {parseTime} from '@/utils'
|
54
|
55
|
|
55
|
56
|
export default {
|
56
|
|
- name: "PlaneDialog",
|
57
|
|
- components: {
|
58
|
|
- TwoMenu
|
59
|
|
- },
|
60
|
|
- data() {
|
61
|
|
- return {
|
62
|
|
- selecting: false,
|
63
|
|
- end_time_str: "",
|
64
|
|
- end_time:new Date(),
|
65
|
|
- nurse_id: 0,
|
66
|
|
- isPremission:false,
|
67
|
|
- creator:0,
|
68
|
|
- }
|
69
|
|
- },
|
70
|
|
- props:{
|
71
|
|
- patient_prop: {
|
72
|
|
- type: Object,
|
73
|
|
- },
|
74
|
|
- record: {
|
75
|
|
- type: Object,
|
76
|
|
- },
|
77
|
|
- admins: {
|
78
|
|
- type: Array,
|
|
57
|
+ name: 'PlaneDialog',
|
|
58
|
+ components: {
|
|
59
|
+ TwoMenu
|
79
|
60
|
},
|
80
|
|
- admin_map: {
|
81
|
|
- type: Object,
|
82
|
|
- },
|
83
|
|
- special_premission: {
|
84
|
|
- type: Array,
|
85
|
|
- },
|
86
|
|
- last_monitor_record: {
|
87
|
|
- type: Object,
|
88
|
|
- }
|
89
|
|
- },mounted() {
|
90
|
|
- if(this.last_monitor_record.id == 0){
|
91
|
|
- this.end_time_str = parseTime(this.end_time, "{y}-{m}-{d} {h}:{i}") + ":00";
|
92
|
|
- }else{
|
93
|
|
- this.end_time_str = parseTime(this.last_monitor_record.operate_time, "{y}-{m}-{d} {h}:{i}") + ":00";
|
|
61
|
+ data () {
|
|
62
|
+ return {
|
|
63
|
+ selecting: false,
|
|
64
|
+ end_time_str: '',
|
|
65
|
+ end_time: new Date(),
|
|
66
|
+ nurse_id: 0,
|
|
67
|
+ isPremission: false,
|
|
68
|
+ creator: 0,
|
94
|
69
|
}
|
95
|
70
|
},
|
96
|
|
- created(){
|
97
|
|
- var date = this.$route.query && this.$route.query.date;
|
98
|
|
- date *= 1000;
|
99
|
|
- var newDate = new Date(date);
|
100
|
|
- var y = newDate.getFullYear();
|
101
|
|
- var m = newDate.getMonth() + 1;
|
102
|
|
- var d = newDate.getDate();
|
103
|
|
- if (isNaN(y) || isNaN(m) || isNaN(d)) {
|
104
|
|
- newDate = new Date();
|
105
|
|
- y = newDate.getFullYear();
|
106
|
|
- m = newDate.getMonth() + 1;
|
107
|
|
- d = newDate.getDate();
|
108
|
|
- }
|
109
|
|
- this.record_date = y + "-" + (m < 10 ? "0" + m : m) + "-" + (d < 10 ? "0" + d : d);
|
110
|
|
-
|
111
|
|
- if (this.record == null || this.record.id == '') {
|
112
|
|
- this.nurse_id = 0
|
113
|
|
- } else if (this.record.stage == 1) {
|
114
|
|
- this.nurse_id = this.$store.getters.user.user.id
|
115
|
|
- } else {
|
116
|
|
- this.nurse_id = this.record.finish_nurse
|
117
|
|
- }
|
|
71
|
+ props: {
|
|
72
|
+ prescription_prop: {
|
|
73
|
+ type: Object,
|
|
74
|
+ },
|
|
75
|
+ patient_prop: {
|
|
76
|
+ type: Object,
|
|
77
|
+ },
|
|
78
|
+ record: {
|
|
79
|
+ type: Object,
|
|
80
|
+ },
|
|
81
|
+ admins: {
|
|
82
|
+ type: Array,
|
|
83
|
+ },
|
|
84
|
+ admin_map: {
|
|
85
|
+ type: Object,
|
|
86
|
+ },
|
|
87
|
+ special_premission: {
|
|
88
|
+ type: Array,
|
|
89
|
+ },
|
|
90
|
+ last_monitor_record: {
|
|
91
|
+ type: Object,
|
|
92
|
+ }
|
|
93
|
+ }, mounted () {
|
|
94
|
+ if (this.record.id == '') { //没有上下机记录
|
|
95
|
+ this.end_time_str = parseTime(Date.parse(new Date()) / 1000, '{y}-{m}-{d} {h}:{i}') + ':00'
|
|
96
|
+ } else {
|
|
97
|
+ if (this.record.start_time > 0) {
|
|
98
|
+ if(this.prescription_prop.id != ""){
|
|
99
|
+ let endTime = 0
|
|
100
|
+ endTime = this.record.start_time + this.prescription_prop.dialysis_duration_hour * 3600 + this.prescription_prop.dialysis_duration_minute * 60
|
|
101
|
+ this.end_time_str = parseTime(endTime, '{y}-{m}-{d} {h}:{i}') + ':00'
|
|
102
|
+ }else{
|
|
103
|
+ this.end_time_str = parseTime(Date.parse(new Date()) / 1000, '{y}-{m}-{d} {h}:{i}') + ':00'
|
|
104
|
+ }
|
|
105
|
+ if(this.record.end_time > 0){
|
|
106
|
+ this.end_time_str = parseTime(this.record.end_time , '{y}-{m}-{d} {h}:{i}') + ':00'
|
|
107
|
+ }
|
|
108
|
+ } else {
|
|
109
|
+ this.end_time_str = parseTime(Date.parse(new Date()) / 1000, '{y}-{m}-{d} {h}:{i}') + ':00'
|
|
110
|
+ }
|
|
111
|
+ }
|
|
112
|
+ this.end_time = this.end_time_str
|
118
|
113
|
|
119
|
|
- console.log("下机:"+this.nurse_id)
|
|
114
|
+ // if(this.record.idthis.record.end_time == 0)
|
120
|
115
|
|
121
|
|
- if (this.record.id > 0) {
|
122
|
|
- for (let i = 0; i < this.special_premission.length; i++) {
|
123
|
|
- if (this.$store.getters.user.user.id == this.special_premission[i].admin_user_id) {
|
124
|
|
- this.isPremission = true
|
125
|
|
- }
|
|
116
|
+ // if(this.last_monitor_record.id == 0){
|
|
117
|
+ //
|
|
118
|
+ // this.end_time_str = parseTime(this.last_monitor_record.operate_time, "{y}-{m}-{d} {h}:{i}") + ":00";
|
|
119
|
+ // }else{
|
|
120
|
+ // this.end_time_str = parseTime(this.end_time, "{y}-{m}-{d} {h}:{i}") + ":00";
|
|
121
|
+ //
|
|
122
|
+ // }
|
|
123
|
+ },
|
|
124
|
+ created () {
|
|
125
|
+ var date = this.$route.query && this.$route.query.date
|
|
126
|
+ date *= 1000
|
|
127
|
+ var newDate = new Date(date)
|
|
128
|
+ var y = newDate.getFullYear()
|
|
129
|
+ var m = newDate.getMonth() + 1
|
|
130
|
+ var d = newDate.getDate()
|
|
131
|
+ if (isNaN(y) || isNaN(m) || isNaN(d)) {
|
|
132
|
+ newDate = new Date()
|
|
133
|
+ y = newDate.getFullYear()
|
|
134
|
+ m = newDate.getMonth() + 1
|
|
135
|
+ d = newDate.getDate()
|
126
|
136
|
}
|
127
|
|
- }
|
|
137
|
+ this.record_date = y + '-' + (m < 10 ? '0' + m : m) + '-' + (d < 10 ? '0' + d : d)
|
128
|
138
|
|
129
|
|
- if (this.record.id > 0) {
|
130
|
|
- if (this.record.finish_creator == 0) {
|
131
|
|
- this.creator = this.record.finish_nurse
|
|
139
|
+ if (this.record == null || this.record.id == '') {
|
|
140
|
+ this.nurse_id = 0
|
|
141
|
+ } else if (this.record.stage == 1) {
|
|
142
|
+ this.nurse_id = this.$store.getters.user.user.id
|
132
|
143
|
} else {
|
133
|
|
- this.creator = this.record.finish_creator
|
|
144
|
+ this.nurse_id = this.record.finish_nurse
|
134
|
145
|
}
|
135
|
|
- }
|
136
|
146
|
|
|
147
|
+ if (this.record.id > 0) {
|
|
148
|
+ for (let i = 0; i < this.special_premission.length; i++) {
|
|
149
|
+ if (this.$store.getters.user.user.id == this.special_premission[i].admin_user_id) {
|
|
150
|
+ this.isPremission = true
|
|
151
|
+ }
|
|
152
|
+ }
|
|
153
|
+ }
|
137
|
154
|
|
138
|
|
- },
|
139
|
|
- methods: {
|
140
|
|
- set_last_monitor_record(monitor) {
|
141
|
|
- this.last_monitor_record = monitor
|
142
|
|
- this.end_time_str = parseTime(this.last_monitor_record.operate_time, "{y}-{m}-{d} {h}:{i}") + ":00";
|
143
|
|
- },
|
144
|
|
- modify(){
|
145
|
|
- let ParamsQuery = {}
|
146
|
|
- ParamsQuery['id'] = this.record.id
|
147
|
|
- ParamsQuery["nurse"] = this.nurse_id
|
148
|
|
- ParamsQuery["end_time"] = this.end_time_str
|
149
|
|
- PostModifyEndDialysis(ParamsQuery).then(response => {
|
150
|
|
- if (response.data.state == 0) {
|
151
|
|
- Toast.fail(response.data.msg)
|
152
|
|
- return false
|
|
155
|
+ if (this.record.id > 0) {
|
|
156
|
+ if (this.record.finish_creator == 0) {
|
|
157
|
+ this.creator = this.record.finish_nurse
|
153
|
158
|
} else {
|
154
|
|
- Toast.success('修改成功')
|
155
|
|
- this.$emit('did_off', response.data.data.dialysis_order)
|
156
|
|
- var record = this.record
|
157
|
|
- for (const key in response.data.data.dialysis_order) {
|
158
|
|
- this.$set(record, key, response.data.data.dialysis_order[key])
|
159
|
|
- }
|
|
159
|
+ this.creator = this.record.finish_creator
|
160
|
160
|
}
|
161
|
|
- })
|
162
|
|
- },
|
163
|
|
- didSelectStartTime: function(time) {
|
164
|
|
- this.end_time_str = parseTime(time, "{y}-{m}-{d} {h}:{i}") + ":00";
|
|
161
|
+ }
|
|
162
|
+
|
165
|
163
|
},
|
166
|
|
- selectStartTimeAction: function() {
|
167
|
|
- if (this.record.id != 0) {
|
168
|
|
- if(this.record.end_time > 0){
|
169
|
|
- var creator = 0
|
170
|
|
- if (this.record.finish_creator == 0) {
|
171
|
|
- creator = this.record.finish_nurse
|
|
164
|
+ methods: {
|
|
165
|
+ set_last_monitor_record (monitor) {
|
|
166
|
+ this.last_monitor_record = monitor
|
|
167
|
+ this.end_time_str = parseTime(this.last_monitor_record.operate_time, '{y}-{m}-{d} {h}:{i}') + ':00'
|
|
168
|
+ },
|
|
169
|
+ modify () {
|
|
170
|
+ let ParamsQuery = {}
|
|
171
|
+ ParamsQuery['id'] = this.record.id
|
|
172
|
+ ParamsQuery['nurse'] = this.nurse_id
|
|
173
|
+ ParamsQuery['end_time'] = this.end_time_str
|
|
174
|
+ PostModifyEndDialysis(ParamsQuery).then(response => {
|
|
175
|
+ if (response.data.state == 0) {
|
|
176
|
+ Toast.fail(response.data.msg)
|
|
177
|
+ return false
|
172
|
178
|
} else {
|
173
|
|
- creator = this.record.finish_creator
|
|
179
|
+ Toast.success('修改成功')
|
|
180
|
+ this.$emit('did_off', response.data.data.dialysis_order)
|
|
181
|
+ var record = this.record
|
|
182
|
+ for (const key in response.data.data.dialysis_order) {
|
|
183
|
+ this.$set(record, key, response.data.data.dialysis_order[key])
|
|
184
|
+ }
|
174
|
185
|
}
|
175
|
|
- if (this.$store.getters.user.user.id == creator || this.isPremission) {
|
176
|
|
- this.$refs.start_time_picker.open()
|
|
186
|
+ })
|
|
187
|
+ },
|
|
188
|
+ didSelectStartTime: function (time) {
|
|
189
|
+ this.end_time_str = parseTime(time, '{y}-{m}-{d} {h}:{i}') + ':00'
|
|
190
|
+ },
|
|
191
|
+ selectStartTimeAction: function () {
|
|
192
|
+ if (this.record.id != 0) {
|
|
193
|
+ if (this.record.end_time > 0) {
|
|
194
|
+ var creator = 0
|
|
195
|
+ if (this.record.finish_creator == 0) {
|
|
196
|
+ creator = this.record.finish_nurse
|
|
197
|
+ } else {
|
|
198
|
+ creator = this.record.finish_creator
|
|
199
|
+ }
|
|
200
|
+ if (this.$store.getters.user.user.id == creator || this.isPremission) {
|
|
201
|
+ this.$refs.start_time_picker.open()
|
|
202
|
+ } else {
|
|
203
|
+ return
|
|
204
|
+ }
|
177
|
205
|
} else {
|
178
|
|
- return
|
|
206
|
+ this.$refs.start_time_picker.open()
|
179
|
207
|
}
|
180
|
|
- }else{
|
181
|
|
- this.$refs.start_time_picker.open();
|
|
208
|
+ } else {
|
|
209
|
+ this.$refs.start_time_picker.open()
|
182
|
210
|
}
|
183
|
|
- }else{
|
184
|
|
- this.$refs.start_time_picker.open();
|
185
|
|
- }
|
186
|
211
|
|
187
|
|
- },
|
188
|
|
- commitInfo: function () {
|
189
|
|
- Toast.loading({forbidClick: true, duration: 0})
|
190
|
|
- let ParamsQuery = {}
|
191
|
|
- ParamsQuery['patient'] = this.patient_prop.id
|
192
|
|
- ParamsQuery['record_date'] = this.record_date
|
193
|
|
- ParamsQuery["nurse"] = this.nurse_id
|
194
|
|
- ParamsQuery["end_time"] = this.end_time_str
|
|
212
|
+ },
|
|
213
|
+ commitInfo: function () {
|
|
214
|
+ Toast.loading({forbidClick: true, duration: 0})
|
|
215
|
+ let ParamsQuery = {}
|
|
216
|
+ ParamsQuery['patient'] = this.patient_prop.id
|
|
217
|
+ ParamsQuery['record_date'] = this.record_date
|
|
218
|
+ ParamsQuery['nurse'] = this.nurse_id
|
|
219
|
+ ParamsQuery['end_time'] = this.end_time_str
|
195
|
220
|
|
196
|
|
- finish(ParamsQuery).then(response => {
|
197
|
|
- if (response.data.state == 0) {
|
198
|
|
- Toast.fail(response.data.msg);
|
199
|
|
- return false;
|
200
|
|
- } else {
|
201
|
|
- Toast.success("下机成功");
|
202
|
|
- this.$emit('did_off', response.data.data.assessmentAfterDislysis);
|
203
|
|
- var record = this.record
|
204
|
|
- for (const key in response.data.data.dialysisOrder) {
|
205
|
|
- this.$set(record, key, response.data.data.dialysisOrder[key])
|
206
|
|
- // record[key] = response.data.data.dialysisOrder[key]
|
207
|
|
- }
|
208
|
|
- // console.log(this.record)
|
209
|
|
- }
|
210
|
|
- });
|
211
|
|
- },
|
212
|
|
- close: function() {
|
213
|
|
- this.$emit('close')
|
214
|
|
- },
|
215
|
|
- select_nurse: function() {
|
216
|
|
- if (this.record != null && this.record.id != '') {
|
217
|
|
- if(this.record.stage == 1){
|
218
|
|
- this.selecting = true
|
219
|
|
- var t = this
|
220
|
|
- this.$refs.selector.showSingleSelect(this.admins, this.nurse_id, "选择下机护士", "name", "id", function(select_id) {
|
221
|
|
- console.log("nurse id: ", select_id)
|
222
|
|
- t.nurse_id = select_id
|
223
|
|
- }, function() {
|
224
|
|
- t.selecting = false
|
225
|
|
- })
|
226
|
|
- }else{
|
227
|
|
- var creator = 0
|
228
|
|
- if (this.record.finish_creator == 0) {
|
229
|
|
- creator = this.record.finish_nurse
|
|
221
|
+ finish(ParamsQuery).then(response => {
|
|
222
|
+ if (response.data.state == 0) {
|
|
223
|
+ Toast.fail(response.data.msg)
|
|
224
|
+ return false
|
230
|
225
|
} else {
|
231
|
|
- creator = this.record.finish_creator
|
|
226
|
+ Toast.success('下机成功')
|
|
227
|
+ this.$emit('did_off', response.data.data.assessmentAfterDislysis)
|
|
228
|
+ var record = this.record
|
|
229
|
+ for (const key in response.data.data.dialysisOrder) {
|
|
230
|
+ this.$set(record, key, response.data.data.dialysisOrder[key])
|
|
231
|
+ // record[key] = response.data.data.dialysisOrder[key]
|
|
232
|
+ }
|
|
233
|
+ // console.log(this.record)
|
232
|
234
|
}
|
233
|
|
- if (this.$store.getters.user.user.id == creator || this.isPremission) {
|
|
235
|
+ })
|
|
236
|
+ },
|
|
237
|
+ close: function () {
|
|
238
|
+ this.$emit('close')
|
|
239
|
+ },
|
|
240
|
+ select_nurse: function () {
|
|
241
|
+ if (this.record != null && this.record.id != '') {
|
|
242
|
+ if (this.record.stage == 1) {
|
234
|
243
|
this.selecting = true
|
235
|
244
|
var t = this
|
236
|
|
- this.$refs.selector.showSingleSelect(this.admins, this.nurse_id, "选择下机护士", "name", "id", function(select_id) {
|
237
|
|
- console.log("nurse id: ", select_id)
|
|
245
|
+ this.$refs.selector.showSingleSelect(this.admins, this.nurse_id, '选择下机护士', 'name', 'id', function (select_id) {
|
|
246
|
+ console.log('nurse id: ', select_id)
|
238
|
247
|
t.nurse_id = select_id
|
239
|
|
- }, function() {
|
|
248
|
+ }, function () {
|
240
|
249
|
t.selecting = false
|
241
|
250
|
})
|
242
|
251
|
} else {
|
243
|
|
- return
|
|
252
|
+ var creator = 0
|
|
253
|
+ if (this.record.finish_creator == 0) {
|
|
254
|
+ creator = this.record.finish_nurse
|
|
255
|
+ } else {
|
|
256
|
+ creator = this.record.finish_creator
|
|
257
|
+ }
|
|
258
|
+ if (this.$store.getters.user.user.id == creator || this.isPremission) {
|
|
259
|
+ this.selecting = true
|
|
260
|
+ var t = this
|
|
261
|
+ this.$refs.selector.showSingleSelect(this.admins, this.nurse_id, '选择下机护士', 'name', 'id', function (select_id) {
|
|
262
|
+ console.log('nurse id: ', select_id)
|
|
263
|
+ t.nurse_id = select_id
|
|
264
|
+ }, function () {
|
|
265
|
+ t.selecting = false
|
|
266
|
+ })
|
|
267
|
+ } else {
|
|
268
|
+ return
|
|
269
|
+ }
|
244
|
270
|
}
|
245
|
|
- }
|
246
|
271
|
|
|
272
|
+ }
|
|
273
|
+ },
|
|
274
|
+ open: function () {
|
|
275
|
+ this.selecting = false
|
|
276
|
+ this.$refs.selector.hide()
|
247
|
277
|
}
|
248
|
|
- },
|
249
|
|
- open:function(){
|
250
|
|
- this.selecting = false;
|
251
|
|
- this.$refs.selector.hide();
|
252
|
|
- }
|
253
|
|
- }, watch: {
|
|
278
|
+ }, watch: {
|
254
|
279
|
'record.stage': function (val) {
|
255
|
280
|
if (val == 2) {
|
256
|
281
|
for (let i = 0; i < this.special_premission.length; i++) {
|
|
@@ -268,33 +293,32 @@
|
268
|
293
|
console.log(this.creator)
|
269
|
294
|
console.log(this.$store.getters.user.user.id)
|
270
|
295
|
|
271
|
|
-
|
272
|
296
|
}
|
273
|
297
|
|
274
|
298
|
}
|
275
|
|
-};
|
|
299
|
+ }
|
276
|
300
|
</script>
|
277
|
301
|
|
278
|
302
|
<style style="stylesheet/scss" lang="scss" scoped>
|
279
|
303
|
|
280
|
|
-.perform{
|
|
304
|
+ .perform{
|
281
|
305
|
text-align: center;
|
282
|
306
|
font-size: 0.3rem;
|
283
|
307
|
padding-top: 2rem;
|
284
|
308
|
.crew{
|
285
|
|
- color: $pgh-color;
|
|
309
|
+ color: $pgh-color;
|
286
|
310
|
}
|
287
|
311
|
button{
|
288
|
|
- background:$main-color;
|
289
|
|
- color: #fff;
|
290
|
|
- font-size: 0.3rem;
|
291
|
|
- text-align:center;
|
292
|
|
- width: 3rem;
|
293
|
|
- height: 0.7rem;
|
294
|
|
- line-height: 0.7rem;
|
295
|
|
- border-radius:4px;
|
296
|
|
- margin-top:10px;
|
|
312
|
+ background:$main-color;
|
|
313
|
+ color: #fff;
|
|
314
|
+ font-size: 0.3rem;
|
|
315
|
+ text-align:center;
|
|
316
|
+ width: 3rem;
|
|
317
|
+ height: 0.7rem;
|
|
318
|
+ line-height: 0.7rem;
|
|
319
|
+ border-radius:4px;
|
|
320
|
+ margin-top:10px;
|
|
321
|
+ }
|
297
|
322
|
}
|
298
|
|
-}
|
299
|
323
|
</style>
|
300
|
324
|
|