|
|
|
@ -485,7 +485,47 @@
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row type="flex">
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="无码类型:" prop="notCodeType">
|
|
|
|
|
<el-select v-model="newProductData.notCodeType" style="width: 90%" placeholder="选择无码类型">
|
|
|
|
|
<el-option label="不是无码类型" :value="0"></el-option>
|
|
|
|
|
<el-option label="部分早期未赋予追溯码" :value="1"></el-option>
|
|
|
|
|
<el-option label="最小包装无追溯码" :value="5"></el-option>
|
|
|
|
|
<el-option label="无追溯码" :value="6"></el-option>
|
|
|
|
|
<el-option label="其他原因" :value="7"></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="药品售价:" prop="drugSellingPrice">
|
|
|
|
|
<el-input style="width: 90%" size="small" placeholder="请输入药品售价"
|
|
|
|
|
v-model.trim="newProductData.drugSellingPrice"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row type="flex">
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="售价开始时间:" prop="drugSellingPriceTime">
|
|
|
|
|
<el-date-picker clearable size="small"
|
|
|
|
|
v-model="newProductData.drugSellingPriceTime"
|
|
|
|
|
type="datetime"
|
|
|
|
|
value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
|
|
placeholder="选择创建时间">
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="11" class="el-col">
|
|
|
|
|
<el-form-item label="是否挂网:" prop="hangingNetType">
|
|
|
|
|
<el-select v-model="newProductData.hangingNetType" style="width: 90%" placeholder="选择是否挂网">
|
|
|
|
|
<el-option label="是" :value="1"></el-option>
|
|
|
|
|
<el-option label="否" :value="0"></el-option>
|
|
|
|
|
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row type="flex">
|
|
|
|
|
<el-col :span="23" class="el-col">
|
|
|
|
|
<el-form-item label="产品描述:" prop="cpms">
|
|
|
|
@ -711,8 +751,9 @@ export default {
|
|
|
|
|
distributeLevel: null,
|
|
|
|
|
useLevel: null,
|
|
|
|
|
majorStatus: 1,
|
|
|
|
|
physicType: 3
|
|
|
|
|
|
|
|
|
|
physicType: 3,
|
|
|
|
|
notCodeType: 1,
|
|
|
|
|
hangingNetType: 1
|
|
|
|
|
},
|
|
|
|
|
thirdSys: [],
|
|
|
|
|
classifyList: [],
|
|
|
|
@ -765,6 +806,7 @@ export default {
|
|
|
|
|
useLevel: [
|
|
|
|
|
{required: true, message: '请选择计量单位', trigger: 'blur'}
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
// detailSort: [
|
|
|
|
|
// {required: true, message: '请选择明细分类', trigger: 'blur'}
|
|
|
|
|
// ],
|
|
|
|
|