部分bug

This commit is contained in:
夜良king
2022-02-17 10:43:46 +08:00
parent 81297db7a8
commit f9d09365ea
8 changed files with 36 additions and 20 deletions

View File

@@ -4,9 +4,9 @@
<span @click="clickBreadcrumb(item,index)" :class="{'active':item.selected}" v-for="(item,index) in dateList"
:key="index"> {{item.title}}</span>
<div class="date-picker">
<Select @on-change="changeSelect(selectedWay)" v-model="month" placeholder="年月查询"
<Select @on-change="changeSelect(selectedWay)" v-model="month" placeholder="年月查询" clearable
style="width:200px;margin-left:10px;">
<Option v-for="(item,index) in dates" :value="item.year+'-'+item.month" :key="index">
<Option v-for="(item,index) in dates" :value="item.year+'-'+item.month" :key="index" clearable>
{{ item.year+'年'+item.month+'月' }}</Option>
</Select>
</div>

View File

@@ -598,10 +598,10 @@ export default {
},
{
title: "小计",
key: "flowPrice",
key: "subTotal",
minWidth: 100,
render: (h, params) => {
return h("div", this.$options.filters.unitPrice(params.row.flowPrice, "¥"));
return h("div", this.$options.filters.unitPrice(params.row.subTotal, "¥"));
},
},
],
@@ -674,7 +674,8 @@ export default {
},
modifyPrice() {
//默认要修改的金额为订单总金额
this.modifyPriceForm.price = this.orderInfo.order.flowPrice;
this.modifyPriceForm.price = this.orderInfo.order.subTotal;
console.log(this.modifyPriceForm.price)
this.modal = true;
},
//修改订单金额提交

View File

@@ -2,7 +2,9 @@
<div>
<Card>
<div class="operation mb_10">
<Button @click="addParent" type="primary" icon="md-add">添加一级分类</Button>
<Button @click="addParent" type="primary" icon="md-add"
>添加一级分类</Button
>
</div>
<tree-table
ref="treeTable"
@@ -116,17 +118,12 @@ export default {
parentId: "",
sort: 1,
level: 0,
articleCategoryName:""
articleCategoryName: "",
},
// 表单验证规则
formValidate: {
articleCategoryName:[
regular.REQUIRED
],
sort:[
regular.REQUIRED,
regular.INTEGER
]
articleCategoryName: [regular.REQUIRED],
sort: [regular.REQUIRED,regular.INTEGER],
},
columns: [
{
@@ -149,7 +146,7 @@ export default {
template: "action",
},
],
tableData: [] // 表格数据
tableData: [], // 表格数据
};
},
methods: {
@@ -205,7 +202,13 @@ export default {
if (res.success) {
this.$Message.success("添加成功");
this.formAdd = {};
this.formAdd = {
// 添加或编辑表单对象初始化数据
parentId: "",
sort: 1,
level: 0,
articleCategoryName: "",
};
} else {
// this.$Message.error(res.message);
}
@@ -248,7 +251,7 @@ export default {
});
},
// 获取分类数据
getAllList() {
getAllList(newval) {
this.loading = true;
getArticleCategory().then((res) => {
this.loading = false;

View File

@@ -145,3 +145,10 @@ export default {
margin: 20px;
}
</style>
<style>
.ivu-card-extra{
right: 3px;
top:15px;
z-index: 99;
}
</style>

View File

@@ -571,6 +571,6 @@ export default {
color: #999;
}
.menu-input {
width: 500px;
width: 162px;
}
</style>