|
|
@@ -22,8 +22,8 @@
|
|
|
<a-col :span="rightWidth" style="position: relative;">
|
|
|
<plan-content :duChaType="duChaType" :currentSelectTreeNodePsn="currentNodeinfo.currentSelectTreeNodePsn" :currentSelectTreeNodeId="currentNodeinfo.currentSelectTreeNodeId" :currentSelectTreeNodeName="currentNodeinfo.currentSelectTreeNodeName"></plan-content>
|
|
|
<div class="open_board">
|
|
|
- <LeftOutlined v-if="isOpen" @click="closeLeft" />
|
|
|
- <RightOutlined v-else @click="openLeft" />
|
|
|
+ <a-icon type="left" v-if="isOpen" @click="closeLeft"/>
|
|
|
+ <a-icon type="right" v-else @click="openLeft"/>
|
|
|
</div>
|
|
|
</a-col>
|
|
|
</a-row>
|
|
|
@@ -32,7 +32,6 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { LeftOutlined, RightOutlined } from '@ant-design/icons-vue';
|
|
|
import { getPersPlanType } from '../../api/duChaPlan';
|
|
|
import planContent from './planManageProvinceNew/planContent.vue';
|
|
|
import treeGroup from './planManageProvinceNew/treeGroup.vue';
|
|
|
@@ -62,7 +61,6 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
components: {
|
|
|
- LeftOutlined, RightOutlined,
|
|
|
'tree-group': treeGroup,
|
|
|
'plan-content': planContent,
|
|
|
},
|