Merge branch 'master' of gitee.com:beijing_hongye_huicheng/lilishop-ui
commit
65aa9d0a9f
|
@ -147,12 +147,14 @@ export default {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
.store-search{
|
.store-search{
|
||||||
width:63px;
|
width:55.6px;
|
||||||
padding: 0 9px;
|
padding: 0 9px;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
|
border-radius: 3px;
|
||||||
&:nth-child(2){
|
&:nth-child(2){
|
||||||
width:62px;
|
width:55px;
|
||||||
margin-left: -5px;
|
margin-left: -2px;
|
||||||
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.btn-div{
|
.btn-div{
|
||||||
|
|
|
@ -161,7 +161,7 @@ export default {
|
||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
>div:nth-child(1) {
|
>div:nth-child(1) {
|
||||||
width: 130px;
|
|
||||||
margin-top: 30px;
|
margin-top: 30px;
|
||||||
span:nth-child(1){
|
span:nth-child(1){
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
@ -169,7 +169,7 @@ export default {
|
||||||
padding: 0 5px;
|
padding: 0 5px;
|
||||||
background-color: #a25684;
|
background-color: #a25684;
|
||||||
display: block;
|
display: block;
|
||||||
width: 120px;
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
margin: 0 10px 10px 0;
|
margin: 0 10px 10px 0;
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<template slot-scope="{ row }" slot="goodsPrice">
|
<template slot-scope="{ row }" slot="goodsPrice">
|
||||||
<div>{{row.goodsPrice | unitPrice('¥')}}</div>
|
<div>{{row.applyRefundPrice | unitPrice('¥')}}</div>
|
||||||
</template>
|
</template>
|
||||||
</Table>
|
</Table>
|
||||||
<div>
|
<div>
|
||||||
|
|
|
@ -97,6 +97,14 @@ const ShopEntry = (resolve) =>
|
||||||
|
|
||||||
Vue.use(Router);
|
Vue.use(Router);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 解决重复点击菜单会控制台报错bug
|
||||||
|
*/
|
||||||
|
const routerPush = Router.prototype.push
|
||||||
|
Router.prototype.push = function push(location) {
|
||||||
|
return routerPush.call(this, location).catch(error=> error)
|
||||||
|
}
|
||||||
|
|
||||||
export default new Router({
|
export default new Router({
|
||||||
mode: "history",
|
mode: "history",
|
||||||
routes: [
|
routes: [
|
||||||
|
|
|
@ -13,6 +13,14 @@ const RouterConfig = {
|
||||||
routes: routers
|
routes: routers
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 解决重复点击菜单会控制台报错bug
|
||||||
|
*/
|
||||||
|
const routerPush = VueRouter.prototype.push
|
||||||
|
VueRouter.prototype.push = function push(location) {
|
||||||
|
return routerPush.call(this, location).catch(error=> error)
|
||||||
|
}
|
||||||
|
|
||||||
export const router = new VueRouter(RouterConfig);
|
export const router = new VueRouter(RouterConfig);
|
||||||
|
|
||||||
router.beforeEach((to, from, next) => {
|
router.beforeEach((to, from, next) => {
|
||||||
|
@ -44,3 +52,5 @@ router.afterEach((to) => {
|
||||||
ViewUI.LoadingBar.finish();
|
ViewUI.LoadingBar.finish();
|
||||||
window.scrollTo(0, 0);
|
window.scrollTo(0, 0);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -62,7 +62,7 @@ export default {
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
value: {
|
value: {
|
||||||
type: Object
|
type: null
|
||||||
},
|
},
|
||||||
draggable: {
|
draggable: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
|
|
|
@ -587,7 +587,7 @@ export default {
|
||||||
if (!params.row.goodsPrice) {
|
if (!params.row.goodsPrice) {
|
||||||
return h("div", this.$options.filters.unitPrice(0, "¥"));
|
return h("div", this.$options.filters.unitPrice(0, "¥"));
|
||||||
}
|
}
|
||||||
return h("div", this.$options.filters.unitPrice(params.row.goodsPrice, "¥"));
|
return h("div", this.$options.filters.unitPrice(params.row.unitPrice, "¥"));
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -601,7 +601,7 @@ export default {
|
||||||
key: "subTotal",
|
key: "subTotal",
|
||||||
minWidth: 100,
|
minWidth: 100,
|
||||||
render: (h, params) => {
|
render: (h, params) => {
|
||||||
return h("div", this.$options.filters.unitPrice(params.row.subTotal, "¥"));
|
return h("div", this.$options.filters.unitPrice(params.row.flowPrice, "¥"));
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
@ -674,8 +674,7 @@ export default {
|
||||||
},
|
},
|
||||||
modifyPrice() {
|
modifyPrice() {
|
||||||
//默认要修改的金额为订单总金额
|
//默认要修改的金额为订单总金额
|
||||||
this.modifyPriceForm.price = this.orderInfo.order.subTotal;
|
this.modifyPriceForm.price = this.orderInfo.order.flowPrice;
|
||||||
console.log(this.modifyPriceForm.price)
|
|
||||||
this.modal = true;
|
this.modal = true;
|
||||||
},
|
},
|
||||||
//修改订单金额提交
|
//修改订单金额提交
|
||||||
|
|
|
@ -1,7 +1,11 @@
|
||||||
<template>
|
<template>
|
||||||
<Card>
|
<Card>
|
||||||
<Row class="operation">
|
<Row class="operation">
|
||||||
<Button @click="handleAsyncRegion" :loading="asyncLoading" type="primary" icon="md-add"
|
<Button
|
||||||
|
@click="handleAsyncRegion"
|
||||||
|
:loading="asyncLoading"
|
||||||
|
type="primary"
|
||||||
|
icon="md-add"
|
||||||
>同步数据</Button
|
>同步数据</Button
|
||||||
>
|
>
|
||||||
</Row>
|
</Row>
|
||||||
|
@ -10,7 +14,6 @@
|
||||||
class="tree"
|
class="tree"
|
||||||
:data="data"
|
:data="data"
|
||||||
:load-data="loadData"
|
:load-data="loadData"
|
||||||
expand-node
|
|
||||||
@on-select-change="changeTree"
|
@on-select-change="changeTree"
|
||||||
></Tree>
|
></Tree>
|
||||||
<div class="form">
|
<div class="form">
|
||||||
|
@ -27,7 +30,11 @@
|
||||||
<Input v-model="formValidate.cityCode" />
|
<Input v-model="formValidate.cityCode" />
|
||||||
</FormItem>
|
</FormItem>
|
||||||
<FormItem label="行政区划级别" prop="cityCode">
|
<FormItem label="行政区划级别" prop="cityCode">
|
||||||
<RadioGroup type="button" button-style="solid" v-model="formValidate.level">
|
<RadioGroup
|
||||||
|
type="button"
|
||||||
|
button-style="solid"
|
||||||
|
v-model="formValidate.level"
|
||||||
|
>
|
||||||
<Radio disabled label="country">国家</Radio>
|
<Radio disabled label="country">国家</Radio>
|
||||||
<Radio disabled label="province">省份</Radio>
|
<Radio disabled label="province">省份</Radio>
|
||||||
<Radio disabled label="city">市</Radio>
|
<Radio disabled label="city">市</Radio>
|
||||||
|
@ -95,16 +102,18 @@ import {
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
asyncLoading:false, // 加载状态
|
asyncLoading: false, // 加载状态
|
||||||
num: 10, // 更新倒计时
|
num: 10, // 更新倒计时
|
||||||
modalFlag: false, // 新增编辑标识
|
modalFlag: false, // 新增编辑标识
|
||||||
timerNum: 10, // 定时器
|
timerNum: 10, // 定时器
|
||||||
data: [], // 加载数据
|
data: [], // 加载数据
|
||||||
id: 0, // id
|
id: 0, // id
|
||||||
addValidate: { // 添加级别
|
addValidate: {
|
||||||
|
// 添加级别
|
||||||
parentName: "无父级",
|
parentName: "无父级",
|
||||||
},
|
},
|
||||||
formValidate: { // 表单数据
|
formValidate: {
|
||||||
|
// 表单数据
|
||||||
adCode: "",
|
adCode: "",
|
||||||
cityCode: "",
|
cityCode: "",
|
||||||
center: "",
|
center: "",
|
||||||
|
@ -112,7 +121,8 @@ export default {
|
||||||
orderNum: "",
|
orderNum: "",
|
||||||
level: "",
|
level: "",
|
||||||
},
|
},
|
||||||
ruleValidate: { // 验证规则
|
ruleValidate: {
|
||||||
|
// 验证规则
|
||||||
adCode: [
|
adCode: [
|
||||||
{
|
{
|
||||||
required: true,
|
required: true,
|
||||||
|
@ -227,12 +237,13 @@ export default {
|
||||||
},
|
},
|
||||||
// 树结构点击事件
|
// 树结构点击事件
|
||||||
changeTree(array, val) {
|
changeTree(array, val) {
|
||||||
this.formValidate = val;
|
val.cityCode == "null" ? (val.cityCode = "") : val.cityCode;
|
||||||
|
this.$set(this, "formValidate", val);
|
||||||
},
|
},
|
||||||
// 异步加载数据
|
// 异步加载数据
|
||||||
loadData(item, callback) {
|
loadData(item, callback) {
|
||||||
item.loading = true;
|
item.loading = true;
|
||||||
console.log(item);
|
// console.log(item);
|
||||||
getChildRegion(item.id).then((res) => {
|
getChildRegion(item.id).then((res) => {
|
||||||
if (res.result.length <= 0) {
|
if (res.result.length <= 0) {
|
||||||
item.loading = false;
|
item.loading = false;
|
||||||
|
@ -302,7 +313,7 @@ export default {
|
||||||
let timer;
|
let timer;
|
||||||
let number;
|
let number;
|
||||||
|
|
||||||
this.asyncLoading = true
|
this.asyncLoading = true;
|
||||||
|
|
||||||
this.$Message.info({
|
this.$Message.info({
|
||||||
duration: this.timerNum,
|
duration: this.timerNum,
|
||||||
|
@ -315,9 +326,9 @@ export default {
|
||||||
on: {
|
on: {
|
||||||
click: () => {
|
click: () => {
|
||||||
this.$Message.destroy();
|
this.$Message.destroy();
|
||||||
this.asyncLoading = false
|
this.asyncLoading = false;
|
||||||
clearInterval(number);
|
clearInterval(number);
|
||||||
clearTimeout(timer)
|
clearTimeout(timer);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -332,9 +343,9 @@ export default {
|
||||||
}, 1000);
|
}, 1000);
|
||||||
|
|
||||||
timer = setTimeout(() => {
|
timer = setTimeout(() => {
|
||||||
clearInterval(number)
|
clearInterval(number);
|
||||||
asyncRegion().then((res) => {
|
asyncRegion().then((res) => {
|
||||||
this.asyncLoading = false
|
this.asyncLoading = false;
|
||||||
this.$Message.loading("地区数据正在更新中!");
|
this.$Message.loading("地区数据正在更新中!");
|
||||||
});
|
});
|
||||||
}, 10000);
|
}, 10000);
|
||||||
|
|
|
@ -43,7 +43,7 @@
|
||||||
|
|
||||||
<Card class="card">
|
<Card class="card">
|
||||||
<div>
|
<div>
|
||||||
<h4>客户增长报表</h4>
|
<h4>会员流量报表</h4>
|
||||||
<Table class="table" stripe :columns="columns" :data="data"></Table>
|
<Table class="table" stripe :columns="columns" :data="data"></Table>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -13,6 +13,14 @@ const RouterConfig = {
|
||||||
routes: routers
|
routes: routers
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 解决重复点击菜单会控制台报错bug
|
||||||
|
*/
|
||||||
|
const routerPush = VueRouter.prototype.push
|
||||||
|
VueRouter.prototype.push = function push(location) {
|
||||||
|
return routerPush.call(this, location).catch(error=> error)
|
||||||
|
}
|
||||||
|
|
||||||
export const router = new VueRouter(RouterConfig);
|
export const router = new VueRouter(RouterConfig);
|
||||||
|
|
||||||
router.beforeEach((to, from, next) => {
|
router.beforeEach((to, from, next) => {
|
||||||
|
|
|
@ -643,7 +643,7 @@ export default {
|
||||||
render: (h, params) => {
|
render: (h, params) => {
|
||||||
return h(
|
return h(
|
||||||
"div",
|
"div",
|
||||||
this.$options.filters.unitPrice(params.row.subTotal, "¥")
|
this.$options.filters.unitPrice(params.row.flowPrice, "¥")
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue