jufubao-admin-library 1.1.78 → 1.1.79
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -952,6 +952,24 @@ export default {
|
|
|
952
952
|
{ required: true, message: '请输入数值', trigger: 'blur' },
|
|
953
953
|
],
|
|
954
954
|
},
|
|
955
|
+
{
|
|
956
|
+
label: '小数点保留位数:',
|
|
957
|
+
ele: 'xd-select-list',
|
|
958
|
+
valueKey: 'price_bit',
|
|
959
|
+
value: params.price_bit || 2,
|
|
960
|
+
placeholder: '请选择小数点保留位数',
|
|
961
|
+
multiple: false,
|
|
962
|
+
list: [
|
|
963
|
+
{ "label": "零位", "value": -1 },
|
|
964
|
+
{ "label": "一位", "value": 1 },
|
|
965
|
+
{ "label": "两位", "value": 2 },
|
|
966
|
+
],
|
|
967
|
+
rules: [{
|
|
968
|
+
required: true,
|
|
969
|
+
message: '请选择小数点保留位数',
|
|
970
|
+
trigger: 'blur'
|
|
971
|
+
}],
|
|
972
|
+
},
|
|
955
973
|
].filter(i => i)
|
|
956
974
|
},
|
|
957
975
|
|