部分bug

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

View File

@ -16,6 +16,7 @@
/>
<i class="cart-badge">{{ cartNum < 100 ? cartNum : "99" }}</i>
</div>
<hr class="hr"/>
</div>
</template>
<script>
@ -59,6 +60,10 @@ export default {
};
</script>
<style lang="scss" scoped>
.hr{
height:1px;
background:$theme_color;
}
.content {
width: 1200px;
height: 40px;

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>

View File

@ -110,7 +110,7 @@
mobile: [
{
required: true,
message: "请输入地址纬度",
message: "请输入联系电话号",
trigger: "blur",
},
{ validator: validateMobile,

View File

@ -224,7 +224,7 @@ export default {
},
stockWarningFormValidate: {
stockWarning: [
{ required: true, message: "请输入库存预警数", trigger: "blur" },
{ required: true, type:'number', message: "请输入库存预警数", trigger: "blur" },
],
},
udeskFormValidate: {