Commit 3991e9e4 authored by zhengke's avatar zhengke

修改

parent 03f0ebbc
......@@ -195,9 +195,16 @@
<el-button size="small" type="danger" @click="saveInfo('AddressMsg')">确 定</el-button>
</span>
</el-dialog>
<el-dialog title="立即支付" :visible.sync="payVisible" width="400px">
<payurlItem1></payurlItem1>
<span slot="footer" class="dialog-footer">
<el-button size="small" @click="payVisible = false">取 消</el-button>
</span>
</el-dialog>
</div>
</template>
<script>
import payURL1 from "../commonPage/payURL1.vue";
export default {
data() {
return {
......@@ -233,7 +240,7 @@
Number: 1, //商品数量
SpecificationSort: "", //规格
mallUserId: "", //用户Id
AddressId: 0, //收货地址Id
AddressId: '', //收货地址Id
TotalPrice: 0, //总价格
specificationNameList: [], //规格列表
FreightMoney: 0, //运费
......@@ -284,8 +291,13 @@
},
orderDialog:false,
goodVisible: false,
payVisible:true,
};
},
components: {
payurlItem1: payURL1,
},
methods: {
//清空数据
clreaMsg() {
......@@ -293,7 +305,7 @@
this.orderMsg.Number = 1;
this.orderMsg.SpecificationSort = "";
this.orderMsg.mallUserId = "";
this.orderMsg.AddressId = 0;
this.orderMsg.AddressId = '';
this.orderMsg.TotalPrice = 0;
this.orderMsg.specificationNameList = [];
this.orderMsg.FreightMoney = 0;
......
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