1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <template>
- <a-card :bordered="false" v-show="visible" class="card">
- <a-row :gutter="48" style="position:fixed;bottom:150px;z-index:999;display:flex; justify-content: center;width: 90%;">
- <a-col :md="48" :sm="48">
- <span>
- <a-button type="primary" @click="save()">保存</a-button>
- <a-button style="margin-left: 8px" type="default" @click="handleCancel()">返回</a-button>
- </span>
- </a-col>
- </a-row>
- <div>
- </div>
- <!-- <sb-position-no-modal ref="sbPositionNoModal" @selected="handleSbNoSelectd"/> -->
- </a-card>
- </template>
- <script>
- import { getSbPositionTree } from '@/api/sb/position'
- import SbPositionNoModal from '@/views/sb/info/modules/SbPositionNoModal'
- import { importMeasure } from '@/api/sb/info'
- export default {
- name: 'BaseFillGatherTask',
- components: {
- SbPositionNoModal
- },
- data () {
- return {
- visible: false,
- modal: []
- }
- },
- props: {
- },
- created () {
- // 下拉框map
- },
- methods: {
- base (record) {
- this.visible = true
- this.model = record
- },
- save () {
- },
- handleCancel () {
- this.visible = false
- this.$emit('ok')
- }
- }
- }
- </script>
- <style lang="less" scoped>
- </style>
|