Browse Source

完善测试问题

master
guoxing 1 year ago
parent
commit
fdc5ecfe97
  1. 4
      yxt-as-ui/.env.development
  2. 2
      yxt-as-ui/src/api/storage/stocktaking.js
  3. 2
      yxt-as-ui/src/api/warehouse/warehouseArea.js
  4. 1273
      yxt-as-ui/src/router/index.js
  5. 8
      yxt-as-ui/src/views/storage/adjustment/index.vue
  6. 2
      yxt-as-ui/src/views/storage/receivingGoods/receivingGoodsAdd.vue
  7. 7
      yxt-as-ui/src/views/warehouse/goodsShelves/goodsShelvesAdd.vue

4
yxt-as-ui/.env.development

@ -5,5 +5,5 @@ ENV = 'development'
VUE_APP_BASE_API = '/api'
## 配置测试和本地开发时的 接口地址
##VUE_APP_URL = "http://26077a35f5.wicp.vip"
VUE_APP_URL = "http://anrui.yyundong.com"
VUE_APP_URL = "http://192.168.0.116:8111"
##VUE_APP_URL = "http://anrui.yyundong.com"

2
yxt-as-ui/src/api/storage/stocktaking.js

@ -5,7 +5,7 @@ export default {
// 查询分页列表
listPage: function(params) {
return request({
url: '/wms/apiadmin/inventory/wmsinventorycheckbill/listPage',
url: '/wms/v1/wmsinventorycheckbill/listPage',
method: 'post',
data: params,
headers: { 'Content-Type': 'application/json' }

2
yxt-as-ui/src/api/warehouse/warehouseArea.js

@ -32,7 +32,7 @@ export default {
return request({
url: '/wms/apiadmin/base/wmswarehousearea/selectAll',
method: 'get',
params: data,
params: params,
headers: { 'Content-Type': 'application/json' }
})
},

1273
yxt-as-ui/src/router/index.js

File diff suppressed because it is too large

8
yxt-as-ui/src/views/storage/adjustment/index.vue

@ -0,0 +1,8 @@
<template>
</template>
<script>
</script>
<style>
</style>

2
yxt-as-ui/src/views/storage/receivingGoods/receivingGoodsAdd.vue

@ -58,7 +58,7 @@
<div class="span-sty"><span class="must">*</span> 供应商</div>
<el-form-item prop="supplierName"> <el-select v-model="formobj.supplierName" filterable clearable
placeholder="请选择" class="addinputInfo" @change="supplierNameSelect">
<el-option v-for="item in supplierList" :key="item.sid" :label="item.name" :value="item.sid">
<el-option v-for="item in supplierList" :key="item.sid" :label="item.supplierName" :value="item.sid">
</el-option>
</el-select></el-form-item>
</el-col>

7
yxt-as-ui/src/views/warehouse/goodsShelves/goodsShelvesAdd.vue

@ -177,7 +177,12 @@
getWarehouseArea(sid) {
this.formobj.locationSid = ''
this.formobj.locationName = ''
req3.getAllWarehouseareaBysid(sid).then(resp => {
var params ={
ckSid :sid
}
req3.getAllWarehouseareaBysid(params).then(resp => {
console.log('>>>>>>>>>getAllWarehousearea', resp)
this.warehouseAreaList = resp.data
}).catch(() => {})

Loading…
Cancel
Save