Browse Source

删除多余图片

yuxingxing 2 years ago
parent
commit
042b86e3f2

+ 138 - 77
pages/admin/components/PriceChange/index.vue

@@ -3,109 +3,170 @@
     <view class="priceChange" :class="change === true ? 'on' : ''">
       <view class="priceTitle">
         {{
-          status == 0
-            ? orderInfo.refund_status === 1
-              ? $t(`立即退款`)
-              : $t(`一键改价`)
-            : $t(`订单备注`)
+            status == 0
+              ? orderInfo.refund_status === 1
+                ? $t(`立即退款`)
+                : $t(`一键改价`)
+              : $t(`订单备注`)
         }}
         <span class="iconfont icon-guanbi" @click="close"></span>
       </view>
       <view class="listChange" v-if="status == 0">
-        <view
-          class="item acea-row row-between-wrapper"
-          v-if="orderInfo.refund_status === 0"
-        >
-          <view>{{$t(`商品总价`)}}({{$t(`¥`)}})</view>
+        <view class="item acea-row row-between-wrapper" v-if="orderInfo.refund_status === 0">
+          <view>{{ $t(`商品总价`) }}({{ $t(`¥`) }})</view>
           <view class="money">
             {{ orderInfo.total_price }}<span class="iconfont icon-suozi"></span>
           </view>
         </view>
-        <view
-          class="item acea-row row-between-wrapper"
-          v-if="orderInfo.refund_status === 0"
-        >
-          <view>{{$t(`原始邮费`)}}({{$t(`¥`)}})</view>
+        <view class="item acea-row row-between-wrapper" v-if="orderInfo.refund_status === 0">
+          <view>{{ $t(`原始邮费`) }}({{ $t(`¥`) }})</view>
           <view class="money">
             {{ orderInfo.pay_postage }}<span class="iconfont icon-suozi"></span>
           </view>
         </view>
-        <view
-          class="item acea-row row-between-wrapper"
-          v-if="orderInfo.refund_status === 0"
-        >
-          <view>{{$t(`实际支付`)}}({{$t(`¥`)}})</view>
+        <view class="item acea-row row-between-wrapper" v-if="orderInfo.refund_status === 0">
+          <view>{{ $t(`实际支付`) }}({{ $t(`¥`) }})</view>
           <view class="money">
-            <input
-              type="text"
-              v-model="price"
-              :class="focus === true ? 'on' : ''"
-              @focus="priceChange"
-            />
+            <input type="text" v-model="price" :class="focus === true ? 'on' : ''" @focus="priceChange" />
           </view>
         </view>
-        <view
-          class="item acea-row row-between-wrapper"
-          v-if="orderInfo.refund_status === 1"
-        >
-          <view>{{$t(`实际支付`)}}({{$t(`¥`)}})</view>
+        <view class="item acea-row row-between-wrapper" v-if="orderInfo.refund_status === 1">
+          <view>{{ $t(`实际支付`) }}({{ $t(`¥`) }})</view>
           <view class="money">
             {{ orderInfo.pay_price }}<span class="iconfont icon-suozi"></span>
           </view>
         </view>
-        <view
-          class="item acea-row row-between-wrapper"
-          v-if="orderInfo.refund_status === 1"
-        >
-          <view>{{$t(`退款金额`)}}({{$t(`¥`)}})</view>
+        <view class="item acea-row row-between-wrapper" v-if="orderInfo.refund_status === 1">
+          <view>{{ $t(`退款金额`) }}({{ $t(`¥`) }})</view>
           <view class="money">
-            <input
-              type="text"
-              v-model="refund_price"
-              :class="focus === true ? 'on' : ''"
-              @focus="priceChange"
-            />
+            <input type="text" v-model="refund_price" :class="focus === true ? 'on' : ''" @focus="priceChange" />
           </view>
         </view>
       </view>
       <view class="listChange" v-else>
-        <textarea
-          :placeholder="
-            orderInfo.remark ? orderInfo.remark : $t(`请填写备注信息`)
-          "
-          v-model="remark"
-        ></textarea>
+        <textarea :placeholder="
+          orderInfo.remark ? orderInfo.remark : $t(`请填写备注信息`)
+        " v-model="remark"></textarea>
       </view>
       <view class="modify" @click="save">
         {{
-          status == 1 || orderInfo.refund_status == 0 ? $t(`立即修改`) : $t(`确认退款`)
+            status == 1 || orderInfo.refund_status == 0 ? $t(`立即修改`) : $t(`确认退款`)
         }}
       </view>
-      <view
-        class="modify1"
-        @click="refuse"
-        v-if="orderInfo.refund_status == 1 && status == 0"
-      >
-        {{$t(`拒绝退款`)}}
+      <view class="modify1" @click="refuse" v-if="orderInfo.refund_status == 1 && status == 0">
+        {{ $t(`拒绝退款`) }}
       </view>
     </view>
     <view class="mask" @touchmove.prevent v-show="change === true"></view>
   </view>
 </template>
 <style>
-.priceChange{position:fixed;width:580upx;height:670upx;background-color:#fff;border-radius:10upx;top:50%;left:50%;margin-left:-290upx;margin-top:-335upx;z-index:666;transition:all 0.3s ease-in-out 0s;transform: scale(0);opacity:0;}
-.priceChange.on{opacity:1;transform: scale(1);}
-.priceChange .priceTitle{background:url("../../static/pricetitle.jpg") no-repeat;background-size:100% 100%;width:100%;height:160upx;border-radius:10upx 10upx 0 0;text-align:center;font-size:40upx;color:#fff;line-height:160upx;position:relative;}
-.priceChange .priceTitle .iconfont{position:absolute;font-size:40upx;right:26upx;top:23upx;width:40upx;height:40upx;line-height:40upx;}
-.priceChange .listChange{ width: 100%; padding:0 20rpx;}
-.priceChange .listChange textarea{box-sizing: border-box;}
-.priceChange .listChange .item{height:103upx;border-bottom:1px solid #e3e3e3;font-size:32upx;color:#333;}
-.priceChange .listChange .item .money{color:#666;width:300upx;text-align:right;}
-.priceChange .listChange .item .money .iconfont{font-size:32upx;margin-left:20upx;}
-.priceChange .listChange .item .money input{width:100%;height:100%;text-align:right;color:#ccc;}
-.priceChange .listChange .item .money input.on{color:#666;}
-.priceChange .modify{font-size:32upx;color:#fff;width:490upx;height:90upx;text-align:center;line-height:90upx;border-radius:45upx;background-color:#2291f8;margin:53upx auto 0 auto;}
-.priceChange .modify1{font-size:32upx;color:#312b2b;width:490upx;height:90upx;text-align:center;line-height:90upx;border-radius:45upx;background-color:#eee;margin:30upx auto 0 auto;}
+.priceChange {
+  position: fixed;
+  width: 580upx;
+  height: 670upx;
+  background-color: #fff;
+  border-radius: 10upx;
+  top: 50%;
+  left: 50%;
+  margin-left: -290upx;
+  margin-top: -335upx;
+  z-index: 666;
+  transition: all 0.3s ease-in-out 0s;
+  transform: scale(0);
+  opacity: 0;
+}
+
+.priceChange.on {
+  opacity: 1;
+  transform: scale(1);
+}
+
+.priceChange .priceTitle {
+  /* background: url("../../static/pricetitle.jpg") no-repeat; */
+  background-size: 100% 100%;
+  width: 100%;
+  height: 160upx;
+  border-radius: 10upx 10upx 0 0;
+  text-align: center;
+  font-size: 40upx;
+  color: #fff;
+  line-height: 160upx;
+  position: relative;
+}
+
+.priceChange .priceTitle .iconfont {
+  position: absolute;
+  font-size: 40upx;
+  right: 26upx;
+  top: 23upx;
+  width: 40upx;
+  height: 40upx;
+  line-height: 40upx;
+}
+
+.priceChange .listChange {
+  width: 100%;
+  padding: 0 20rpx;
+}
+
+.priceChange .listChange textarea {
+  box-sizing: border-box;
+}
+
+.priceChange .listChange .item {
+  height: 103upx;
+  border-bottom: 1px solid #e3e3e3;
+  font-size: 32upx;
+  color: #333;
+}
+
+.priceChange .listChange .item .money {
+  color: #666;
+  width: 300upx;
+  text-align: right;
+}
+
+.priceChange .listChange .item .money .iconfont {
+  font-size: 32upx;
+  margin-left: 20upx;
+}
+
+.priceChange .listChange .item .money input {
+  width: 100%;
+  height: 100%;
+  text-align: right;
+  color: #ccc;
+}
+
+.priceChange .listChange .item .money input.on {
+  color: #666;
+}
+
+.priceChange .modify {
+  font-size: 32upx;
+  color: #fff;
+  width: 490upx;
+  height: 90upx;
+  text-align: center;
+  line-height: 90upx;
+  border-radius: 45upx;
+  background-color: #2291f8;
+  margin: 53upx auto 0 auto;
+}
+
+.priceChange .modify1 {
+  font-size: 32upx;
+  color: #312b2b;
+  width: 490upx;
+  height: 90upx;
+  text-align: center;
+  line-height: 90upx;
+  border-radius: 45upx;
+  background-color: #eee;
+  margin: 30upx auto 0 auto;
+}
+
 .priceChange .listChange textarea {
   border: 1px solid #eee;
   width: 100%;
@@ -113,7 +174,7 @@
   margin-top: 50upx;
   border-radius: 10upx;
   color: #333;
-	
+
 }
 </style>
 <script>
@@ -125,7 +186,7 @@ export default {
     orderInfo: Object,
     status: String
   },
-  data: function() {
+  data: function () {
     return {
       focus: false,
       price: 0,
@@ -134,23 +195,23 @@ export default {
     };
   },
   watch: {
-    orderInfo: function(nVal) {
+    orderInfo: function (nVal) {
       this.price = this.orderInfo.pay_price;
       this.refund_price = this.orderInfo.pay_price;
       this.remark = "";
     }
   },
-  mounted: function() {
-	},
+  mounted: function () {
+  },
   methods: {
-    priceChange: function() {
+    priceChange: function () {
       this.focus = true;
     },
-    close: function() {
+    close: function () {
       this.price = this.orderInfo.pay_price;
       this.$emit("closechange", false);
     },
-    save: function() {
+    save: function () {
       let that = this;
       that.$emit("savePrice", {
         price: that.price,
@@ -159,7 +220,7 @@ export default {
         remark: that.remark
       });
     },
-    refuse: function() {
+    refuse: function () {
       let that = this;
       that.$emit("savePrice", {
         price: that.price,

BIN
pages/admin/static/pricetitle.jpg


+ 7 - 7
pages/points_mall/index.vue

@@ -48,7 +48,7 @@
 				</view>
 				<view class="footer-list">
 					<view class="list-left">
-						<image class="icon-sty" src="./static/go-shoping.png" mode=""></image>
+						<!-- <image class="icon-sty" src="./static/go-shoping.png" mode=""></image> -->
 						<view class="list-left-right">
 							<view class="title">
 								{{$t(`购买商品`)}}
@@ -66,7 +66,7 @@
 				</view>
 				<view class="footer-list">
 					<view class="list-left">
-						<image class="icon-sty" src="./static/everyday.png" mode=""></image>
+						<!-- <image class="icon-sty" src="./static/everyday.png" mode=""></image> -->
 						<view class="list-left-right">
 							<view class="title">
 								{{$t(`每日签到活动`)}}
@@ -84,7 +84,7 @@
 				</view>
 				<view class="footer-list">
 					<view class="list-left">
-						<image class="icon-sty" src="./static/luck-draw.png" mode=""></image>
+						<!-- <image class="icon-sty" src="./static/luck-draw.png" mode=""></image> -->
 						<view class="list-left-right">
 							<view class="title">
 								{{$t(`九宫格抽奖活动`)}}
@@ -134,20 +134,20 @@
 				goodList: [],
 				modelList: [{
 						title: this.$t(`我的积分`),
-						imgUrl: './static/my-point.png',
+						// imgUrl: './static/my-point.png',
 						url: "/pages/users/user_integral/index"
 					},
 					{
 						title: this.$t(`每日签到`),
-						imgUrl: './static/sign-in.png',
+						// imgUrl: './static/sign-in.png',
 						url: '/pages/users/user_sgin/index'
 					}, {
 						title: this.$t(`积分抽奖`),
-						imgUrl: './static/points-lottery.png',
+						// imgUrl: './static/points-lottery.png',
 						url: '/pages/goods/lottery/grids/index?type=1'
 					}, {
 						title: this.$t(`兑换记录`),
-						imgUrl: './static/exchange.png',
+						// imgUrl: './static/exchange.png',
 						url: "/pages/points_mall/exchange_record"
 					},
 				]

BIN
pages/points_mall/static/everyday.png


BIN
pages/points_mall/static/exchange.png


BIN
pages/points_mall/static/go-shoping.png


BIN
pages/points_mall/static/luck-draw.png


BIN
pages/points_mall/static/my-point.png


BIN
pages/points_mall/static/points-lottery.png


BIN
pages/points_mall/static/sign-in.png