@egova/egova-api 1.1.5 → 1.1.7
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.
- package/dist/index.common.js +166 -31
- package/dist/index.css +1 -1
- package/dist/index.umd.js +166 -31
- package/dist/index.umd.min.js +3 -3
- package/package.json +1 -1
package/dist/index.common.js
CHANGED
|
@@ -646,6 +646,13 @@ module.exports = "<i-collapse v-model=\"value\" simple class=\"api-params\">\r\n
|
|
|
646
646
|
|
|
647
647
|
/***/ }),
|
|
648
648
|
|
|
649
|
+
/***/ "3ad3":
|
|
650
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
651
|
+
|
|
652
|
+
// extracted by mini-css-extract-plugin
|
|
653
|
+
|
|
654
|
+
/***/ }),
|
|
655
|
+
|
|
649
656
|
/***/ "3b85":
|
|
650
657
|
/***/ (function(module, exports) {
|
|
651
658
|
|
|
@@ -1192,7 +1199,7 @@ module.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
|
|
|
1192
1199
|
/***/ "7640":
|
|
1193
1200
|
/***/ (function(module, exports) {
|
|
1194
1201
|
|
|
1195
|
-
module.exports = "<article class=\"params-setting\">\r\n <i-collapse v-model=\"value\" simple>\r\n <i-panel name=\"1\">\r\n <span>Query参数</span>\r\n <span class=\"status\">{{getExpand('1') ? \"收起\" : \"展开\"}}</span>\r\n <div slot=\"content\" class=\"setting-content\">\r\n <header>\r\n <i-button type=\"primary\" ghost class=\"diy-btn-primary\" @click=\"onAddRequestParam\"> <i class=\"api-icon icon-add\"></i>新增参数 </i-button>\r\n </header>\r\n <main>\r\n <i-table height=\"200\" width=\"1280\" class=\"diy-table\" @on-selection-change=\"onQuerySelectionChange\" :columns=\"paramColumns\" :data=\"queryDataList\">\r\n <template slot-scope=\"{ row,index }\" slot=\"selection\">\r\n <i-
|
|
1202
|
+
module.exports = "<article class=\"params-setting\">\r\n <i-collapse v-model=\"value\" simple>\r\n <i-panel name=\"1\">\r\n <span>Query参数</span>\r\n <span class=\"status\">{{getExpand('1') ? \"收起\" : \"展开\"}}</span>\r\n <div slot=\"content\" class=\"setting-content\">\r\n <header>\r\n <i-button type=\"primary\" ghost class=\"diy-btn-primary\" @click=\"onAddRequestParam\"> <i class=\"api-icon icon-add\"></i>新增参数 </i-button>\r\n </header>\r\n <main>\r\n <i-table height=\"200\" width=\"1280\" class=\"diy-table\" @on-selection-change=\"onQuerySelectionChange\" :columns=\"paramColumns\" :data=\"queryDataList\">\r\n <template slot-scope=\"{ row,index }\" slot=\"selection\">\r\n <i-switch size=\"large\" :value=\"!queryDataList[index].disabled\" @on-change=\"onChangeDisabled($event,queryDataList[index])\">\r\n <span slot=\"open\">开启</span>\r\n <span slot=\"close\">禁用</span>\r\n </i-switch>\r\n </template>\r\n <template slot-scope=\"{ row,index }\" slot=\"name\">\r\n <i-input class=\"diy-input\" placeholder=\"输入参数名称\" v-model=\"queryDataList[index].name\"></i-input>\r\n </template>\r\n <template slot-scope=\"{ row,index }\" slot=\"valueContent\">\r\n <i-input class=\"diy-input\" placeholder=\"输入参数值\" v-model=\"queryDataList[index].valueContent\"></i-input>\r\n </template>\r\n <template slot-scope=\"{ row,index }\" slot=\"required\">\r\n <i-switch v-model=\"queryDataList[index].requireFlag\" :disabled=\"queryDataList[index].disabled\" :true-value=\"1\" :false-value=\"0\">\r\n <span slot=\"open\">是</span>\r\n <span slot=\"close\">否</span>\r\n </i-switch>\r\n </template>\r\n <template slot-scope=\"{ row,index }\" slot=\"text\">\r\n <i-input class=\"diy-input\" placeholder=\"输入备注\" v-model=\"queryDataList[index].text\"></i-input>\r\n </template>\r\n <template slot-scope=\"{ row,index }\" slot=\"action\">\r\n <i-poptip class=\"action-btn delete\" title=\"确认删除这条数据吗?\" confirm @on-ok=\"onDelete(queryDataList,row.indexFlag)\" transfer>\r\n <i class=\"iconfont icon-delete\" title=\"删除\"></i>\r\n </i-poptip>\r\n <span>\r\n <i v-if=\"index>0\" class=\"iconfont icon-up\" @click=\"onUp(queryDataList,index)\" title=\"上移\"></i>\r\n <i v-if=\"index>0\" class=\"iconfont icon-top\" title=\"置顶\" @click=\"onTop(queryDataList,index)\"></i>\r\n <i v-if=\"index < queryDataList.length - 1\" @click=\"onDown(queryDataList,index)\" class=\"iconfont icon-down\" title=\"下移\"></i>\r\n <i v-if=\"index < queryDataList.length - 1\" @click=\"onBottom(queryDataList,index)\" class=\"iconfont icon-bottom\" title=\"置底\"></i>\r\n </span>\r\n </template>\r\n </i-table>\r\n </main>\r\n </div>\r\n </i-panel>\r\n <i-panel name=\"2\">\r\n <span>Body参数</span>\r\n <span class=\"status\">{{getExpand('2') ? \"收起\" : \"展开\"}}</span>\r\n <div slot=\"content\" class=\"setting-content\">\r\n <header>\r\n <i-button v-if=\"isFormData\" type=\"primary\" ghost class=\"diy-btn-primary\" @click=\"onAddBodyParam\"> <i class=\"api-icon icon-add\"></i>新增参数 </i-button>\r\n <i-button v-else type=\"primary\" ghost class=\"diy-btn-primary\" @click=\"onBeautify\"> <i class=\"api-icon icon-view\"></i>格式化 </i-button>\r\n <i-select transfer v-model=\"interfaceModel.info.requestBodyType\" class=\"diy-select\">\r\n <i-option v-for=\"item in requestBodyTypeList\" :value=\"item.name\" :key=\"item.name\">{{item.text}}</i-option>\r\n </i-select>\r\n </header>\r\n <main>\r\n <i-table\r\n height=\"200\"\r\n width=\"1280\"\r\n class=\"diy-table\"\r\n @on-selection-change=\"onBodySelectionChange\"\r\n :columns=\"paramColumns\"\r\n :data=\"bodyDataList\"\r\n v-if=\"isFormData\"\r\n >\r\n <template slot-scope=\"{ row,index }\" slot=\"selection\">\r\n <i-checkbox :value=\"!bodyDataList[index].disabled\" @on-change=\"onChangeDisabled($event,bodyDataList[index])\"> </i-checkbox>\r\n </template>\r\n <template slot-scope=\"{ row,index }\" slot=\"name\">\r\n <div class=\"body-name-row\">\r\n <i-input class=\"diy-input\" placeholder=\"输入参数名称\" v-model=\"bodyDataList[index].name\"></i-input>\r\n <i-select class=\"diy-select\" v-if=\"bodyType === 'Form'\" v-model=\"row.valueType\" @on-change=\"onChangeFormParamType(index, row)\" transfer>\r\n <i-option v-for=\"item in formParamTypeList\" :value=\"item.name\" :key=\"item.name\">{{item.text}}</i-option>\r\n </i-select>\r\n </div>\r\n </template>\r\n <template slot-scope=\"{ row,index }\" slot=\"valueContent\">\r\n <i-input v-if=\"row.valueType !== 'FILE'\" class=\"diy-input\" placeholder=\"输入参数值\" v-model=\"bodyDataList[index].valueContent\"></i-input>\r\n <i-upload v-if=\"row.valueType === 'FILE' && !row.fileName\" action=\"\" :before-upload=\"onImport\" :show-upload-list=\"false\">\r\n <i-button class=\"file-btn\" icon=\"ios-cloud-upload-outline\" @click=\"onClickRow(row)\">选择文件</i-button>\r\n </i-upload>\r\n <div class=\"file-wrap\" v-if=\"row.valueType === 'FILE' && row.fileName\">\r\n <div class=\"file-name\" :title=\"row.fileName\">{{ row.fileName }}</div>\r\n <i-icon type=\"ios-close\" @click=\"onClearFile(row)\" />\r\n </div>\r\n </template>\r\n <!-- <template slot-scope=\"{ row,index }\" slot=\"required\">\r\n <i-switch v-model=\"bodyDataList[index].required\">\r\n <span slot=\"open\">是</span>\r\n <span slot=\"close\">否</span>\r\n </i-switch>\r\n </template> -->\r\n <template slot-scope=\"{ row,index }\" slot=\"text\">\r\n <i-input class=\"diy-input\" placeholder=\"输入备注\" v-model=\"bodyDataList[index].remark\"></i-input>\r\n </template>\r\n <template slot-scope=\"{ row,index }\" slot=\"action\">\r\n <i-poptip class=\"action-btn delete\" title=\"确认删除这条数据吗?\" confirm @on-ok=\"onDeleteBodyParam(interfaceModel.formParams,row.indexFlag)\" transfer>\r\n <i class=\"iconfont icon-delete\" title=\"删除\"></i>\r\n </i-poptip>\r\n <span>\r\n <i v-if=\"index > 0\" class=\"iconfont icon-up\" @click=\"onUpBodyParam(interfaceModel.formParams,row.id)\" title=\"上移\"></i>\r\n <i v-if=\"index > 0\" class=\"iconfont icon-top\" @click=\"onTopBodyParam(interfaceModel.formParams,row.id)\" title=\"置顶\"></i>\r\n <i v-if=\"index < bodyDataList.length - 1\" @click=\"onDownBodyParam(interfaceModel.formParams,row.id)\" class=\"iconfont icon-down\" title=\"下移\"></i>\r\n <i\r\n v-if=\"index < bodyDataList.length - 1\"\r\n @click=\"onBottomBodyParam(interfaceModel.formParams,row.id)\"\r\n class=\"iconfont icon-bottom\"\r\n title=\"置底\"\r\n ></i>\r\n </span>\r\n </template>\r\n </i-table>\r\n <u-editor v-else :value.sync=\"interfaceModel.json\" lang=\"json\" @inited=\"onEditorInited\"></u-editor>\r\n </main>\r\n </div>\r\n </i-panel>\r\n </i-collapse>\r\n</article>\r\n"
|
|
1196
1203
|
|
|
1197
1204
|
/***/ }),
|
|
1198
1205
|
|
|
@@ -10832,6 +10839,46 @@ var headers_setting_HeadersSetting = /** @class */function (_super) {
|
|
|
10832
10839
|
return HeadersSetting;
|
|
10833
10840
|
}(flagwind_web_["Component"]);
|
|
10834
10841
|
/* harmony default export */ var project_detail_headers_setting = (headers_setting_HeadersSetting);
|
|
10842
|
+
// EXTERNAL MODULE: ./src/views/project-detail/params-setting/switch/index.scss
|
|
10843
|
+
var params_setting_switch = __webpack_require__("3ad3");
|
|
10844
|
+
|
|
10845
|
+
// CONCATENATED MODULE: ./src/views/project-detail/params-setting/switch/index.ts
|
|
10846
|
+
|
|
10847
|
+
|
|
10848
|
+
|
|
10849
|
+
var switch_SwitchView = /** @class */function (_super) {
|
|
10850
|
+
__extends(SwitchView, _super);
|
|
10851
|
+
function SwitchView() {
|
|
10852
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
10853
|
+
_this.showValue = 0;
|
|
10854
|
+
return _this;
|
|
10855
|
+
}
|
|
10856
|
+
SwitchView.prototype.watchValue = function () {
|
|
10857
|
+
this.showValue = this.value || this.midState ? 1 : 0;
|
|
10858
|
+
};
|
|
10859
|
+
SwitchView.prototype.onChange = function () {
|
|
10860
|
+
this.$emit("onChange");
|
|
10861
|
+
};
|
|
10862
|
+
__decorate([Object(flagwind_web_["config"])({
|
|
10863
|
+
type: Boolean,
|
|
10864
|
+
default: false
|
|
10865
|
+
})], SwitchView.prototype, "value", void 0);
|
|
10866
|
+
__decorate([Object(flagwind_web_["config"])({
|
|
10867
|
+
type: Boolean,
|
|
10868
|
+
default: false
|
|
10869
|
+
})], SwitchView.prototype, "midState", void 0);
|
|
10870
|
+
__decorate([Object(flagwind_web_["watch"])("value", {
|
|
10871
|
+
immediate: true
|
|
10872
|
+
}), Object(flagwind_web_["watch"])("midState", {
|
|
10873
|
+
immediate: true
|
|
10874
|
+
})], SwitchView.prototype, "watchValue", null);
|
|
10875
|
+
SwitchView = __decorate([Object(flagwind_web_["component"])({
|
|
10876
|
+
template: __webpack_require__("f9a4"),
|
|
10877
|
+
components: {}
|
|
10878
|
+
})], SwitchView);
|
|
10879
|
+
return SwitchView;
|
|
10880
|
+
}(flagwind_web_["Component"]);
|
|
10881
|
+
/* harmony default export */ var project_detail_params_setting_switch = (switch_SwitchView);
|
|
10835
10882
|
// EXTERNAL MODULE: ./src/views/project-detail/params-setting/index.scss
|
|
10836
10883
|
var params_setting = __webpack_require__("8137");
|
|
10837
10884
|
|
|
@@ -10845,44 +10892,17 @@ var params_setting = __webpack_require__("8137");
|
|
|
10845
10892
|
|
|
10846
10893
|
|
|
10847
10894
|
|
|
10895
|
+
|
|
10848
10896
|
var params_setting_ParamsSetting = /** @class */function (_super) {
|
|
10849
10897
|
__extends(ParamsSetting, _super);
|
|
10850
10898
|
function ParamsSetting() {
|
|
10851
10899
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
10852
10900
|
_this.value = [];
|
|
10853
|
-
_this.paramColumns = [{
|
|
10854
|
-
// slot: "selection",
|
|
10855
|
-
type: "selection",
|
|
10856
|
-
width: 60,
|
|
10857
|
-
align: "center",
|
|
10858
|
-
title: " "
|
|
10859
|
-
}, {
|
|
10860
|
-
title: "参数名",
|
|
10861
|
-
slot: "name",
|
|
10862
|
-
align: "left"
|
|
10863
|
-
}, {
|
|
10864
|
-
title: "参数值",
|
|
10865
|
-
slot: "valueContent",
|
|
10866
|
-
align: "left"
|
|
10867
|
-
},
|
|
10868
|
-
// {
|
|
10869
|
-
// title: "是否必须",
|
|
10870
|
-
// slot: "required",
|
|
10871
|
-
// align: "left"
|
|
10872
|
-
// },
|
|
10873
|
-
{
|
|
10874
|
-
title: "备注",
|
|
10875
|
-
slot: "text",
|
|
10876
|
-
align: "left"
|
|
10877
|
-
}, {
|
|
10878
|
-
title: "操作",
|
|
10879
|
-
slot: "action",
|
|
10880
|
-
align: "left",
|
|
10881
|
-
width: 300
|
|
10882
|
-
}];
|
|
10883
10901
|
_this.queryDataList = [];
|
|
10884
10902
|
// public bodyDataList: Array<any> = [];
|
|
10885
10903
|
_this.requestBodyTypeList = [];
|
|
10904
|
+
_this.hasChecked = false;
|
|
10905
|
+
_this.hasMidChecked = false;
|
|
10886
10906
|
_this.typeMap = {
|
|
10887
10907
|
Form: "FormData",
|
|
10888
10908
|
X_www_form_urlencoded: "FormUrlEncoded"
|
|
@@ -10898,6 +10918,70 @@ var params_setting_ParamsSetting = /** @class */function (_super) {
|
|
|
10898
10918
|
_this.currentFormParamRow = {};
|
|
10899
10919
|
return _this;
|
|
10900
10920
|
}
|
|
10921
|
+
Object.defineProperty(ParamsSetting.prototype, "paramColumns", {
|
|
10922
|
+
get: function () {
|
|
10923
|
+
var _this = this;
|
|
10924
|
+
return [{
|
|
10925
|
+
slot: "selection",
|
|
10926
|
+
// type: "selection",
|
|
10927
|
+
width: 100,
|
|
10928
|
+
align: "center",
|
|
10929
|
+
title: "启用",
|
|
10930
|
+
renderHeader: function (h, params) {
|
|
10931
|
+
return h(project_detail_params_setting_switch, {
|
|
10932
|
+
props: {
|
|
10933
|
+
value: _this.hasChecked,
|
|
10934
|
+
midState: _this.hasMidChecked
|
|
10935
|
+
},
|
|
10936
|
+
on: {
|
|
10937
|
+
onChange: _this.onChange
|
|
10938
|
+
}
|
|
10939
|
+
});
|
|
10940
|
+
}
|
|
10941
|
+
}, {
|
|
10942
|
+
title: "参数名",
|
|
10943
|
+
slot: "name",
|
|
10944
|
+
align: "left"
|
|
10945
|
+
}, {
|
|
10946
|
+
title: "参数值",
|
|
10947
|
+
slot: "valueContent",
|
|
10948
|
+
align: "left"
|
|
10949
|
+
}, {
|
|
10950
|
+
title: "必填",
|
|
10951
|
+
slot: "required",
|
|
10952
|
+
width: 95,
|
|
10953
|
+
align: "left",
|
|
10954
|
+
renderHeader: function (h, params) {
|
|
10955
|
+
return h("div", {
|
|
10956
|
+
class: "th-tip"
|
|
10957
|
+
}, [h("i-poptip", {
|
|
10958
|
+
props: {
|
|
10959
|
+
trigger: "hover",
|
|
10960
|
+
content: "参数启用同时非必填时,若调用方未传具体参数值,将使用当前定义的参数值。",
|
|
10961
|
+
placement: "top",
|
|
10962
|
+
transfer: true,
|
|
10963
|
+
"word-wrap": true
|
|
10964
|
+
}
|
|
10965
|
+
}, [h("i-icon", {
|
|
10966
|
+
props: {
|
|
10967
|
+
type: "ios-information-circle-outline"
|
|
10968
|
+
}
|
|
10969
|
+
})]), h("span", "必填")]);
|
|
10970
|
+
}
|
|
10971
|
+
}, {
|
|
10972
|
+
title: "备注",
|
|
10973
|
+
slot: "text",
|
|
10974
|
+
align: "left"
|
|
10975
|
+
}, {
|
|
10976
|
+
title: "操作",
|
|
10977
|
+
slot: "action",
|
|
10978
|
+
align: "left",
|
|
10979
|
+
width: 300
|
|
10980
|
+
}];
|
|
10981
|
+
},
|
|
10982
|
+
enumerable: false,
|
|
10983
|
+
configurable: true
|
|
10984
|
+
});
|
|
10901
10985
|
ParamsSetting.prototype.getExpand = function (value) {
|
|
10902
10986
|
return this.value.includes(value);
|
|
10903
10987
|
};
|
|
@@ -10907,6 +10991,26 @@ var params_setting_ParamsSetting = /** @class */function (_super) {
|
|
|
10907
10991
|
});
|
|
10908
10992
|
// paramList.splice(index, 1);
|
|
10909
10993
|
paramList.splice(index, 1);
|
|
10994
|
+
this.buildCheckedState();
|
|
10995
|
+
};
|
|
10996
|
+
/**
|
|
10997
|
+
* [true,true]: 第一个代表是否勾选,第二个代表是否半勾选
|
|
10998
|
+
*/
|
|
10999
|
+
ParamsSetting.prototype.buildCheckedState = function () {
|
|
11000
|
+
var checked = 0;
|
|
11001
|
+
for (var _i = 0, _a = this.queryDataList; _i < _a.length; _i++) {
|
|
11002
|
+
var o = _a[_i];
|
|
11003
|
+
if (!o.disabled) {
|
|
11004
|
+
checked = checked + 1;
|
|
11005
|
+
}
|
|
11006
|
+
}
|
|
11007
|
+
if (checked > 0 && checked !== this.queryDataList.length) {
|
|
11008
|
+
this.hasChecked = true;
|
|
11009
|
+
this.hasMidChecked = true;
|
|
11010
|
+
} else {
|
|
11011
|
+
this.hasChecked = checked > 0;
|
|
11012
|
+
this.hasMidChecked = false;
|
|
11013
|
+
}
|
|
10910
11014
|
};
|
|
10911
11015
|
ParamsSetting.prototype.onUp = function (paramList, index) {
|
|
10912
11016
|
if (index === 0) return;
|
|
@@ -10964,6 +11068,7 @@ var params_setting_ParamsSetting = /** @class */function (_super) {
|
|
|
10964
11068
|
};
|
|
10965
11069
|
ParamsSetting.prototype.onChangeDisabled = function (value, item) {
|
|
10966
11070
|
item.disabled = !value;
|
|
11071
|
+
this.buildCheckedState();
|
|
10967
11072
|
};
|
|
10968
11073
|
ParamsSetting.prototype.init = function () {
|
|
10969
11074
|
var _this = this;
|
|
@@ -10982,6 +11087,7 @@ var params_setting_ParamsSetting = /** @class */function (_super) {
|
|
|
10982
11087
|
}
|
|
10983
11088
|
item._checked = !item.disabled;
|
|
10984
11089
|
});
|
|
11090
|
+
this.buildCheckedState();
|
|
10985
11091
|
// this.bodyDataList = this.interfaceModel.formParams;
|
|
10986
11092
|
};
|
|
10987
11093
|
Object.defineProperty(ParamsSetting.prototype, "bodyDataList", {
|
|
@@ -11004,9 +11110,11 @@ var params_setting_ParamsSetting = /** @class */function (_super) {
|
|
|
11004
11110
|
text: "",
|
|
11005
11111
|
type: "QueryString",
|
|
11006
11112
|
valueContent: "",
|
|
11113
|
+
requireFlag: 0,
|
|
11007
11114
|
disabled: false,
|
|
11008
11115
|
_checked: true
|
|
11009
11116
|
});
|
|
11117
|
+
this.buildCheckedState();
|
|
11010
11118
|
};
|
|
11011
11119
|
ParamsSetting.prototype.onAddBodyParam = function () {
|
|
11012
11120
|
this.interfaceModel.formParams.push({
|
|
@@ -11108,6 +11216,26 @@ var params_setting_ParamsSetting = /** @class */function (_super) {
|
|
|
11108
11216
|
}
|
|
11109
11217
|
});
|
|
11110
11218
|
};
|
|
11219
|
+
ParamsSetting.prototype.onChange = function () {
|
|
11220
|
+
var _this = this;
|
|
11221
|
+
if (this.hasMidChecked) {
|
|
11222
|
+
this.queryDataList.forEach(function (item) {
|
|
11223
|
+
_this.$set(item, "disabled", true);
|
|
11224
|
+
_this.$set(item, "_checked", false);
|
|
11225
|
+
});
|
|
11226
|
+
} else if (this.hasChecked) {
|
|
11227
|
+
this.queryDataList.forEach(function (item) {
|
|
11228
|
+
_this.$set(item, "disabled", true);
|
|
11229
|
+
_this.$set(item, "_checked", false);
|
|
11230
|
+
});
|
|
11231
|
+
} else {
|
|
11232
|
+
this.queryDataList.forEach(function (item) {
|
|
11233
|
+
_this.$set(item, "disabled", false);
|
|
11234
|
+
_this.$set(item, "_checked", true);
|
|
11235
|
+
});
|
|
11236
|
+
}
|
|
11237
|
+
this.buildCheckedState();
|
|
11238
|
+
};
|
|
11111
11239
|
ParamsSetting.prototype.onBodySelectionChange = function (rows) {
|
|
11112
11240
|
var _this = this;
|
|
11113
11241
|
this.bodyDataList.forEach(function (item) {
|
|
@@ -13733,6 +13861,13 @@ module.exports = "<article class=\"interface-settings\" :class=\"{'script-max':
|
|
|
13733
13861
|
|
|
13734
13862
|
/***/ }),
|
|
13735
13863
|
|
|
13864
|
+
/***/ "f9a4":
|
|
13865
|
+
/***/ (function(module, exports) {
|
|
13866
|
+
|
|
13867
|
+
module.exports = "<i-switch :class=\"{ 'mid-style': midState }\" :value=\"showValue\" size=\"large\" :true-value=\"1\" :false-value=\"0\" @on-change=\"onChange\" >\r\n <span slot=\"open\">启用</span>\r\n <span slot=\"close\">禁用</span>\r\n</i-switch>"
|
|
13868
|
+
|
|
13869
|
+
/***/ }),
|
|
13870
|
+
|
|
13736
13871
|
/***/ "fcc0":
|
|
13737
13872
|
/***/ (function(module, exports, __webpack_require__) {
|
|
13738
13873
|
|