|
@@ -274,12 +274,12 @@
|
|
|
新增
|
|
|
</div>
|
|
|
<div style="display: flex;justify-content: center">
|
|
|
- <div v-for="(item,index) in invoice" @click="invoiceIndex=index" class="submit-lable texts classStyles" style="width: 90px" :class="invoiceIndex==index?'boxStyle':''">
|
|
|
+ <div v-for="(item,index) in invoice" :key="index" @click="invoiceIndex=index" class="submit-lable texts classStyles" style="width: 90px" :class="invoiceIndex==index?'boxStyle':''">
|
|
|
{{item}}
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="address-sels">
|
|
|
- <div class="address-views " style="justify-content: space-between" :class="checkIndex==index?'boxs':''" @click="checksTap(item,index)" v-for="(item,index) in invoiceList.arr">
|
|
|
+ <div class="address-views " style="justify-content: space-between" :class="checkIndex==index?'boxs':''" @click="checksTap(item,index)" v-for="(item,index) in invoiceList.arr" :key="index">
|
|
|
<div class="sel">
|
|
|
<div class="check" v-if="checkIndex!=index">
|
|
|
|
|
@@ -341,7 +341,7 @@
|
|
|
<div>您暂无可用优惠券哦~</div>
|
|
|
</div>
|
|
|
<div class="list">
|
|
|
- <div class="list-contents" v-for="(item,index) in priceOrder.arr.coupon">
|
|
|
+ <div class="list-contents" v-for="(item,index) in priceOrder.arr.coupon" :key="index">
|
|
|
<div v-if="item.type==2">
|
|
|
<div class="coupon">
|
|
|
<img src="http://screen-test.zhousi.hdlkeji.com/aksdbn/img/coupon.png">
|
|
@@ -397,7 +397,7 @@
|
|
|
</div>
|
|
|
|
|
|
<div class="address-sels">
|
|
|
- <div class="address-views" v-for="(item,index) in addressList.arr " @click="checks(item,index)">
|
|
|
+ <div class="address-views" v-for="(item,index) in addressList.arr " @click="checks(item,index)" :key="index">
|
|
|
<div class="sel">
|
|
|
<div class="check" v-if="!item.check">
|
|
|
|
|
@@ -460,8 +460,7 @@
|
|
|
<div class=" classStyle">物流</div>
|
|
|
<!-- <div class="address submit-lable" @click="addressFlags=true" style="margin-left: 30px">新增地址</div>-->
|
|
|
<div class="color-s" style="margin-left: 50px;position: relative" v-if="user_address_flag">
|
|
|
- <div v-if="checkText" style="position: absolute;color: #fff;background-color: #dcdfe6;left:0;top:0;margin:-15px 0 0 -20px;border-radius: 12px;width: 45px;text-align: center;height: 20px;line-height: 20px;font-size: 14px;
|
|
|
- " >默认</div>
|
|
|
+ <div v-if="checkText" style="position: absolute;color: #fff;background-color: #dcdfe6;left:0;top:0;margin:-15px 0 0 -20px;border-radius: 12px;width: 45px;text-align: center;height: 20px;line-height: 20px;font-size: 14px;" >默认</div>
|
|
|
{{mineAddress}}
|
|
|
</div>
|
|
|
</div>
|
|
@@ -695,6 +694,7 @@
|
|
|
<!-- </div>-->
|
|
|
|
|
|
</div>
|
|
|
+
|
|
|
<div class="shopping">
|
|
|
<div class="shopping-title">
|
|
|
<div>订单信息</div>
|
|
@@ -707,7 +707,7 @@
|
|
|
<div>操作</div>
|
|
|
</div>
|
|
|
<div class="shopping-contents">
|
|
|
- <div class="shopping-lists" v-for="(item,index) in goodsList.arr.goods">
|
|
|
+ <div class="shopping-lists" v-for="(item,index) in goodsList.arr.goods" :key="index">
|
|
|
<div class="img">
|
|
|
<div class="checks" @click="check(item,index)" v-if="item.flag">
|
|
|
<img src="http://screen-test.zhousi.hdlkeji.com/aksdbn/img/goods/check.png">
|
|
@@ -773,6 +773,7 @@
|
|
|
style="margin-bottom: 30px"
|
|
|
v-model="value1"
|
|
|
type="date"
|
|
|
+ format="YYYY/MM/DD"
|
|
|
placeholder="选择发货时间"
|
|
|
:disabled-date="disabledDate">
|
|
|
</el-date-picker>
|
|
@@ -825,6 +826,30 @@
|
|
|
|
|
|
<script setup>
|
|
|
import {useI18n} from "@/hooks/web/useI18n";
|
|
|
+import { provide, reactive, ref,onMounted } from 'vue'
|
|
|
+import UserNav from '@/components/User/UserNav.vue'
|
|
|
+import indexHeaders from '@/components/Index/indexHeaders.vue'
|
|
|
+
|
|
|
+import ShoppingCart from '@/components/User/ShoppingCart.vue'
|
|
|
+import LeftSliderBar from '@/components/Index/LeftSliderBar.vue'
|
|
|
+import RightSliderBar from '@/components/Index/RightSliderBar.vue'
|
|
|
+import CountDate from '@/components/Index/CountDate.vue'
|
|
|
+import Footer from '@/components/Tool/Footer.vue'
|
|
|
+import DynamicYzm from '@/components/form/DynamicYzm.vue'
|
|
|
+import { useRouter } from 'vue-router'
|
|
|
+import { isLogin } from '@/utils'
|
|
|
+import {
|
|
|
+ address_list, amount_s,
|
|
|
+ creates, del_address,
|
|
|
+ get_area, getUserTax,
|
|
|
+ goods_coupon,
|
|
|
+ goods_update,
|
|
|
+ preview,
|
|
|
+ user_address_controller, user_lsp, user_tax_del, user_tax_list, user_tax_store
|
|
|
+} from '@/api/menu1'
|
|
|
+import { ElMessageBox, ElMessage } from 'element-plus'
|
|
|
+import { getStore } from '@/utils/storage'
|
|
|
+import { formRules } from '@/utils/config'
|
|
|
const { t } = useI18n()
|
|
|
/*
|
|
|
*
|
|
@@ -980,7 +1005,7 @@ const rules1 = {
|
|
|
bankName: [{ required: true, message: t('home.login.form.cardBankRequired'), trigger: 'blur' }],
|
|
|
bankNo: [{ required: true, message: t('home.login.form.cardBankAdminRequired'), trigger: 'blur' }],
|
|
|
taxNo: [{ required: true, message: t('home.login.form.cardNumberRequired'), trigger: 'blur' }],
|
|
|
- regPhone:formRules('cellPhone'),
|
|
|
+ regPhone:formRules('must'),
|
|
|
regAddr:[{ required: true, message: t('home.login.form.addressRequired'), trigger: 'blur' }],
|
|
|
id:'',
|
|
|
}
|
|
@@ -1002,15 +1027,15 @@ let is_defaults=ref(true)
|
|
|
let startTime=ref(null)
|
|
|
let userTime=ref('')
|
|
|
const dates=(value)=>{
|
|
|
- var data = new Date(value);
|
|
|
+ var data = new Date(value.replace(/-/g, '/'));
|
|
|
var month =data.getMonth() < 9 ? "0" + (data.getMonth() + 1) : data.getMonth() + 1;
|
|
|
var date = data.getDate() <= 9 ? "0" + data.getDate() : data.getDate();
|
|
|
- return data.getFullYear() + "-" + month + "-" + date
|
|
|
+ return data.getFullYear() + "/" + month + "/" + date
|
|
|
}
|
|
|
const timestampToTime=(row, column)=> {
|
|
|
var date = new Date(row); //时间戳为10位需*1000,时间戳为13位的话不需乘1000
|
|
|
- let Y = date.getFullYear() + '-';
|
|
|
- let M = date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) + '-' : date.getMonth() + 1 + '-';
|
|
|
+ let Y = date.getFullYear() + '/';
|
|
|
+ let M = date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) + '/' : date.getMonth() + 1 + '/';
|
|
|
let D = date.getDate() < 10 ? '0' + date.getDate() + ' ' : date.getDate() + ' ';
|
|
|
return Y + M + D;
|
|
|
}
|
|
@@ -1027,18 +1052,7 @@ const disabledDate = (time) => {
|
|
|
const value1=ref(false)
|
|
|
const updateFlag=ref(false)
|
|
|
// 记录访问次数
|
|
|
-import { provide, reactive, ref,onMounted } from 'vue'
|
|
|
-import UserNav from '@/components/User/UserNav.vue'
|
|
|
-import indexHeaders from '@/components/Index/indexHeaders.vue'
|
|
|
|
|
|
-import ShoppingCart from '@/components/User/ShoppingCart.vue'
|
|
|
-import LeftSliderBar from '@/components/Index/LeftSliderBar.vue'
|
|
|
-import RightSliderBar from '@/components/Index/RightSliderBar.vue'
|
|
|
-import CountDate from '@/components/Index/CountDate.vue'
|
|
|
-import Footer from '@/components/Tool/Footer.vue'
|
|
|
-import DynamicYzm from '@/components/form/DynamicYzm.vue'
|
|
|
-import { useRouter } from 'vue-router'
|
|
|
-import { isLogin } from '@/utils'
|
|
|
const checkIndex=ref(0)
|
|
|
const invoiceList=reactive({
|
|
|
arr:[]
|
|
@@ -1051,18 +1065,7 @@ onMounted(()=>{
|
|
|
addressLists()
|
|
|
invoiceList_s();
|
|
|
})
|
|
|
-import {
|
|
|
- address_list, amount_s,
|
|
|
- creates, del_address,
|
|
|
- get_area, getUserTax,
|
|
|
- goods_coupon,
|
|
|
- goods_update,
|
|
|
- preview,
|
|
|
- user_address_controller, user_lsp, user_tax_del, user_tax_list, user_tax_store
|
|
|
-} from '@/api/menu1'
|
|
|
-import { ElMessageBox, ElMessage } from 'element-plus'
|
|
|
-import { getStore } from '@/utils/storage'
|
|
|
-import { formRules } from '@/utils/config'
|
|
|
+
|
|
|
if (localStorage.getItem('USER__INFO__')) {
|
|
|
user_lsp().then((res) => {
|
|
|
})
|
|
@@ -1566,7 +1569,7 @@ const rules = {
|
|
|
addressDetail: [{ required: true, message: t('home.login.form.addressDetailRequired'), trigger: 'blur' }],
|
|
|
userName: [{ required: true, message: t('home.login.form.userNameRequireds'), trigger: 'blur' }],
|
|
|
userPhone: formRules('cellPhone'),
|
|
|
- regPhone:formRules('cellPhone'),
|
|
|
+ regPhone:formRules('must'),
|
|
|
regAddr:[{ required: true, message: t('home.login.form.addressRequired'), trigger: 'blur' }],
|
|
|
cardNo:[{ required: true, message: t('home.login.form.cardNoRequired'), trigger: 'blur' }],
|
|
|
id:'',
|
|
@@ -1748,12 +1751,12 @@ isLogin()
|
|
|
.user-info text{
|
|
|
font-size: 14px;
|
|
|
}
|
|
|
-.boxs{
|
|
|
- //border-radius: 2px;
|
|
|
- //border: 1px solid #3171B8;
|
|
|
- //padding: 5px 10px;
|
|
|
- //box-sizing: border-box;
|
|
|
-}
|
|
|
+// .boxs{
|
|
|
+// //border-radius: 2px;
|
|
|
+// //border: 1px solid #3171B8;
|
|
|
+// //padding: 5px 10px;
|
|
|
+// //box-sizing: border-box;
|
|
|
+// }
|
|
|
.texts{
|
|
|
box-sizing: border-box;
|
|
|
|
|
@@ -1878,9 +1881,9 @@ isLogin()
|
|
|
margin-bottom: 30px;
|
|
|
margin-left:20px;
|
|
|
|
|
|
- .coupon {
|
|
|
+ // .coupon {
|
|
|
|
|
|
- }
|
|
|
+ // }
|
|
|
.couponColor{
|
|
|
border: 2px solid #3171B8;
|
|
|
height: 100px;
|
|
@@ -2061,16 +2064,19 @@ isLogin()
|
|
|
width: 50px;
|
|
|
height: 20px;
|
|
|
background: #fff;
|
|
|
+ line-height: 20px;
|
|
|
+
|
|
|
//border-radius: 2px;
|
|
|
|
|
|
}
|
|
|
/deep/ .sum .el-input .el-input__inner{
|
|
|
background: #fff;
|
|
|
border: 1px solid #F0F2F5 !important;
|
|
|
- border: none;
|
|
|
- height: 21px;
|
|
|
+ // border: none;
|
|
|
+ height: 20px;
|
|
|
padding: 0;
|
|
|
text-align: center;
|
|
|
+ line-height: 20px;
|
|
|
}
|
|
|
.login-wrapper{
|
|
|
background-color: #F7F8FA;
|
|
@@ -2205,7 +2211,7 @@ isLogin()
|
|
|
text-align: center;
|
|
|
border-right: 1px solid #f4f4f4;
|
|
|
display: flex;
|
|
|
- line-height: 150px;
|
|
|
+ // line-height: 150px;
|
|
|
align-items: center;
|
|
|
justify-content: center;
|
|
|
// padding: 60px 0;
|
|
@@ -2217,7 +2223,7 @@ isLogin()
|
|
|
height: 20px;
|
|
|
background: #F0F2F5;
|
|
|
//border-radius: 2px;
|
|
|
- margin-top:4px;
|
|
|
+ // margin-top:4px;
|
|
|
line-height: 20px;
|
|
|
}
|
|
|
|
|
@@ -2263,6 +2269,7 @@ isLogin()
|
|
|
line-height: 50px;
|
|
|
padding: 0 0 0 60px;
|
|
|
justify-content: space-between;
|
|
|
+ white-space: nowrap;
|
|
|
div:nth-child(1){
|
|
|
flex:0 0 310px;
|
|
|
//flex: 1;
|