Compare commits
2 Commits
dd38eba69b
...
23a885e051
Author | SHA1 | Date |
---|---|---|
gongjiale | 23a885e051 | |
gongjiale | 6967b3f1da |
|
@ -47,12 +47,10 @@ const integrationOrder = reactive({
|
||||||
|
|
||||||
// 融合服务--排序
|
// 融合服务--排序
|
||||||
const changeOrder = (i, val, type) => {
|
const changeOrder = (i, val, type) => {
|
||||||
|
|
||||||
console.log('i, val, type------------>', i, val, type);
|
|
||||||
integrationOrder.orderField = val
|
integrationOrder.orderField = val
|
||||||
integrationOrder.orderType = type;
|
integrationOrder.orderType = type;
|
||||||
// 0 apply_count ASC
|
// 0 apply_count ASC
|
||||||
let _index = integrationOrderList.value.findIndex(x => x.value = val)
|
let _index = integrationOrderList.value.findIndex(x => x.value == val)
|
||||||
if (_index > -1) {
|
if (_index > -1) {
|
||||||
integrationOrderList.value[_index].orderType = type
|
integrationOrderList.value[_index].orderType = type
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue