vue2-client 1.8.1 → 1.8.3
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/package.json
CHANGED
|
@@ -15,9 +15,6 @@
|
|
|
15
15
|
:rules="rules"
|
|
16
16
|
:wrapper-col="wrapperCol"
|
|
17
17
|
>
|
|
18
|
-
<a-form-model-item label="服务名称" prop="serviceName">
|
|
19
|
-
<a-input v-model="form.serviceName" placeholder="查询接口所在的服务名称,默认system"/>
|
|
20
|
-
</a-form-model-item>
|
|
21
18
|
<a-form-model-item label="查询主表名" prop="tableName">
|
|
22
19
|
<a-input v-model="form.tableName" placeholder="查询用的主表+别名,用空格隔开,如:t_userfiles u"/>
|
|
23
20
|
</a-form-model-item>
|
|
@@ -225,7 +222,8 @@
|
|
|
225
222
|
</template>
|
|
226
223
|
<x-form-table
|
|
227
224
|
:queryParamsJson="result"
|
|
228
|
-
:view-mode="true"
|
|
225
|
+
:view-mode="true"
|
|
226
|
+
:service-name="serviceName">
|
|
229
227
|
</x-form-table>
|
|
230
228
|
</a-modal>
|
|
231
229
|
</a-drawer>
|
|
@@ -266,7 +264,6 @@ export default {
|
|
|
266
264
|
labelCol: { span: 3 },
|
|
267
265
|
wrapperCol: { span: 18 },
|
|
268
266
|
form: {
|
|
269
|
-
serviceName: '',
|
|
270
267
|
tableName: '',
|
|
271
268
|
joinArray: {},
|
|
272
269
|
condition: {},
|
|
@@ -347,6 +344,10 @@ export default {
|
|
|
347
344
|
saveExportJson: {
|
|
348
345
|
type: Boolean,
|
|
349
346
|
default: false
|
|
347
|
+
},
|
|
348
|
+
serviceName: {
|
|
349
|
+
type: String,
|
|
350
|
+
default: undefined
|
|
350
351
|
}
|
|
351
352
|
},
|
|
352
353
|
watch: {
|