yyw提交

This commit is contained in:
DESKTOP-8FGKA8Q\chunfen 2024-10-22 10:21:38 +08:00
parent c62829b1ad
commit 02cd13c6f7
4 changed files with 8 additions and 7 deletions

View File

@ -1156,7 +1156,7 @@
this.getList() this.getList()
this.getStockInfo() this.getStockInfo()
this.getgoodsType() this.getgoodsType()
this.getbrandType() // this.getbrandType()
this.editPriceId = '' this.editPriceId = ''
this.editReserveId = '' this.editReserveId = ''
this.editLossId = '' this.editLossId = ''

View File

@ -173,13 +173,13 @@
<el-input v-model="curInfo.external_sku_id" disabled></el-input> <el-input v-model="curInfo.external_sku_id" disabled></el-input>
</el-form-item> --> </el-form-item> -->
<el-form-item label="数量"> <el-form-item label="数量">
<el-input v-model="curInfo.num" disabled></el-input> <el-input v-model="curInfo.num" :disabled="curInfo.status == 1"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="成本"> <el-form-item label="成本">
<el-input v-model="curInfo.cost" disabled></el-input> <el-input v-model="curInfo.cost" :disabled="curInfo.status == 1"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="商品总价"> <el-form-item label="商品总价">
<el-input v-model="curInfo.total_price" disabled> <el-input v-model="curInfo.total_price" :disabled="curInfo.status == 1">
<template slot="append"></template> <template slot="append"></template>
</el-input> </el-input>
</el-form-item> </el-form-item>
@ -300,7 +300,7 @@ export default {
// //
handleAdd() { handleAdd() {
this.curInfo = { this.curInfo = {
buyer_user_id: localStorage.getItem("userId"), buyer_user_id: localStorage.getItem("userId") * 1,
supplier_id: '' supplier_id: ''
} }
this.purchaseOrders = [{ this.purchaseOrders = [{

View File

@ -9,7 +9,7 @@
<el-table-column prop="id" label="ID"></el-table-column> <el-table-column prop="id" label="ID"></el-table-column>
<el-table-column prop="name" label="姓名"></el-table-column> <el-table-column prop="name" label="姓名"></el-table-column>
<el-table-column label="角色"> <el-table-column label="角色">
<template slot-scope="scope">{{ scope.row.roles[0].name }}</template> <template slot-scope="scope">{{ scope.row.roles && scope.row.roles[0].name }}</template>
</el-table-column> </el-table-column>
<el-table-column label="操作"> <el-table-column label="操作">
<template slot-scope="scope"> <template slot-scope="scope">

View File

@ -9,7 +9,8 @@ module.exports = {
"/api": { "/api": {
// target: "http://erp.local", // target: "http://erp.local",
// target: "http://erp.chutang66.com", // target: "http://erp.chutang66.com",
target: "http://192.168.0.52:81", target: "http://world.dev.chutang66.com/",
// target: "http://192.168.0.52:81",
changeOrigin: true, // 开启代理 changeOrigin: true, // 开启代理
pathRewrite: { pathRewrite: {
// 重命名 // 重命名