Commit b2c18357 authored by 黄媛媛's avatar 黄媛媛

修改图片路径 查询条件

parent 32da27ce
......@@ -42,7 +42,7 @@
</div>
</div>
<el-table :data="tableData" v-loading="loading" border style="width: 100%;margin:20px 0">
<el-table-column prop="Id" label="ID">
<el-table-column prop="Id" label="ID" width="100">
</el-table-column>
<el-table-column prop="address" width="280" label="头像">
<template slot-scope="scope">
......@@ -86,7 +86,7 @@
</el-table-column>
<el-table-column prop="name" label="积分">
<template slot-scope="scope">
<span @click="CommonJump('IntegralRecord')" class="blue point">{{scope.row.Integral}}</span>
<span @click="CommonJump('IntegralRecord',{UserId:scope.row.Id})" class="blue point">{{scope.row.Integral}}</span>
</template>
</el-table-column>
<el-table-column prop="CreateDate" width="150" label="加入时间">
......
......@@ -70,7 +70,7 @@
<span
class="el-tag el-tag--success el-tag--small el-tag--light is-hit">{{dataInfo.OrderInfo.PaymentWayName}}</span>
</div>
<div flex="dir:left cross:center" class="item-box">
<div v-if="dataInfo.OrderInfo.DeliveryMethodName && dataInfo.OrderInfo.DeliveryMethodName!=''" flex="dir:left cross:center" class="item-box">
<span class="label">配送方式:</span>
<span
class="el-tag el-tag--primary el-tag--small el-tag--light is-hit">{{dataInfo.OrderInfo.DeliveryMethodName}}</span>
......@@ -145,7 +145,7 @@
<div v-for="(good,index2) in item.GoodsList" :key="index2" flex="dir:left"
style="margin-top: 10px;">
<span class="label">配送商品:</span>
<img :src="domainManager().ImageUrl+good.CoverImagePath" class="goods-pic">
<img :src="getIconLink(good.CoverImagePath)" class="goods-pic">
</div>
</div>
</el-col>
......@@ -198,7 +198,7 @@
<el-table-column prop="Id" label="商品标题">
<template slot-scope="scope">
<div flex="dir:left cross:center">
<img :src="domainManager().ImageUrl+scope.row.CoverImagePath" alt=""
<img :src="getIconLink(scope.row.CoverImagePath)" alt=""
style="height: 60px; width: 60px; margin-right: 5px;">
<div class="app-ellipsis">
<div class="vue-line-clamp" style="word-break: break-all; -webkit-line-clamp: 1;">
......@@ -805,6 +805,11 @@
width: 30px;
background-image: url("../../assets/img/userman/status_2.png");
}
.app-order-detail .step01 {
height: 30px;
width: 30px;
background-image: url("../../assets/img/userman/status_2.png");
}
.app-order-detail .step05Active {
height: 30px;
......
......@@ -98,7 +98,7 @@
<el-table-column prop="Id" label="商品标题">
<template slot-scope="scope">
<div flex="dir:left cross:center">
<img :src="domainManager().ImageUrl+scope.row.CoverImagePath" alt=""
<img :src="getIconLink(scope.row.CoverImagePath)" alt=""
style="height: 60px; width: 60px; margin-right: 5px;">
<div class="app-ellipsis">
<div class="vue-line-clamp" style="word-break: break-all; -webkit-line-clamp: 1;">
......
......@@ -138,6 +138,9 @@
created(){
this.getDateList()
this.getDown();
if(this.$route.query.UserId){
this.msg.UserId=this.$route.query.UserId
}
},
methods:{
......
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