vue2-client 1.14.33 → 1.14.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/base-client/components/common/AddressSearchCombobox/AddressSearchCombobox.vue +3 -3
- package/src/base-client/components/his/XShiftSchedule/XShiftSchedule.vue +252 -261
- package/src/base-client/components/his/XShiftSchedule/dome.vue +29 -23
- package/src/base-client/components/his/threeTestOrders/dome.vue +17 -0
- package/src/base-client/components/his/threeTestOrders/textBox.vue +515 -522
- package/src/pages/userInfoDetailManage/index.vue +3 -3
package/package.json
CHANGED
|
@@ -118,7 +118,7 @@ export default {
|
|
|
118
118
|
// 生成地址串中省市区街道信息禁止修改
|
|
119
119
|
readOnlyDivisions: false,
|
|
120
120
|
// cur 位置
|
|
121
|
-
curPosition:
|
|
121
|
+
curPosition: [108.878703, 34.223701],
|
|
122
122
|
searchFlag: false,
|
|
123
123
|
}
|
|
124
124
|
},
|
|
@@ -291,7 +291,7 @@ export default {
|
|
|
291
291
|
|
|
292
292
|
this.addressObj.address = addressMatch ? addressMatch[1].trim() : null
|
|
293
293
|
const label = labelMatch ? labelMatch[1].trim() : null
|
|
294
|
-
this.addressObj.address = this.mergeAddressAndLabel(this.addressObj.address, label)
|
|
294
|
+
this.addressObj.address = this.addressObj.address != null ? this.mergeAddressAndLabel(this.addressObj.address, label) : labelMatch[1].trim()
|
|
295
295
|
this.addressObj.lng_lat = coordinatesMatch ? coordinatesMatch[1] : ''
|
|
296
296
|
|
|
297
297
|
// 更新地图中心和标记位置
|
|
@@ -436,7 +436,7 @@ export default {
|
|
|
436
436
|
#addressSearchCombobox_map {
|
|
437
437
|
margin: 1% 0;
|
|
438
438
|
width: 100%;
|
|
439
|
-
height:
|
|
439
|
+
height: 50vh;
|
|
440
440
|
text-align: center
|
|
441
441
|
}
|
|
442
442
|
|
|
@@ -1,261 +1,252 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<a-table
|
|
3
|
-
:columns="columns"
|
|
4
|
-
:data-source="data"
|
|
5
|
-
:rowSelection="rowSelection"
|
|
6
|
-
|
|
7
|
-
<span slot="time" class="time-title">
|
|
8
|
-
<span
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
}
|
|
151
|
-
},
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
this
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
this.
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
flex-direction: column !important;
|
|
254
|
-
align-items: center !important;
|
|
255
|
-
}
|
|
256
|
-
::v-deep .ant-table-thead > tr > th,
|
|
257
|
-
::v-deep .ant-table-tbody > tr > td {
|
|
258
|
-
padding: 8px 16px !important;
|
|
259
|
-
overflow-wrap: break-word;
|
|
260
|
-
}
|
|
261
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<a-table
|
|
3
|
+
:columns="columns"
|
|
4
|
+
:data-source="data"
|
|
5
|
+
:rowSelection="rowSelection"
|
|
6
|
+
:scroll="{ y: '75vh' }">
|
|
7
|
+
<span slot="time" class="time-title">
|
|
8
|
+
<span v-for="(item, index) in configData.timePeriod" :key=index>{{item}}</span>
|
|
9
|
+
</span>
|
|
10
|
+
<template slot="Monday" slot-scope="text, record">
|
|
11
|
+
<div class="time-title">
|
|
12
|
+
<a-button v-for="(item, index) in record.Monday" :key="index" @click="handleShiftChange('Monday', index, record)">{{item === 1 || item === '1' ? '坐诊' : '休息'}}</a-button>
|
|
13
|
+
</div>
|
|
14
|
+
</template>
|
|
15
|
+
<template slot="Tuesday" slot-scope="text, record">
|
|
16
|
+
<div class="time-title">
|
|
17
|
+
<a-button v-for="(item, index) in record.Tuesday" :key="index" @click="handleShiftChange('Tuesday', index, record)">{{item === 1 || item === '1' ? '坐诊' : '休息'}}</a-button>
|
|
18
|
+
</div>
|
|
19
|
+
</template>
|
|
20
|
+
<template slot="Wednesday" slot-scope="text, record">
|
|
21
|
+
<div class="time-title">
|
|
22
|
+
<a-button v-for="(item, index) in record.Wednesday" :key="index" @click="handleShiftChange('Wednesday', index, record)">{{item === 1 || item === '1' ? '坐诊' : '休息'}}</a-button>
|
|
23
|
+
</div>
|
|
24
|
+
</template>
|
|
25
|
+
<template slot="Thursday" slot-scope="text, record">
|
|
26
|
+
<div class="time-title">
|
|
27
|
+
<a-button v-for="(item, index) in record.Thursday" :key="index" @click="handleShiftChange('Thursday', index, record)">{{item === 1 || item === '1' ? '坐诊' : '休息'}}</a-button>
|
|
28
|
+
</div>
|
|
29
|
+
</template>
|
|
30
|
+
<template slot="Friday" slot-scope="text, record">
|
|
31
|
+
<div class="time-title">
|
|
32
|
+
<a-button v-for="(item, index) in record.Friday" :key="index" @click="handleShiftChange('Friday', index, record)">{{item === 1 || item === '1' ? '坐诊' : '休息'}}</a-button>
|
|
33
|
+
</div>
|
|
34
|
+
</template>
|
|
35
|
+
<template slot="Saturday" slot-scope="text, record">
|
|
36
|
+
<div class="time-title">
|
|
37
|
+
<a-button v-for="(item, index) in record.Saturday" :key="index" @click="handleShiftChange('Saturday', index, record)">{{item === 1 || item === '1' ? '坐诊' : '休息'}}</a-button>
|
|
38
|
+
</div>
|
|
39
|
+
</template>
|
|
40
|
+
<template slot="Sunday" slot-scope="text, record">
|
|
41
|
+
<div class="time-title">
|
|
42
|
+
<a-button v-for="(item, index) in record.Sunday" :key="index" @click="handleShiftChange('Sunday', index, record)">{{item === 1 || item === '1' ? '坐诊' : '休息'}}</a-button>
|
|
43
|
+
</div>
|
|
44
|
+
</template>
|
|
45
|
+
<template slot="sk_limit" slot-scope="text, record">
|
|
46
|
+
<a-input-number id="inputNumber" v-model="record.sk_limit" :min="configData.sk_limitMin" :max="configData.sk_limitMax" />
|
|
47
|
+
</template>
|
|
48
|
+
</a-table>
|
|
49
|
+
</template>
|
|
50
|
+
<script>
|
|
51
|
+
import { getConfigByName, runLogic } from '@vue2-client/services/api/common'
|
|
52
|
+
|
|
53
|
+
export default {
|
|
54
|
+
data () {
|
|
55
|
+
return {
|
|
56
|
+
data: [],
|
|
57
|
+
// 列配置
|
|
58
|
+
columns: [],
|
|
59
|
+
// 列名
|
|
60
|
+
columnNames: [],
|
|
61
|
+
// 选中的行键值集合
|
|
62
|
+
selectedRows: [],
|
|
63
|
+
// 选中的行信息集合
|
|
64
|
+
selectedRowKeys: [],
|
|
65
|
+
// 原始数据备份
|
|
66
|
+
originalData: [],
|
|
67
|
+
// 配置参数
|
|
68
|
+
configData: {},
|
|
69
|
+
// 排班时间表
|
|
70
|
+
shiftTable: [
|
|
71
|
+
{
|
|
72
|
+
title: '周一',
|
|
73
|
+
key: 'Monday',
|
|
74
|
+
dataIndex: 'Monday',
|
|
75
|
+
scopedSlots: { customRender: 'Monday' },
|
|
76
|
+
align: 'center'
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
title: '周二',
|
|
80
|
+
key: 'Tuesday',
|
|
81
|
+
dataIndex: 'Tuesday',
|
|
82
|
+
scopedSlots: { customRender: 'Tuesday' },
|
|
83
|
+
align: 'center'
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
title: '周三',
|
|
87
|
+
key: 'Wednesday',
|
|
88
|
+
dataIndex: 'Wednesday',
|
|
89
|
+
scopedSlots: { customRender: 'Wednesday' },
|
|
90
|
+
align: 'center'
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
title: '周四',
|
|
94
|
+
key: 'Thursday',
|
|
95
|
+
dataIndex: 'Thursday',
|
|
96
|
+
scopedSlots: { customRender: 'Thursday' },
|
|
97
|
+
align: 'center'
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
title: '周五',
|
|
101
|
+
key: 'Friday',
|
|
102
|
+
dataIndex: 'Friday',
|
|
103
|
+
scopedSlots: { customRender: 'Friday' },
|
|
104
|
+
align: 'center'
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
title: '周六',
|
|
108
|
+
key: 'Saturday',
|
|
109
|
+
dataIndex: 'Saturday',
|
|
110
|
+
scopedSlots: { customRender: 'Saturday' },
|
|
111
|
+
align: 'center'
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
title: '周日',
|
|
115
|
+
key: 'Sunday',
|
|
116
|
+
dataIndex: 'Sunday',
|
|
117
|
+
scopedSlots: { customRender: 'Sunday' },
|
|
118
|
+
align: 'center'
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
title: '排班数',
|
|
122
|
+
key: 'sk_limit',
|
|
123
|
+
dataIndex: 'sk_limit',
|
|
124
|
+
scopedSlots: { customRender: 'sk_limit' },
|
|
125
|
+
align: 'center'
|
|
126
|
+
}
|
|
127
|
+
]
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
props: {
|
|
131
|
+
// 配置名
|
|
132
|
+
queryParamsName: {
|
|
133
|
+
type: String,
|
|
134
|
+
default: ''
|
|
135
|
+
},
|
|
136
|
+
// 服务名
|
|
137
|
+
serviceName: {
|
|
138
|
+
type: String,
|
|
139
|
+
default: 'af-his'
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
computed: {
|
|
143
|
+
rowSelection () {
|
|
144
|
+
return {
|
|
145
|
+
selectedRowKeys: this.selectedRowKeys,
|
|
146
|
+
onChange: (selectedRowKeys, selectedRows) => {
|
|
147
|
+
this.onSelectChange(selectedRowKeys, selectedRows)
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
mounted () {},
|
|
153
|
+
methods: {
|
|
154
|
+
handleShiftChange (day, index, record) {
|
|
155
|
+
// 找到当前记录在data中的索引
|
|
156
|
+
const dataIndex = this.data.findIndex(item => item.id === record.id)
|
|
157
|
+
if (dataIndex === -1) return
|
|
158
|
+
// 获取当前状态
|
|
159
|
+
const currentValue = record[day][index]
|
|
160
|
+
const newValue = currentValue === 1 || currentValue === '1' ? 0 : 1
|
|
161
|
+
// 更新按钮显示
|
|
162
|
+
this.$set(record[day], index, newValue)
|
|
163
|
+
// 同步更新data中的数据
|
|
164
|
+
this.$set(this.data[dataIndex][day], index, newValue)
|
|
165
|
+
},
|
|
166
|
+
onSelectChange (selectedRowKeys, selectedRows) {
|
|
167
|
+
this.selectedRowKeys = selectedRowKeys
|
|
168
|
+
this.selectedRows = selectedRows
|
|
169
|
+
},
|
|
170
|
+
// 获取选中的行数据
|
|
171
|
+
getSelectedRowData () {
|
|
172
|
+
return this.selectedRows
|
|
173
|
+
},
|
|
174
|
+
// 获取全部数据
|
|
175
|
+
getAllTable () {
|
|
176
|
+
return this.data
|
|
177
|
+
},
|
|
178
|
+
// 初始化数据
|
|
179
|
+
async init (queryParamsName) {
|
|
180
|
+
getConfigByName(queryParamsName, this.serviceName, result => {
|
|
181
|
+
this.configData = result
|
|
182
|
+
runLogic(result.dataSource, {}, this.serviceName).then(res => {
|
|
183
|
+
this.columns = []
|
|
184
|
+
this.columns = JSON.parse(JSON.stringify(this.configData.columns))
|
|
185
|
+
for (let i = 0; i < this.shiftTable.length; i++) {
|
|
186
|
+
this.columns.push(this.shiftTable[i])
|
|
187
|
+
}
|
|
188
|
+
if (res && Array.isArray(res)) {
|
|
189
|
+
const weekDays = ['monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday', 'sunday']
|
|
190
|
+
const shifts = ['am', 'pm', 'evening']
|
|
191
|
+
let key = 0
|
|
192
|
+
this.data = res.map(item => {
|
|
193
|
+
const scheduleData = {
|
|
194
|
+
key: key++
|
|
195
|
+
}
|
|
196
|
+
this.configData.columnsName.forEach(columnName => { scheduleData[columnName] = item[columnName] })
|
|
197
|
+
weekDays.forEach(day => {
|
|
198
|
+
scheduleData[day.charAt(0).toUpperCase() + day.slice(1)] = shifts.map(shift => item[`f_${day}_${shift}`] === '1' ? 1 : 0)
|
|
199
|
+
})
|
|
200
|
+
return scheduleData
|
|
201
|
+
})
|
|
202
|
+
// 保存原始数据
|
|
203
|
+
this.originalData = JSON.parse(JSON.stringify(this.data))
|
|
204
|
+
}
|
|
205
|
+
})
|
|
206
|
+
})
|
|
207
|
+
},
|
|
208
|
+
// 查询数据函数
|
|
209
|
+
filterTableData (filters) {
|
|
210
|
+
if (!filters || Object.keys(filters).length === 0) {
|
|
211
|
+
// 如果没有过滤条件,恢复原始数据
|
|
212
|
+
this.data = JSON.parse(JSON.stringify(this.originalData))
|
|
213
|
+
return
|
|
214
|
+
}
|
|
215
|
+
// 从原始数据开始过滤
|
|
216
|
+
this.data = this.originalData.filter(item => {
|
|
217
|
+
// 检查每一项是否满足所有过滤条件
|
|
218
|
+
return Object.entries(filters).every(([key, value]) => {
|
|
219
|
+
// 如果过滤值是字符串,进行模糊匹配
|
|
220
|
+
if (typeof value === 'string') {
|
|
221
|
+
return item[key] && item[key].toString().toLowerCase().includes(value.toLowerCase())
|
|
222
|
+
}
|
|
223
|
+
// 如果过滤值是数字,进行精确匹配
|
|
224
|
+
return item[key] === value
|
|
225
|
+
})
|
|
226
|
+
})
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
watch: {
|
|
230
|
+
queryParamsName: {
|
|
231
|
+
handler (newValue) {
|
|
232
|
+
this.init(newValue)
|
|
233
|
+
},
|
|
234
|
+
deep: true,
|
|
235
|
+
immediate: true
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
</script>
|
|
240
|
+
|
|
241
|
+
<style scoped type="less">
|
|
242
|
+
.time-title {
|
|
243
|
+
display: flex !important;
|
|
244
|
+
flex-direction: column !important;
|
|
245
|
+
align-items: center !important;
|
|
246
|
+
}
|
|
247
|
+
::v-deep .ant-table-thead > tr > th,
|
|
248
|
+
::v-deep .ant-table-tbody > tr > td {
|
|
249
|
+
padding: 8px 16px !important;
|
|
250
|
+
overflow-wrap: break-word;
|
|
251
|
+
}
|
|
252
|
+
</style>
|
|
@@ -1,23 +1,29 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<XShiftSchedule
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
1
|
+
<template>
|
|
2
|
+
<XShiftSchedule
|
|
3
|
+
:query-params-name="queryParamsName"
|
|
4
|
+
:service-name="serviceName"
|
|
5
|
+
>
|
|
6
|
+
</XShiftSchedule>
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
<script>
|
|
10
|
+
|
|
11
|
+
import XShiftSchedule from './XShiftSchedule.vue'
|
|
12
|
+
|
|
13
|
+
export default {
|
|
14
|
+
components: {
|
|
15
|
+
XShiftSchedule
|
|
16
|
+
},
|
|
17
|
+
data () {
|
|
18
|
+
return {
|
|
19
|
+
queryParamsName: 'schedulingRuleConfigurationConfig',
|
|
20
|
+
serviceName: 'af-his'
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
</script>
|
|
26
|
+
|
|
27
|
+
<style scoped lang="less">
|
|
28
|
+
|
|
29
|
+
</style>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
import ThreeTestOrders from './threeTestOrders.vue'
|
|
3
|
+
export default {
|
|
4
|
+
components: {
|
|
5
|
+
ThreeTestOrders
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<template>
|
|
11
|
+
<three-test-orders>
|
|
12
|
+
</three-test-orders>
|
|
13
|
+
</template>
|
|
14
|
+
|
|
15
|
+
<style scoped lang="less">
|
|
16
|
+
|
|
17
|
+
</style>
|