物流单号
This commit is contained in:
parent
82ff8d771a
commit
3bb7712979
@ -10,7 +10,7 @@
|
|||||||
>
|
>
|
||||||
<el-form-item label="所属护理站" prop="nurseStationName">
|
<el-form-item label="所属护理站" prop="nurseStationName">
|
||||||
<el-select
|
<el-select
|
||||||
v-model="queryParams.nurseStationId"
|
v-model="queryParams.nurseStationName"
|
||||||
placeholder="请选择护理站"
|
placeholder="请选择护理站"
|
||||||
v-loadmore="loadMore"
|
v-loadmore="loadMore"
|
||||||
>
|
>
|
||||||
@ -55,7 +55,6 @@
|
|||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<el-form-item label="是否上架" prop="whetherShelf">
|
<el-form-item label="是否上架" prop="whetherShelf">
|
||||||
<el-select v-model="queryParams.whetherShelf" placeholder="请选择">
|
<el-select v-model="queryParams.whetherShelf" placeholder="请选择">
|
||||||
<el-option
|
<el-option
|
||||||
@ -475,7 +474,7 @@
|
|||||||
:total="total2"
|
:total="total2"
|
||||||
:page.sync="getListByUserquery.pageNum"
|
:page.sync="getListByUserquery.pageNum"
|
||||||
:limit.sync="getListByUserquery.pageSize"
|
:limit.sync="getListByUserquery.pageSize"
|
||||||
@pagination="handleQuery2"
|
@pagination="info"
|
||||||
/>
|
/>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
</div>
|
</div>
|
||||||
@ -564,10 +563,7 @@ export default {
|
|||||||
id: null,
|
id: null,
|
||||||
whetherShelf: null,
|
whetherShelf: null,
|
||||||
},
|
},
|
||||||
getListByUserquery: {
|
|
||||||
pageNum: 1,
|
|
||||||
pageSize: 10,
|
|
||||||
},
|
|
||||||
queryParams: {
|
queryParams: {
|
||||||
id: null,
|
id: null,
|
||||||
pageNum: 1,
|
pageNum: 1,
|
||||||
@ -589,6 +585,8 @@ export default {
|
|||||||
getListByUserquery: {
|
getListByUserquery: {
|
||||||
pageNum: 1,
|
pageNum: 1,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
|
// nurseStationCode:"",
|
||||||
|
// nurseStationId:"",
|
||||||
},
|
},
|
||||||
// 表单参数
|
// 表单参数
|
||||||
form: {
|
form: {
|
||||||
@ -759,7 +757,6 @@ export default {
|
|||||||
},
|
},
|
||||||
addcancel() {
|
addcancel() {
|
||||||
this.innerVisible = false;
|
this.innerVisible = false;
|
||||||
// this.innerVisiblexg = false;
|
|
||||||
this.resetQuery2();
|
this.resetQuery2();
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -878,7 +875,6 @@ export default {
|
|||||||
addGoodsInfo(this.form).then((response) => {
|
addGoodsInfo(this.form).then((response) => {
|
||||||
console.log(this.form);
|
console.log(this.form);
|
||||||
this.$modal.msgSuccess("新增成功");
|
this.$modal.msgSuccess("新增成功");
|
||||||
|
|
||||||
this.StationName = "请选择所属护理站";
|
this.StationName = "请选择所属护理站";
|
||||||
this.open = false;
|
this.open = false;
|
||||||
this.getList();
|
this.getList();
|
||||||
@ -899,34 +895,10 @@ export default {
|
|||||||
delGoodsInfo(row.goodsInfoId).then((res) => {
|
delGoodsInfo(row.goodsInfoId).then((res) => {
|
||||||
this.$message.success("删除成功");
|
this.$message.success("删除成功");
|
||||||
this.getList();
|
this.getList();
|
||||||
// console.log('this.OrderDetailsList :>> ', this.OrderDetailsList);
|
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
.catch(() => { });
|
.catch(() => { });
|
||||||
},
|
},
|
||||||
// handleDelete(row) {
|
|
||||||
// const ids = row.id || this.ids;
|
|
||||||
// this.$modal
|
|
||||||
// .confirm("是否确认删除?")
|
|
||||||
// .then(function () {
|
|
||||||
// return delGoodsInfo(ids);
|
|
||||||
// })
|
|
||||||
// .then(() => {
|
|
||||||
// this.getList();
|
|
||||||
// this.$modal.msgSuccess("删除成功");
|
|
||||||
// })
|
|
||||||
// .catch(() => {});
|
|
||||||
// },
|
|
||||||
// /** 导出按钮操作 */
|
|
||||||
// handleExport() {
|
|
||||||
// this.download(
|
|
||||||
// "system/goodsInfo/export",
|
|
||||||
// {
|
|
||||||
// ...this.queryParams,
|
|
||||||
// },
|
|
||||||
// `goodsInfo_${new Date().getTime()}.xlsx`
|
|
||||||
// );
|
|
||||||
// },
|
|
||||||
imgUrl(imgUrl) {
|
imgUrl(imgUrl) {
|
||||||
console.log(imgUrl);
|
console.log(imgUrl);
|
||||||
this.form.goodsPictureUrl = imgUrl;
|
this.form.goodsPictureUrl = imgUrl;
|
||||||
@ -961,16 +933,6 @@ export default {
|
|||||||
this.nurseStationlist = res.rows;
|
this.nurseStationlist = res.rows;
|
||||||
this.total2 = res.total;
|
this.total2 = res.total;
|
||||||
console.log(res)
|
console.log(res)
|
||||||
// if (res.rows[0].isAdmin == "1") {
|
|
||||||
// this.nurseStationlist = res.rows;
|
|
||||||
// this.total2 = res.total;
|
|
||||||
// } else {
|
|
||||||
// this.total2 = res.total;
|
|
||||||
// this.nurseStationlist = res.rows;
|
|
||||||
// this.queryParams.nurseStationId = res.rows[0].id;
|
|
||||||
// this.form.nurseStationId = res.rows[0].id;
|
|
||||||
// this.handleQuery();
|
|
||||||
// }
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
//滑动下拉框
|
//滑动下拉框
|
||||||
|
|||||||
@ -167,7 +167,7 @@
|
|||||||
v-hasPermi="['system:goodsOrder:editExpressNo']"
|
v-hasPermi="['system:goodsOrder:editExpressNo']"
|
||||||
>录入物流单号</el-button
|
>录入物流单号</el-button
|
||||||
>
|
>
|
||||||
<el-button
|
<!-- <el-button
|
||||||
v-if="scope.row.orderStatus != 'WAIT_RECEIVED_GOODS'"
|
v-if="scope.row.orderStatus != 'WAIT_RECEIVED_GOODS'"
|
||||||
size="mini"
|
size="mini"
|
||||||
type="text"
|
type="text"
|
||||||
@ -175,7 +175,7 @@
|
|||||||
disabled
|
disabled
|
||||||
v-hasPermi="['system:goodsOrder:editExpressNo']"
|
v-hasPermi="['system:goodsOrder:editExpressNo']"
|
||||||
>不可录入物流单号</el-button
|
>不可录入物流单号</el-button
|
||||||
>
|
> -->
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
@ -202,7 +202,7 @@
|
|||||||
v-hasPermi="['system:goodsOrder:goodsOrderRefund']"
|
v-hasPermi="['system:goodsOrder:goodsOrderRefund']"
|
||||||
>确认退款</el-button
|
>确认退款</el-button
|
||||||
>
|
>
|
||||||
<el-button
|
<!-- <el-button
|
||||||
v-else
|
v-else
|
||||||
size="mini"
|
size="mini"
|
||||||
type="text"
|
type="text"
|
||||||
@ -210,7 +210,7 @@
|
|||||||
disabled
|
disabled
|
||||||
v-hasPermi="['system:goodsOrder:goodsOrderRefund']"
|
v-hasPermi="['system:goodsOrder:goodsOrderRefund']"
|
||||||
>确认退款</el-button
|
>确认退款</el-button
|
||||||
>
|
> -->
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
@ -1023,7 +1023,7 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user