新增防油手提袋
This commit is contained in:
@@ -4460,12 +4460,77 @@ public class ProductService {
|
|||||||
case "手举牌":
|
case "手举牌":
|
||||||
priceList = getHoldSignPrice(dto, width, length, height);
|
priceList = getHoldSignPrice(dto, width, length, height);
|
||||||
return chucklePrice(role, priceList, dto);
|
return chucklePrice(role, priceList, dto);
|
||||||
|
case "防油纸袋":
|
||||||
|
priceList = getOilProofPaperPrice(dto, width, length, height);
|
||||||
|
return chucklePrice(role, priceList, dto);
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private List<Product> getOilProofPaperPrice(Product dto, Double width, Double length, Double height) {
|
||||||
|
List<String> craft_list = dto.getCraft() == null ? new ArrayList<>() : Arrays.asList(dto.getCraft());
|
||||||
|
List<Product> priceList = new ArrayList<>();
|
||||||
|
|
||||||
|
int count = dto.getCount();
|
||||||
|
int number = dto.getNumber();
|
||||||
|
|
||||||
|
int[] counts = {20000, 30000, 50000, 100000, 200000};
|
||||||
|
double[] rates = {0.4, 0.38, 0.35, 0.32, 0.3};
|
||||||
|
double area = Math.max(width, length) * (Math.min(width, length) + dto.getXx());
|
||||||
|
|
||||||
|
double[] base_prices = {0.0202 + area * 0.0001304, 0.0202 + area * 0.0001304, 0.0182 + area * 0.0001304, 0.0162 + area * 0.0001304, 0.0142 + area * 0.0001304};
|
||||||
|
double[] prices = {0.6, 0.62, 0.65, 0.68, 0.7};
|
||||||
|
int leftIdx = 0;
|
||||||
|
int rightIdx = 0;
|
||||||
|
if (count <= counts[0]) {
|
||||||
|
leftIdx = rightIdx = 0;
|
||||||
|
} else if (count >= counts[counts.length - 1]) {
|
||||||
|
leftIdx = rightIdx = counts.length - 1;
|
||||||
|
} else {
|
||||||
|
// 找到第一个大于 Q 的档位索引
|
||||||
|
int i = 0;
|
||||||
|
while (i < counts.length && counts[i] < count) {
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
leftIdx = i - 1;
|
||||||
|
rightIdx = i;
|
||||||
|
}
|
||||||
|
double price = 0;
|
||||||
|
if (leftIdx == rightIdx) {
|
||||||
|
price = Math.ceil(base_prices[leftIdx] / prices[leftIdx] * count);
|
||||||
|
} else {
|
||||||
|
double base_count = (count - counts[leftIdx]) / (counts[rightIdx] - counts[leftIdx]);
|
||||||
|
price = Math.ceil(((base_prices[leftIdx] + (base_count) * (base_prices[rightIdx] - base_prices[leftIdx]) + area * 0.0001304) / (1 - (rates[leftIdx] + (base_count) * (rates[rightIdx] - rates[leftIdx]))) * count) / 10) * 10;
|
||||||
|
}
|
||||||
|
double color_price = 0;
|
||||||
|
double base_color_price = 150;
|
||||||
|
if (area <= 462) {
|
||||||
|
base_color_price = 150;
|
||||||
|
} else if (area <= 728) {
|
||||||
|
base_color_price = 200;
|
||||||
|
} else {
|
||||||
|
base_color_price = 250;
|
||||||
|
}
|
||||||
|
if (craft_list.contains("单色")) {
|
||||||
|
color_price = base_color_price * 1;
|
||||||
|
} else if (craft_list.contains("两色")) {
|
||||||
|
color_price = base_color_price * 2;
|
||||||
|
} else if (craft_list.contains("三色")) {
|
||||||
|
color_price = base_color_price * 3;
|
||||||
|
} else if (craft_list.contains("四色")) {
|
||||||
|
color_price = base_color_price * 4;
|
||||||
|
}
|
||||||
|
|
||||||
|
double design_price = 0;
|
||||||
|
Product pro = new Product();
|
||||||
|
pro.setCount(count);
|
||||||
|
pro.setPrice(Math.max(Math.ceil(price), 0) * number + design_price + color_price);
|
||||||
|
priceList.add(pro);
|
||||||
|
return priceList;
|
||||||
|
}
|
||||||
|
|
||||||
private List<Product> getHoldSignPrice(Product dto, Double width, Double length, Double height) {
|
private List<Product> getHoldSignPrice(Product dto, Double width, Double length, Double height) {
|
||||||
List<String> craft_list = dto.getCraft() == null ? new ArrayList<>() : Arrays.asList(dto.getCraft());
|
List<String> craft_list = dto.getCraft() == null ? new ArrayList<>() : Arrays.asList(dto.getCraft());
|
||||||
List<Product> priceList = new ArrayList<>();
|
List<Product> priceList = new ArrayList<>();
|
||||||
@@ -7675,7 +7740,7 @@ public class ProductService {
|
|||||||
price = PriceUtils.TableUnitPrice(area, prices, areas, last_price);
|
price = PriceUtils.TableUnitPrice(area, prices, areas, last_price);
|
||||||
|
|
||||||
}
|
}
|
||||||
price = Math.max(price, min_price) + ((dto.getNumber() - 1) * 8);
|
|
||||||
return price;
|
return price;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -7695,11 +7760,16 @@ public class ProductService {
|
|||||||
if (carft_list.contains("激光") && carft_list.contains("滴胶")) {
|
if (carft_list.contains("激光") && carft_list.contains("滴胶")) {
|
||||||
price = price * 1.3;
|
price = price * 1.3;
|
||||||
}
|
}
|
||||||
|
price = Math.max(price, min_price) + ((dto.getNumber() - 1) * 8);
|
||||||
|
|
||||||
if (carft_list.contains("二层旋转")) {
|
if (carft_list.contains("二层旋转")) {
|
||||||
price += getOtherFridgePrice(dto.getLengthSize(), dto.getWidthSize(), dto, 0, carft_list);
|
price += getOtherFridgePrice(dto.getLengthSize(), dto.getWidthSize(), dto, 0, carft_list);
|
||||||
|
price = Math.max(price, min_price) + ((dto.getNumber() - 1) * 8);
|
||||||
|
|
||||||
}
|
}
|
||||||
if (carft_list.contains("三层旋转")) {
|
if (carft_list.contains("三层旋转")) {
|
||||||
price += getOtherFridgePrice(dto.getLengthTang(), dto.getWidthTang(), dto, 0, carft_list);
|
price += getOtherFridgePrice(dto.getLengthTang(), dto.getWidthTang(), dto, 0, carft_list);
|
||||||
|
price = Math.max(price, min_price) + ((dto.getNumber() - 1) * 8);
|
||||||
}
|
}
|
||||||
weight = df.format(width * length * 4.17 * dto.getCount() * 0.1 * number / 1000 * Double.parseDouble(cailiao));
|
weight = df.format(width * length * 4.17 * dto.getCount() * 0.1 * number / 1000 * Double.parseDouble(cailiao));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1656,7 +1656,6 @@
|
|||||||
$("#z4_craft").show();
|
$("#z4_craft").show();
|
||||||
$("#peijian_ui").show();
|
$("#peijian_ui").show();
|
||||||
$("#z4_craft").find(":input").attr("disabled", false);
|
$("#z4_craft").find(":input").attr("disabled", false);
|
||||||
$("#peijian_ui").find(":input").attr("disabled", false);
|
|
||||||
$("#z4_craft .ui_double_fm").prop("checked", true);
|
$("#z4_craft .ui_double_fm").prop("checked", true);
|
||||||
$('.ui_fm_l').find(":input").prop('checked', false);
|
$('.ui_fm_l').find(":input").prop('checked', false);
|
||||||
$('.ui_fm_l input[value="双面覆哑膜"]').prop('checked', true);
|
$('.ui_fm_l input[value="双面覆哑膜"]').prop('checked', true);
|
||||||
|
|||||||
@@ -0,0 +1,354 @@
|
|||||||
|
<%@ page language="java" contentType="text/html; charset=UTF-8"
|
||||||
|
pageEncoding="UTF-8" %>
|
||||||
|
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>Insert title here</title>
|
||||||
|
<%@include file="/views/common.jsp" %>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<style>
|
||||||
|
#z4_craft .layui-form-select .layui-edge {
|
||||||
|
right: 20px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<div class="big_box">
|
||||||
|
<div class="left_div">
|
||||||
|
<h1 class="h1">防油纸袋</h1> <span style="color:red;font-weight:700;"></span>
|
||||||
|
<hr>
|
||||||
|
<form class="layui-form">
|
||||||
|
<input type="hidden" name="proTypeValue" id="proTypeValue" class="layui-input" value="防油纸袋"/>
|
||||||
|
<p>
|
||||||
|
材质
|
||||||
|
</p>
|
||||||
|
<div class="layui-form-item">
|
||||||
|
<select name="kind" class="select" lay-search lay-filter="kind">
|
||||||
|
<option value="60g黄牛皮纸">60g黄牛皮纸</option>
|
||||||
|
<option value="60g白牛皮纸">60g白牛皮纸</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
<p>
|
||||||
|
尺寸(CM/厘米)
|
||||||
|
</p>
|
||||||
|
<div class="layui-form-item" id="ui_size">
|
||||||
|
<input type="text" name="size" id="size" placeholder="请输入格式:长*宽" class="layui-input" autocomplete="off">
|
||||||
|
</div>
|
||||||
|
<p>
|
||||||
|
侧宽(CM/厘米) <span style="color:red;font-weight:700;">侧宽尺寸只能2-6cm之间</span>
|
||||||
|
</p>
|
||||||
|
<div class="layui-form-item" id="ui_xx">
|
||||||
|
<input type="text" name="xx" id="xx" placeholder="请输入侧宽" class="layui-input" autocomplete="off">
|
||||||
|
</div>
|
||||||
|
<div class="layui-form-item">
|
||||||
|
<div class="layui-form-item layui-input-inline">
|
||||||
|
<p>
|
||||||
|
数量(个)
|
||||||
|
</p>
|
||||||
|
<div class="layui-form-item" style="width: 200px">
|
||||||
|
<select id="count_select" lay-filter="count_select" class="select">
|
||||||
|
<option value="20000">20000</option>
|
||||||
|
<option value="30000">30000</option>
|
||||||
|
<option value="50000">50000</option>
|
||||||
|
<option value="100000">100000</option>
|
||||||
|
<option value="200000">200000</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class=" layui-input-inline">
|
||||||
|
<p>
|
||||||
|
自定义数量
|
||||||
|
</p>
|
||||||
|
<div class="layui-form-item" style="width: 500px">
|
||||||
|
<input type="text" name="count" id="count" value="20000" class="layui-input">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<p>
|
||||||
|
款数
|
||||||
|
</p>
|
||||||
|
<div class="layui-form-item">
|
||||||
|
<input type="text" placeholder="请输入整数" autocomplete="off" name="number" id="number" value="1"
|
||||||
|
class="layui-input" lay-verify="number">
|
||||||
|
</div>
|
||||||
|
<p>
|
||||||
|
客户旺旺
|
||||||
|
</p>
|
||||||
|
<div class="layui-form-item">
|
||||||
|
<input type="text" placeholder="请输入客户旺旺号" autocomplete="off" name="wangwang" id="wangwang"
|
||||||
|
class="layui-input">
|
||||||
|
</div>
|
||||||
|
<p>
|
||||||
|
工艺
|
||||||
|
</p>
|
||||||
|
<div class="layui-form-item" id='z4_craft'>
|
||||||
|
<div class="layui-input-block ">
|
||||||
|
印面:
|
||||||
|
<input type="checkbox" name="craft" lay-filter="ui_craft" value="单面" title="单面" checked>
|
||||||
|
<input type="checkbox" name="craft" lay-filter="ui_craft" value="双面" title="双面">
|
||||||
|
</div>
|
||||||
|
<div class="layui-input-block ">
|
||||||
|
印色:
|
||||||
|
<input type="checkbox" name="craft" lay-filter="ui_craft" value="单色" title="单色" checked>
|
||||||
|
<input type="checkbox" name="craft" lay-filter="ui_craft" value="两色" title="两色">
|
||||||
|
<input type="checkbox" name="craft" lay-filter="ui_craft" value="三色" title="三色">
|
||||||
|
<input type="checkbox" name="craft" lay-filter="ui_craft" value="四色" title="四色">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="layui-input-block">
|
||||||
|
<input type="checkbox" name="craft" lay-filter="ui_craft" value="抠图" title="抠图">
|
||||||
|
<div class="layui-inline crop" style="display:none;width: 80px">
|
||||||
|
<input class="layui-input" type="text" name="cropNumber">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
<div class="layui-form-item">
|
||||||
|
<button class="layui-btn" lay-submit="" lay-filter="acount_btn">计算</button>
|
||||||
|
<button type="reset" class="layui-btn layui-btn-primary">重置</button>
|
||||||
|
</div>
|
||||||
|
<h2>计算结果-
|
||||||
|
<button type="button" class="layui-btn layui-btn-primary layui-btn-sm copyResult"
|
||||||
|
onclick="copyResult()">点击复制
|
||||||
|
</button>
|
||||||
|
</h2>
|
||||||
|
<div>
|
||||||
|
<textarea rows="11" cols="75" id="span_result" readonly="readonly"></textarea>
|
||||||
|
<%@include file="../acountExpressFee.jsp" %>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<table class="layui-hide" id="priceTable" lay-filter="priceTable"></table>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
<div class="right_div" style="margin-left:50px;">
|
||||||
|
<div class="layui-carousel" id="test1">
|
||||||
|
<div carousel-item id="carousel"></div>
|
||||||
|
<br>
|
||||||
|
<div id="remark" style="font-size:20px;color:red"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
<%@include file="/views/copyResult.jsp" %>
|
||||||
|
<script>
|
||||||
|
layui.use(['table', 'form', 'carousel'], function () {
|
||||||
|
var form = layui.form; //只有执行了这一步,部分表单元素才会自动修饰成功
|
||||||
|
var carousel = layui.carousel;
|
||||||
|
var table = layui.table;
|
||||||
|
|
||||||
|
//建造实例
|
||||||
|
ins = carousel.render({});
|
||||||
|
var html = " ";
|
||||||
|
var remark = " ";
|
||||||
|
|
||||||
|
// 清空轮播图
|
||||||
|
$("#carousel").empty();
|
||||||
|
$("#remark").empty();
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
url: "${pageContext.request.contextPath}/getImgs",
|
||||||
|
type: "GET",
|
||||||
|
data: {
|
||||||
|
proTypeValue: $("#proTypeValue").val(),
|
||||||
|
kindValue: $('input[name="kindValue"]').val()
|
||||||
|
},
|
||||||
|
success: function (result) {
|
||||||
|
for (let i = 0; i < result.length; i++) {
|
||||||
|
// 只留一个remark
|
||||||
|
remark = "";
|
||||||
|
html += '<div><img style="width:100%;height: 100%;object-fit: contain" src="' + result[i].imgUrl + '"></div>';
|
||||||
|
remark += '<div><span>' + result[i].remark + '<span/></div>';
|
||||||
|
}
|
||||||
|
$("#carousel").append(html);
|
||||||
|
// 如果没有说明,就不显示null
|
||||||
|
if (remark.indexOf("null") < 0) {
|
||||||
|
$("#remark").append(remark);
|
||||||
|
}
|
||||||
|
// 如果没有轮播图就隐藏
|
||||||
|
if (result.length == 0) {
|
||||||
|
document.getElementById("test1").style.display = "none"; //隐藏
|
||||||
|
} else {
|
||||||
|
document.getElementById("test1").style.display = "block"; //显示
|
||||||
|
ins.reload({
|
||||||
|
elem: '#test1',
|
||||||
|
width: result[0].imgWidth, //设置容器宽度
|
||||||
|
height: result[0].imgHeight
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
form.on('checkbox(ui_craft)', function (data) {
|
||||||
|
let craft_list = [];
|
||||||
|
$("input[name='craft']:checked").each(function () {
|
||||||
|
if (!$(this).is(':disabled')) {
|
||||||
|
craft_list.push($(this).val());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
|
const carft_list1 = ["单面", "双面"];
|
||||||
|
|
||||||
|
const carft1 = carft_list1.filter(craft => craft_list.includes(craft));
|
||||||
|
if (carft1.length > 1) {
|
||||||
|
$(data.elem).prop("checked", false);
|
||||||
|
layer.msg("印面工艺不能同时选择", {offset: ['300px', '300px']}, function () {
|
||||||
|
});
|
||||||
|
form.render();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
const carft_list2 = ["单色", "两色", "三色", "四色"];
|
||||||
|
|
||||||
|
const carft2 = carft_list2.filter(craft => craft_list.includes(craft));
|
||||||
|
if (carft2.length > 1) {
|
||||||
|
$(data.elem).prop("checked", false);
|
||||||
|
layer.msg("印色工艺不能同时选择", {offset: ['300px', '300px']}, function () {
|
||||||
|
});
|
||||||
|
form.render();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
form.render();
|
||||||
|
})
|
||||||
|
|
||||||
|
form.on("select(count_select)", function (val) {
|
||||||
|
$("#count").val(val.value);
|
||||||
|
})
|
||||||
|
|
||||||
|
// 点击计算,计算价格
|
||||||
|
form.on('submit(acount_btn)', function (data) {
|
||||||
|
var number = $("#number").val();
|
||||||
|
var size = $("#size").val();
|
||||||
|
let xxsize = $("input[name='xx']").val();
|
||||||
|
var count = $("#diyCount").val();
|
||||||
|
var kind = $("select[name='kind'] option:selected").text();
|
||||||
|
var kindValue = $("select[name='kindValue'] option:selected").text();
|
||||||
|
var craft = [];
|
||||||
|
|
||||||
|
if (size == "") {
|
||||||
|
layer.msg('请填写尺寸!', {offset: ['300px', '300px']}, function () {
|
||||||
|
});
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((size.split("*")[0] < 10 || size.split("*")[1] < 8) && (size.split("*")[0] < 8 || size.split("*")[1] < 10)) {
|
||||||
|
layer.msg('最小尺寸不能小于10*8cm!', {offset: ['300px', '300px']}, {icon: 5});
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((size.split("*")[0] > 30 || size.split("*")[1] > 22) && (size.split("*")[0] > 22 || size.split("*")[1] > 30)) {
|
||||||
|
layer.msg("最大尺寸不能超过30*22cm", {offset: ['300px', '300px']}, function () {
|
||||||
|
});
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if(xxsize < 2 || xxsize > 6){
|
||||||
|
layer.msg("侧宽尺寸只能2-6cm之间", {offset: ['300px', '300px']}, function () {
|
||||||
|
});
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
$("input:checkbox[name='craft']:checked").each(function (i) {
|
||||||
|
// 没有被禁用的工艺加到arr中
|
||||||
|
if (!$(this).is(':disabled')) {
|
||||||
|
if ($(this).val() == "抠图") {
|
||||||
|
craft.push($(this).val() + $("input[name='cropNumber']").val());
|
||||||
|
return;
|
||||||
|
} else {
|
||||||
|
craft.push($(this).val());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
url: "${path}/getThanSum",
|
||||||
|
type: "GET",
|
||||||
|
data: $(".big_box form").serialize(),
|
||||||
|
success: function (result) {
|
||||||
|
if (result.code == 100) {
|
||||||
|
layer.msg(result.msg, {offset: ['300px', '300px']}, function () {
|
||||||
|
});
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
var data = result.data.proList;
|
||||||
|
|
||||||
|
let kind = $("select[name='kind'] option:selected").val();
|
||||||
|
|
||||||
|
var span_result = '防油纸袋 - ' + kind + ' - ' + size + '*' + xxsize + ' cm (同款内容)\n';
|
||||||
|
|
||||||
|
span_result += `工艺:` + craft.join(",") + '\n';
|
||||||
|
|
||||||
|
if (number > 1) {
|
||||||
|
for (let i = 0; i < data.length; i++) {
|
||||||
|
span_result += number + '款 各' + data[i].count + "个,共" + data[i].price + "元" + '\n'
|
||||||
|
data[i].number = number;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
for (let i = 0; i < data.length; i++) {
|
||||||
|
span_result += number + '款 ' + data[i].count + "个,共" + data[i].price + "元" + '\n'
|
||||||
|
data[i].number = number;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
span_result += '包邮,免费设计呢~(偏远地区需补邮费)'
|
||||||
|
if (window.parent.system_isGai) {
|
||||||
|
span_result += "\n\n亲 现在下单可以参加淘宝活动8.5折折扣哦!"
|
||||||
|
}
|
||||||
|
addLog(span_result);
|
||||||
|
$("#span_result").val(span_result);
|
||||||
|
|
||||||
|
//计算完自动复制文本
|
||||||
|
var e = document.getElementById("span_result");//对象是content
|
||||||
|
if (e.value != "") {
|
||||||
|
e.select();//选择对象
|
||||||
|
document.execCommand("Copy");//执行浏览器复制命令
|
||||||
|
}
|
||||||
|
|
||||||
|
//生成表格
|
||||||
|
table.render({
|
||||||
|
elem: '#priceTable',
|
||||||
|
even: true, //隔行变色
|
||||||
|
data: data, // 赋值已知数据
|
||||||
|
width: 500,
|
||||||
|
cols: [[
|
||||||
|
{
|
||||||
|
field: 'number',
|
||||||
|
width: '12%',
|
||||||
|
align: "center",
|
||||||
|
title: '款数'
|
||||||
|
}, {
|
||||||
|
field: 'count',
|
||||||
|
width: '16%',
|
||||||
|
align: "center",
|
||||||
|
title: '数量'
|
||||||
|
}, {
|
||||||
|
field: 'price',
|
||||||
|
width: '16%',
|
||||||
|
align: "center",
|
||||||
|
title: '报价'
|
||||||
|
}, {
|
||||||
|
field: 'wangwang',
|
||||||
|
align: "center",
|
||||||
|
width: '16%',
|
||||||
|
title: '折扣价'
|
||||||
|
}, {
|
||||||
|
field: 'wangwang',
|
||||||
|
align: "center",
|
||||||
|
width: '19%',
|
||||||
|
title: '跳楼价'
|
||||||
|
}, {
|
||||||
|
field: 'weight',
|
||||||
|
width: '21%',
|
||||||
|
align: "center",
|
||||||
|
title: '重量(kg)'
|
||||||
|
}
|
||||||
|
]],
|
||||||
|
done: function () {
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user