12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- //退库
- <template>
- <div class="steel_inbound">
- <div class="sache">
- <el-input
- placeholder="请输入内容"
- v-model="inputText"
- clearable>
- </el-input>
- <el-button type="primary" class="btn" @click="onclick">
- <i class="el-icon-search"></i>查询
- </el-button>
- </div>
- <div class="table">
- <dilTable v-bind.sync="options">
- </dilTable>
- </div>
- </div>
- </template>
- <script>
- export default {
- data(){
- return{
- inputText:"",
- options:{
- // first请求数据的地址
- requestUrl: "/api/v1/wms/getWmsReboundResult?apiId=161",
- },
- }
- },
- methods:{
- onclick(){
- console.log("点击事件");
- }
- }
- }
- </script>
- <style lang="scss" scode>
- .steel_inbound{
- .sache{
- height: 5rem;
- display: flex;
- align-items: center;
- padding-left: 1.875rem;
- }
- }
- </style>
|