Files
PC-202306242200\Administrator f529129c93 first commit
2026-03-31 10:53:43 +08:00

78 lines
3.9 KiB
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<view class="xkl-com-bg">
<view style="height: 20rpx"></view>
<view style="font-size: 34rpx; font-weight: 700; text-align: center">充电桩购销合同</view>
<view style="height: 20rpx"></view>
<view style="line-height: 46rpx">
<view>买方用户名{{ shopinfo.username }} 手机号{{ shopinfo.mobile }}</view>
<view>卖方电小芮(河南)新能源科技有限公司</view>
<view>合同签订地点 河南郑州</view>
<view style="text-indent: 2em">
根据中华人民共和国民法典及相关法律法规甲乙双方本着平等自愿公平互惠互利和诚实守信的原则为满足甲方的需求就充电桩买卖事宜协商一致订立本合同以资共同遵守
</view>
<view style="text-indent: 2em">购买标的方式</view>
<view style="text-indent: 2em">
本协议项下的买卖标的物为乙方公司销售的充电桩甲方自行在乙方开发或告知的网站上进行独立购买自行选择型号和数量并全款支付合同订立购买充电桩数的总价
</view>
<view style="text-indent: 2em">品名型号数量金额总价</view>
<view style="text-indent: 2em">交货方式</view>
<view style="text-indent: 2em">甲方购买的充电桩经第三方公司安装结束后由甲方在后台系统上电子签署收到货物确认单甲方签署后视为乙方交付本合同项下的充电桩</view>
<view style="text-indent: 2em">付款方式由甲方在购买时一次性支付</view>
<view style="text-indent: 2em">双方权利及义务</view>
<view style="text-indent: 2em">1甲方的权利及义务</view>
<view style="text-indent: 2em">甲方应在选定型号后及时支付款项</view>
<view style="text-indent: 2em">2乙方的权利及义务</view>
<view style="text-indent: 2em">乙方应保证所售充电桩的质量及技术标准符合国家的最低标准要求</view>
<view style="text-indent: 2em">产品质保</view>
<view style="text-indent: 2em">
质保期五年在质保期内乙方应积极履行质保义务出现质量问题乙方应免费及时更换维修合格产品及配件乙方未尽到质保义务时须承担所有维修费用质保期自甲方所购充电桩安装结束并由甲方签署到货确认函后第二日起算
</view>
<view style="text-indent: 2em">违约责任</view>
<view style="text-indent: 2em">1甲方在购买充电桩后不能因任何除产品质量有缺陷外的原因要求解除本合同及退款</view>
<view style="text-indent: 2em">2乙方充电桩存在质量问题由乙方协调各方进行免费更换维修</view>
<view style="text-indent: 2em">解决合同纠纷方式</view>
<view style="text-indent: 2em">本合同在履行过程中发生争议由双方当事人协商解决协商或调解不成的可依法在乙方所在地人民法院起诉</view>
<view style="text-indent: 2em">其他</view>
<view style="text-indent: 2em">本合同一式两份甲乙双方各执一份自双方签字盖章之日起生效</view>
</view>
<view v-if="!hide">
<view style="height: 50rpx"></view>
<u-button type="primary" @click="submit(1)">我已阅读并同意充电桩购销合同</u-button>
<view style="height: 50rpx"></view>
<u-button @click="submit(0)">取消</u-button>
</view>
<view style="height: 100rpx"></view>
</view>
</template>
<script>
let self;
export default {
data() {
return {
shopinfo: {
username: '',
mobile: ''
},
hide: ''
};
},
onLoad(options) {
this.shopinfo = uni.getStorageSync('user');
},
methods: {
submit(e) {
if (e) {
uni.$emit('buy', 1);
uni.navigateBack();
} else {
uni.navigateBack();
}
}
}
};
</script>
<style lang="scss"></style>