Commit 32a4c8b7 authored by 沈良进's avatar 沈良进

save

parent 0b37a230
......@@ -711,6 +711,7 @@ export default {
uploadFile() {
this.showUpload = true;
this.uploadTitle = "";
this.DownloadMaterialsFileList = []
},
downloadFile(hotel) {
this.hotel = hotel;
......@@ -740,7 +741,7 @@ export default {
this.$message.error("请填写标题");
return;
}
if (!this.DownloadMaterialsFileList) {
if (!this.DownloadMaterialsFileList.length) {
this.$message.error("请上传文件");
return;
}
......
......@@ -135,7 +135,7 @@
{{childItem.SupplierName}}
</td>
<td style="text-align:center">
{{childItem.IsMortgage ? '是':'否'}}
<span :style="childItem.IsMortgage ? 'color:red' :'color:green'">{{childItem.IsMortgage ? '是':'否'}}</span>
</td>
<td style="text-align:center">
<a style="text-decoration:underline;cursor:pointer;color:blue;"
......@@ -280,7 +280,7 @@
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="是否压房">
<el-form-item class="fontbold" label="是否压房">
<el-checkbox v-model="msg2.IsMortgage" :true-label="1" :false-label="0"></el-checkbox>
</el-form-item>
</el-col>
......@@ -570,7 +570,7 @@
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="是否压房">
<el-form-item class="fontbold" label="是否压房">
<el-checkbox v-model="msg.IsMortgage" :true-label="1" :false-label="0"></el-checkbox>
</el-form-item>
</el-col>
......@@ -1422,6 +1422,11 @@
</script>
<style>
.fontbold > .el-form-item__label {
font-size: 18px;
font-weight: bold;
color: red;
}
.hotelProductManage2 {
padding: 20px 0;
}
......
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