提交修改
This commit is contained in:
parent
3f19913e5a
commit
23196b42a1
|
@ -195,7 +195,7 @@
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
.detail-content {
|
/* .detail-content {
|
||||||
margin-top: 90px;
|
margin-top: 90px;
|
||||||
}
|
} */
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -61,6 +61,16 @@
|
||||||
>
|
>
|
||||||
重置
|
重置
|
||||||
</a-button> -->
|
</a-button> -->
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="order">
|
||||||
|
申请时间
|
||||||
|
<span @click="changeOrder(orderType) "
|
||||||
|
class="arrow" :class="
|
||||||
|
orderType == 'ASC'
|
||||||
|
? 'down'
|
||||||
|
: ''
|
||||||
|
"></span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="roomYuyue">
|
<div v-if="roomYuyue">
|
||||||
|
@ -114,6 +124,7 @@
|
||||||
{{ item.description }}
|
{{ item.description }}
|
||||||
</a-tooltip> -->
|
</a-tooltip> -->
|
||||||
</div>
|
</div>
|
||||||
|
<div style="font-size:14px;margin-top:40px">申请量:{{item.applyCount}}次</div>
|
||||||
</div>
|
</div>
|
||||||
<a-button
|
<a-button
|
||||||
style="
|
style="
|
||||||
|
@ -976,6 +987,7 @@
|
||||||
const fileList = ref([])
|
const fileList = ref([])
|
||||||
const useForm = Form.useForm
|
const useForm = Form.useForm
|
||||||
const roomInput = ref('')
|
const roomInput = ref('')
|
||||||
|
let orderType = ref('ASC')
|
||||||
const rulesRef = reactive({
|
const rulesRef = reactive({
|
||||||
bookDate: [
|
bookDate: [
|
||||||
{
|
{
|
||||||
|
@ -1059,6 +1071,7 @@
|
||||||
let roomStr = router.currentRoute.value.query.str
|
let roomStr = router.currentRoute.value.query.str
|
||||||
if (roomStr) {
|
if (roomStr) {
|
||||||
roomInput.value = roomStr
|
roomInput.value = roomStr
|
||||||
|
|
||||||
getCamera()
|
getCamera()
|
||||||
}
|
}
|
||||||
// 获取用户信息
|
// 获取用户信息
|
||||||
|
@ -1198,7 +1211,16 @@
|
||||||
tabList.value[0].content.push('无人机')
|
tabList.value[0].content.push('无人机')
|
||||||
tabList.value[0].content.push('单兵设备')
|
tabList.value[0].content.push('单兵设备')
|
||||||
}
|
}
|
||||||
|
//申请时间排序
|
||||||
|
const changeOrder = (type) => {
|
||||||
|
if(type == 'DESC'){
|
||||||
|
type='ASC'
|
||||||
|
}else{
|
||||||
|
type = 'DESC'
|
||||||
|
}
|
||||||
|
orderType.value = type
|
||||||
|
searchData()
|
||||||
|
}
|
||||||
// 单个预览,当前点击数据
|
// 单个预览,当前点击数据
|
||||||
const rowClickData = ref(null)
|
const rowClickData = ref(null)
|
||||||
// 打开视频预览
|
// 打开视频预览
|
||||||
|
@ -1268,6 +1290,7 @@
|
||||||
page: roomPage.value,
|
page: roomPage.value,
|
||||||
limit: roomLimit.value,
|
limit: roomLimit.value,
|
||||||
roomName: roomInput.value,
|
roomName: roomInput.value,
|
||||||
|
|
||||||
}
|
}
|
||||||
getYuyue(query).then(({ data: res }) => {
|
getYuyue(query).then(({ data: res }) => {
|
||||||
dataRoom.value = res.data.list
|
dataRoom.value = res.data.list
|
||||||
|
@ -1584,6 +1607,8 @@
|
||||||
name: roomInput.value, //会客厅名称
|
name: roomInput.value, //会客厅名称
|
||||||
page: roomPage.value, //页码
|
page: roomPage.value, //页码
|
||||||
limit: roomLimit.value, //每页条数
|
limit: roomLimit.value, //每页条数
|
||||||
|
orderField: "applyCount",
|
||||||
|
orderType: orderType.value
|
||||||
}
|
}
|
||||||
getRoomSearch(query).then(({ data: res }) => {
|
getRoomSearch(query).then(({ data: res }) => {
|
||||||
roomList.value = res.data.list
|
roomList.value = res.data.list
|
||||||
|
@ -2785,8 +2810,22 @@
|
||||||
|
|
||||||
.roomSearch {
|
.roomSearch {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
.order{
|
||||||
|
margin-left: 629px;
|
||||||
|
.arrow {
|
||||||
|
display: inline-block;
|
||||||
|
width: 12px;
|
||||||
|
height: 12px;
|
||||||
|
background: url('~@/assets/newHome/arrow.png');
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.down {
|
||||||
|
background: url('~@/assets/newHome/down.png');
|
||||||
|
margin-top: 6px;
|
||||||
|
}
|
||||||
|
}
|
||||||
.searchInput {
|
.searchInput {
|
||||||
display: flex;
|
display: flex;
|
||||||
margin-right: 0.2rem;
|
margin-right: 0.2rem;
|
||||||
|
|
Loading…
Reference in New Issue