Commit bf698c1a authored by youjie's avatar youjie

no message

parent f4625e15
...@@ -453,8 +453,9 @@ input[type="number"] { ...@@ -453,8 +453,9 @@ input[type="number"] {
</el-col> </el-col>
<el-col :span="4"> <el-col :span="4">
<el-form-item :label="$t('hotel.hotel_Supplier')" v-if="IsSelfBook" prop="Supplier"> <el-form-item :label="$t('hotel.hotel_Supplier')" v-if="IsSelfBook" prop="Supplier">
<el-select v-model="addMsg.Supplier" filterable :placeholder="$t('hotel.hotel_inputholder')"> <!-- :placeholder="$t('hotel.hotel_inputholder')" -->
<el-option :label="$t('pub.unlimitedSel')" :value='SelectDefaultValue'></el-option> <el-select v-model="addMsg.Supplier" filterable>
<!-- <el-option :label="$t('pub.unlimitedSel')" :value='SelectDefaultValue'></el-option> -->
<el-option v-for="item in SupplierList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option> <el-option v-for="item in SupplierList" :key="item.ID" :label="item.Name" :value="item.ID"></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
...@@ -514,7 +515,7 @@ export default { ...@@ -514,7 +515,7 @@ export default {
ID: 0, ID: 0,
CouponsId: 0, CouponsId: 0,
TicketID: 0, TicketID: 0,
Supplier: 0, Supplier: null,
Inventory: 0, Inventory: 0,
B2BPrice: 0.0, B2BPrice: 0.0,
B2CPrice: 0.0, B2CPrice: 0.0,
...@@ -600,7 +601,7 @@ export default { ...@@ -600,7 +601,7 @@ export default {
Supplier: [ Supplier: [
{ {
required: true, required: true,
message: "请选择供应商", message: "请选择供应商",
trigger: "change" trigger: "change"
} }
], ],
...@@ -678,7 +679,7 @@ export default { ...@@ -678,7 +679,7 @@ export default {
//重置信息 //重置信息
clearInfo() { clearInfo() {
this.addMsg.ID = 0; this.addMsg.ID = 0;
this.addMsg.Supplier = 0; this.addMsg.Supplier = null;
this.addMsg.Inventory = ""; this.addMsg.Inventory = "";
this.addMsg.B2BPrice = ""; this.addMsg.B2BPrice = "";
this.addMsg.B2CPrice = ""; this.addMsg.B2CPrice = "";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment