fix: 修改

20240912_adapter_z
chenhc 7 months ago
parent d264ae015f
commit 98dc1e8104

@ -151,6 +151,17 @@
width="65%" width="65%"
append-to-body append-to-body
> >
<el-row :gutter="24">
<el-col :span="24" style="display: flex; justify-content: flex-end;">
<el-button @click="toggleContent" type="primary" style="margin-right: 20px;">
<span v-if="!isContentVisible"></span>
<span v-if="isContentVisible"></span>
<i :class="{'el-icon-caret-right': !isContentVisible, 'el-icon-caret-bottom': isContentVisible}"> </i>
<!-- 这里原本想用大括号图标但Font Awesome默认没有所以用了上下箭头代替 -->
</el-button>
</el-col>
</el-row>
<el-row> <el-row>
<!-- <el-button v-for="(item, index) in busTypeList" :key="index" type="primary" plain @click="selectBusType(item.code)">{{ item.name }}</el-button>--> <!-- <el-button v-for="(item, index) in busTypeList" :key="index" type="primary" plain @click="selectBusType(item.code)">{{ item.name }}</el-button>-->
@ -222,6 +233,7 @@ export default {
name: 'CollectOrderTabs', name: 'CollectOrderTabs',
data() { data() {
return { return {
isContentVisible: false, //
showContextMenu: false, // showContextMenu: false, //
contextMenuPosition: { x: 0, y: 0 }, // contextMenuPosition: { x: 0, y: 0 }, //
selectBusTypeDisabled: false, selectBusTypeDisabled: false,
@ -229,6 +241,7 @@ export default {
selectWorkplaceStatusDisabled: false, selectWorkplaceStatusDisabled: false,
busQuery: { busQuery: {
busKey: '', busKey: '',
isPopular: 1,
workplaceCode: null, workplaceCode: null,
page: 1, page: 1,
limit: 100 limit: 100
@ -348,6 +361,18 @@ export default {
} }
}, },
methods: { methods: {
toggleContent() {
// isContentVisible
this.isContentVisible = !this.isContentVisible;
// /
// todo 2024/09/09
if (this.isContentVisible){
this.busQuery.isPopular = 0
}else {
this.busQuery.isPopular = 1
}
this.getWorkBindBusTypes(this.formData.workplaceId)
},
toggleWorkplaceStatus() { toggleWorkplaceStatus() {
if (this.formData.workplaceStatus == 0){ if (this.formData.workplaceStatus == 0){
this.formData.workplaceStatus = 1 this.formData.workplaceStatus = 1

Loading…
Cancel
Save