br-dionysus 0.9.12 → 0.9.13

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/README.md CHANGED
@@ -267,6 +267,7 @@ const test = ref<number>(0)
267
267
  <template>
268
268
  <div>
269
269
  <p>1</p>
270
+ <p>0{{ code }}0</p>
270
271
  <m-new-select-table
271
272
  class="zzz"
272
273
  ref="selectRef"
@@ -285,17 +286,18 @@ const test = ref<number>(0)
285
286
  allowCreate
286
287
  filterable
287
288
  remote
289
+ multiple
288
290
  :remoteMethod="remoteMethod"
289
291
  ></m-new-select-table>
290
292
  <p>2</p>
291
293
  <m-new-select-table
292
294
  class="zzz"
293
295
  ref="selectRef"
294
- v-model="code"
296
+ v-model="code2"
295
297
  placeholder="请选择单号"
296
298
  :tableTitle="commodityOptionsTitle"
297
299
  :options="options"
298
- :keywords="{label: 'ApprovedQtyPU',value: 'DocNo' }"
300
+ :keywords="{ label: 'ApprovedQtyPU',value: 'DocNo' }"
299
301
  size="small"
300
302
  @selected="selected"
301
303
  @selectMultiple="selectMultiple"
@@ -310,7 +312,7 @@ const test = ref<number>(0)
310
312
  ></m-new-select-table>
311
313
  <p>1</p>
312
314
  <el-select
313
- v-model="code"
315
+ v-model="code3"
314
316
  filterable
315
317
  remote
316
318
  :remoteMethod="remoteMethod"
@@ -353,7 +355,9 @@ const commodityOptionsTitle: TableTitle[] = [{
353
355
  }]
354
356
  const selectRef: any = ref<HTMLElement | null>(null)
355
357
 
356
- const code = ref<string | number | Array<string | number>>('')
358
+ const code = ref<string | number | Array<string | number>>([])
359
+ const code2 = ref<string | number | Array<string | number>>('')
360
+ const code3 = ref<string | number | Array<string | number>>('')
357
361
 
358
362
  const total = ref(0)
359
363
  const options = ref<any[]>([])
@@ -374,7 +378,7 @@ const getDataList = (page: Page = new Page(), str: string = '') => {
374
378
  }
375
379
 
376
380
  const selected = (value: string | number | Array<number | string>) => {
377
- console.log(value)
381
+ // console.log(value)
378
382
  // code.value = value
379
383
  // console.log('selected',value)
380
384
  // // console.log('selected', row)