1.完成能力集市:基础设施-会客厅,字数太多时,展示不美观的问题;
2.完成融合服务:打包模式,点击发布时间,只能按照正序排,不能按照倒序排列的问题; 3完成.融合服务:打包模式,点击收藏量,只能按照正序排,不能按照倒序排列的问题
This commit is contained in:
parent
ed6a7e85b2
commit
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