shish před 3 roky
rodič
revize
8d8fd4b0a7

+ 1 - 0
hdApp/src/pages.json

@@ -425,6 +425,7 @@
 				{ "path": "bookExplain", "style": { "navigationBarTitleText": "预订说明", "enablePullDownRefresh": true } },
 				{ "path": "refundList","style": {"navigationBarTitleText": "售后记录", "enablePullDownRefresh": true } },
 				{ "path": "readMe","style": {"navigationBarTitleText": "购买须知", "enablePullDownRefresh": true } },
+				{ "path": "afterSale","style": {"navigationBarTitleText": "上传图片规范", "enablePullDownRefresh": true } },
 				{ "path": "bookReadMe","style": {"navigationBarTitleText": "预订须知", "enablePullDownRefresh": true } },
 				{ "path": "addCg","style": {"navigationBarTitleText": "新增采购", "enablePullDownRefresh": false } },
 				{ "path": "addCgConfirm","style": {"navigationBarTitleText": "确认订单", "enablePullDownRefresh": false } },

+ 75 - 0
hdApp/src/pagesPurchase/afterSale.vue

@@ -0,0 +1,75 @@
+<template>
+	<view class="app-content">
+		<view class="list">
+            <view>
+				<image class="image" :src="`${constant.imgUrl}/ghs/b_hr_after2.jpg?v=3`" mode="widthFix"></image>
+			</view>
+		</view>
+		<view style="text-align:center;margin-top:40upx;">
+			<button class="admin-button-com big default go-back" style="width:260upx;" @click="goBack()">返回</button>
+		</view>
+	</view>
+</template>
+<script>
+export default {
+	name: "afterSale",
+	components: {
+	},
+	mixins: [],
+	data() {
+		return {
+			shopId:0
+		};
+	},
+	onLoad(){
+		this.shopId = this.option.shopId
+	},
+	methods: {
+		init(){
+
+		},
+		goBack(){
+			uni.navigateBack()
+		},
+		toPhone(phone){
+			uni.makePhoneCall({ phoneNumber: phone })
+		}
+	}
+};
+</script>
+<style lang="scss" scoped>
+.app-content{
+	padding:20upx 20upx 60upx 20upx;
+	background-color: white;
+    .title{
+		font-weight: bold;
+		font-size:36upx;
+		margin-bottom:22upx;
+	}
+	.smallTitle{
+		font-weight: bold;
+		font-size:30upx;
+		font-weight: bold;
+		margin:25upx 0 25upx 0;
+	}
+	.info{
+    	font-size:32upx;
+		margin-bottom:20upx;
+	}
+	.image{
+		width:100%;
+		margin-bottom:20upx;
+	}
+	.video{
+		margin:0 auto;
+        text-align: center;
+		margin-bottom:10upx;
+	}
+	.book-button{
+		margin-bottom:15upx;
+	}
+	.go-back{
+		margin:0 auto;
+	}
+}
+</style>

+ 1 - 1
hdApp/src/pagesPurchase/readMe.vue

@@ -113,7 +113,7 @@
 </template>
 <script>
 export default {
-	name: "book-what",
+	name: "readMe",
 	components: {
 	},
 	mixins: [],

+ 8 - 5
hdApp/src/pagesPurchase/refund.vue

@@ -57,10 +57,10 @@
 				<div class="module-com input-line-wrap">
 					<div class="module-com input-line-wrap goods-wrap">
 						<div class="module-tit" style="padding-left:0upx;">
-							<span>花损图片:</span>
-							<span class="app-color-3"></span>
-							</div>
-							<div class="module-det">
+							<span>售后图片:</span>
+							<span class="app-color-3" style="color:red;font-weight:bold;text-decoration: underline;float: right;" @click="getRule()">★上传图片规范(必看)</span>
+						</div>
+						<div class="module-det">
 							<htz-image-upload :max="9" :compress="true" v-model="refundImgData" :headers="headers"
 							@uploadSuccess="imgUploadSuccess" :quality="60" @imgDelete="imgDeleteFn" :action="getLoginInfo.imgUploadApi">
 							</htz-image-upload>
@@ -86,7 +86,7 @@ import { createRefund } from "@/api/cg-refund";
 //图片上传插件来源:https://ext.dcloud.net.cn/plugin?id=2922 已改造,不能再升级 shish 20211228
 import htzImageUpload from '@/components/htz-image-upload/htz-image-upload.vue'
 export default {
-	name: "orderDetail",
+	name: "refund",
 	components: {
 		TuiListCell,
 		htzImageUpload
@@ -131,6 +131,9 @@ export default {
 	watch:{
 	},
 	methods: {
+		getRule(){
+			this.$util.pageTo({url:'/pagesPurchase/afterSale'})
+		},
 		imgUploadSuccess(res) {
 			var _res = JSON.parse(res.data)
 			if(_res.code == 1){