jufubao-admin-library 1.1.95 → 1.1.96
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.
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
width="460px"
|
|
11
11
|
@onConfirm="handleMarketTag"
|
|
12
12
|
>
|
|
13
|
-
<div style="display: flex">
|
|
14
|
-
<span style="margin-right: 20px"
|
|
13
|
+
<div style="display: flex; justify-content: flex-start; align-items: flex-start">
|
|
14
|
+
<span style="margin-right: 20px;flex-shrink: 0">选择标签:</span>
|
|
15
15
|
<el-checkbox-group v-model="dialogRow.market_tags_value">
|
|
16
16
|
<el-checkbox
|
|
17
17
|
v-for="tag in marketTagList"
|
|
@@ -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
|
|
|
@@ -1145,6 +1163,7 @@ export default {
|
|
|
1145
1163
|
}
|
|
1146
1164
|
}
|
|
1147
1165
|
}
|
|
1166
|
+
|
|
1148
1167
|
postData.conditions = this.$xdHelper.deleteParamEmptyKey(postData.conditions)
|
|
1149
1168
|
if (this.channelParams.namespace) {
|
|
1150
1169
|
postData['namespace'] = this.channelParams.namespace
|