测试数据
parent
911e35c2b9
commit
083a166bcc
|
@ -6,3 +6,10 @@ export function firmManageList() {
|
||||||
method: 'get'
|
method: 'get'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function xshen() {
|
||||||
|
return request({
|
||||||
|
url: '/firm/firm/xshen',
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
|
@ -56,6 +56,7 @@
|
||||||
</el-table>
|
</el-table>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div>
|
||||||
|
<el-button type="success" @click="xshen">测试</el-button>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { firmManageList } from '../../../api/firm/companies'
|
import { firmManageList } from '../../../api/firm/companies'
|
||||||
|
@ -76,6 +77,11 @@ export default {
|
||||||
console.log(response)
|
console.log(response)
|
||||||
this.tableData = response.data
|
this.tableData = response.data
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
shen(){
|
||||||
|
xshen().then(response => {
|
||||||
|
console.log(response);
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue